mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 15:31:26 +12:00
Enable -Wunused-parameter
This commit is contained in:
parent
7205a93751
commit
87af905018
102 changed files with 1571 additions and 1463 deletions
|
@ -61,8 +61,8 @@ namespace gl
|
|||
|
||||
// https://www.khronos.org/opengl/wiki/Debug_Output
|
||||
void APIENTRY log_debug(GLenum source, GLenum type, GLuint id,
|
||||
GLenum severity, GLsizei length, const GLchar* message,
|
||||
const void* user_param)
|
||||
GLenum severity, GLsizei /*length*/, const GLchar* message,
|
||||
const void* /*user_param*/)
|
||||
{
|
||||
// Message source
|
||||
std::string str_source;
|
||||
|
@ -631,7 +631,7 @@ namespace gl
|
|||
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, GL_NONE, 0);
|
||||
}
|
||||
|
||||
void blitter::fast_clear_image(gl::command_context& cmd, const texture* dst, float depth, u8 stencil)
|
||||
void blitter::fast_clear_image(gl::command_context& cmd, const texture* dst, float /*depth*/, u8 /*stencil*/)
|
||||
{
|
||||
GLenum attachment;
|
||||
GLbitfield clear_mask;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue