mirror of
https://github.com/love2d/love.git
synced 2026-08-16 08:11:02 +02:00
Remove all uses of LOVE_UNUSED, and simply not name the arguments instead
This commit is contained in:
@@ -587,7 +587,7 @@ namespace opengl
|
||||
lineWidth = width;
|
||||
}
|
||||
|
||||
void Graphics::setLineStyle(Graphics::LineStyle style )
|
||||
void Graphics::setLineStyle(Graphics::LineStyle/* style*/ )
|
||||
{
|
||||
//// XXX: actually enables antialiasing for _all_ polygons.
|
||||
//// may need investigation if wanted or not
|
||||
@@ -599,7 +599,6 @@ namespace opengl
|
||||
// glEnable (GL_POLYGON_SMOOTH);
|
||||
// glHint (GL_POLYGON_SMOOTH_HINT, GL_NICEST);
|
||||
//}
|
||||
LOVE_UNUSED(style);
|
||||
}
|
||||
|
||||
void Graphics::setLine( float width, Graphics::LineStyle style )
|
||||
|
||||
@@ -88,9 +88,8 @@ namespace opengl
|
||||
delete [] buf;
|
||||
}
|
||||
|
||||
void *VertexArray::map(GLenum access)
|
||||
void *VertexArray::map(GLenum/* access*/)
|
||||
{
|
||||
LOVE_UNUSED(access);
|
||||
return buf;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user