From fd96e3e657a0dffb3726f1b36e191c9c6ad8b5a2 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 13 Nov 2017 22:38:33 -0500 Subject: [PATCH] Eliminates all unused #ifdef GL_NV_texture_barrier code. --- Outputs/CRT/Internals/CRTOpenGL.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Outputs/CRT/Internals/CRTOpenGL.cpp b/Outputs/CRT/Internals/CRTOpenGL.cpp index 7dc5024ca..2c5871c3e 100644 --- a/Outputs/CRT/Internals/CRTOpenGL.cpp +++ b/Outputs/CRT/Internals/CRTOpenGL.cpp @@ -168,10 +168,10 @@ void OpenGLOutputBuilder::draw_frame(unsigned int output_width, unsigned int out glDisable(GL_BLEND); #ifdef GL_NV_texture_barrier - if(work_texture_) { - work_texture_->bind_framebuffer(); - glClear(GL_COLOR_BUFFER_BIT); - } +// if(work_texture_) { +// work_texture_->bind_framebuffer(); +// glClear(GL_COLOR_BUFFER_BIT); +// } #endif while(active_pipeline->shader) { @@ -194,7 +194,7 @@ void OpenGLOutputBuilder::draw_frame(unsigned int output_width, unsigned int out active_pipeline++; #ifdef GL_NV_texture_barrier - glTextureBarrierNV(); +// glTextureBarrierNV(); #endif } @@ -218,7 +218,7 @@ void OpenGLOutputBuilder::draw_frame(unsigned int output_width, unsigned int out } #ifdef GL_NV_texture_barrier - glTextureBarrierNV(); +// glTextureBarrierNV(); #endif // copy framebuffer to the intended place