From: Ian Romanick Date: Thu, 20 Jan 2011 20:05:14 +0000 (-0800) Subject: mesa: Connect glGetShaderPrecisionFormat into the dispatch table X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dde3270c19143b42a55a93e1e85bb24194462671;p=mesa.git mesa: Connect glGetShaderPrecisionFormat into the dispatch table --- diff --git a/src/mesa/main/shaderapi.c b/src/mesa/main/shaderapi.c index e831175235e..a5e90d7cbd1 100644 --- a/src/mesa/main/shaderapi.c +++ b/src/mesa/main/shaderapi.c @@ -1924,6 +1924,7 @@ _mesa_init_shader_dispatch(struct _glapi_table *exec) /* GL_ARB_ES2_compatibility */ SET_ReleaseShaderCompiler(exec, _mesa_ReleaseShaderCompiler); + SET_GetShaderPrecisionFormat(exec, _mesa_GetShaderPrecisionFormat); #endif /* FEATURE_GL */ }