diff options
author | Brian Paul <[email protected]> | 2006-03-28 01:23:43 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-03-28 01:23:43 +0000 |
commit | 255e8ebd581c34c5174783a191a12a3ac0c00cde (patch) | |
tree | d27ca6e57df1e2329ba6d326c2578770d7021725 /src | |
parent | 95174c4eb2dcd6fe687ffcddc82bf7b8bf242ebe (diff) |
enable GL_ARB_half_float_pixel, was GL_MESAX_half_float_pixel
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/extensions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 448a7c5a122..5bd2515f053 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -48,7 +48,7 @@ static const struct { { OFF, "GL_ARB_draw_buffers", F(ARB_draw_buffers) }, { OFF, "GL_ARB_fragment_program", F(ARB_fragment_program) }, { OFF, "GL_ARB_fragment_shader", F(ARB_fragment_shader) }, - { OFF, "GL_MESAX_half_float_pixel", F(ARB_half_float_pixel) }, + { OFF, "GL_ARB_half_float_pixel", F(ARB_half_float_pixel) }, { OFF, "GL_ARB_imaging", F(ARB_imaging) }, { OFF, "GL_ARB_multisample", F(ARB_multisample) }, { OFF, "GL_ARB_multitexture", F(ARB_multitexture) }, @@ -182,7 +182,7 @@ _mesa_enable_sw_extensions(GLcontext *ctx) #if FEATURE_ARB_fragment_shader ctx->Extensions.ARB_fragment_shader = GL_TRUE; #endif - /*ctx->Extensions.ARB_half_float_pixel = GL_TRUE;*/ + ctx->Extensions.ARB_half_float_pixel = GL_TRUE; ctx->Extensions.ARB_imaging = GL_TRUE; ctx->Extensions.ARB_multitexture = GL_TRUE; #if FEATURE_ARB_occlusion_query |