From 8b6ffc3f45eef23fec36498f0446a2184b96cd5b Mon Sep 17 00:00:00 2001 From: Jonathan Li Date: Tue, 31 Jul 2018 23:02:00 +0100 Subject: [PATCH] gsdx:ogl: Remove unused variables Fixes some clang warnings. --- plugins/GSdx/GSDeviceOGL.cpp | 1 - plugins/GSdx/GSTextureOGL.cpp | 2 +- plugins/GSdx/GSTextureOGL.h | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/GSdx/GSDeviceOGL.cpp b/plugins/GSdx/GSDeviceOGL.cpp index adaa53d50a..de5b023e4a 100644 --- a/plugins/GSdx/GSDeviceOGL.cpp +++ b/plugins/GSdx/GSDeviceOGL.cpp @@ -48,7 +48,6 @@ static const uint32 g_fx_cb_index = 14; static const uint32 g_convert_index = 15; static const uint32 g_vs_cb_index = 20; static const uint32 g_ps_cb_index = 21; -static const uint32 g_gs_cb_index = 22; bool GSDeviceOGL::m_debug_gl_call = false; int GSDeviceOGL::m_shader_inst = 0; diff --git a/plugins/GSdx/GSTextureOGL.cpp b/plugins/GSdx/GSTextureOGL.cpp index 5ac894c53a..9eadde9887 100644 --- a/plugins/GSdx/GSTextureOGL.cpp +++ b/plugins/GSdx/GSTextureOGL.cpp @@ -148,7 +148,7 @@ namespace PboPool { } GSTextureOGL::GSTextureOGL(int type, int w, int h, int format, GLuint fbo_read, bool mipmap) - : m_pbo_size(0), m_clean(false), m_generate_mipmap(true), m_local_buffer(NULL), m_r_x(0), m_r_y(0), m_r_w(0), m_r_h(0), m_layer(0) + : m_clean(false), m_generate_mipmap(true), m_local_buffer(nullptr), m_r_x(0), m_r_y(0), m_r_w(0), m_r_h(0), m_layer(0) { // OpenGL didn't like dimensions of size 0 m_size.x = std::max(1,w); diff --git a/plugins/GSdx/GSTextureOGL.h b/plugins/GSdx/GSTextureOGL.h index 1cfa039f22..0fd1d3bc10 100644 --- a/plugins/GSdx/GSTextureOGL.h +++ b/plugins/GSdx/GSTextureOGL.h @@ -41,7 +41,6 @@ class GSTextureOGL final : public GSTexture { private: GLuint m_texture_id; // the texture id - int m_pbo_size; GLuint m_fbo_read; bool m_clean; bool m_generate_mipmap;