From 98d8765769d809b060721bb071ca56887011a6b8 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 10 Aug 2014 01:25:12 +0300 Subject: Add support for OpenGL extension GL_ARB_clear_texture. --- src/graphicsmanager.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'src/graphicsmanager.cpp') diff --git a/src/graphicsmanager.cpp b/src/graphicsmanager.cpp index ed5983715..9b53de3e7 100644 --- a/src/graphicsmanager.cpp +++ b/src/graphicsmanager.cpp @@ -1065,14 +1065,26 @@ void GraphicsManager::initOpenGLFunctions() } if (is43 || supportExtension("GL_ARB_copy_image")) { + logger->log1("found GL_ARB_copy_image"); assignFunction(glCopyImageSubData); } else { logger->log1("GL_ARB_copy_image not found"); } + if (is44 || supportExtension("GL_ARB_clear_texture")) + { + logger->log1("found GL_ARB_clear_texture"); + assignFunction(glClearTexImage); + assignFunction(glClearTexSubImage); + } + else + { + logger->log1("GL_ARB_clear_texture not found"); + } if (is20 || supportExtension("GL_ARB_shader_objects")) { + logger->log1("found GL_ARB_shader_objects"); assignFunction(glCreateShader); assignFunction(glDeleteShader); assignFunction(glGetShaderiv); @@ -1100,6 +1112,7 @@ void GraphicsManager::initOpenGLFunctions() if (is30 || supportExtension("GL_EXT_gpu_shader4")) { + logger->log1("found GL_EXT_gpu_shader4"); assignFunction(glBindFragDataLocation); } else -- cgit v1.2.3-60-g2f50