diff options
author | Chris Forbes <[email protected]> | 2012-11-22 19:24:22 +1300 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-12-14 15:26:51 -0800 |
commit | 2f7f095a801311bf62aa1204b5a9940509753cff (patch) | |
tree | 950652568adf3762dfc162a774de187f17436597 | |
parent | 380fc562b35c57b0f97ea4325c578ed94efae220 (diff) |
i965: expose ARB_texture_cube_map_array
V3: Put enable in an existing block rather than making a new
one for no good reason.
Signed-off-by: Chris Forbes <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
-rw-r--r-- | docs/GL3.txt | 2 | ||||
-rwxr-xr-x | src/mesa/drivers/dri/intel/intel_extensions.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/docs/GL3.txt b/docs/GL3.txt index ba1b0d1a101..99c3194aa3d 100644 --- a/docs/GL3.txt +++ b/docs/GL3.txt @@ -96,7 +96,7 @@ GL_ARB_sample_shading not started GL_ARB_shader_subroutine not started GL_ARB_tessellation_shader not started GL_ARB_texture_buffer_object_rgb32 not started -GL_ARB_texture_cube_map_array DONE (softpipe) +GL_ARB_texture_cube_map_array DONE (i965, softpipe) GL_ARB_texture_gather not started GL_ARB_transform_feedback2 DONE GL_ARB_transform_feedback3 DONE diff --git a/src/mesa/drivers/dri/intel/intel_extensions.c b/src/mesa/drivers/dri/intel/intel_extensions.c index 7b2b595b9a4..5c6b651eccd 100755 --- a/src/mesa/drivers/dri/intel/intel_extensions.c +++ b/src/mesa/drivers/dri/intel/intel_extensions.c @@ -103,6 +103,7 @@ intelInitExtensions(struct gl_context *ctx) ctx->Extensions.ARB_draw_buffers_blend = true; ctx->Extensions.ARB_uniform_buffer_object = true; ctx->Extensions.ARB_texture_buffer_object = true; + ctx->Extensions.ARB_texture_cube_map_array = true; } if (intel->gen >= 5) |