diff options
author | Pauli Nieminen <[email protected]> | 2012-06-12 21:38:55 +0300 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-08-01 15:31:17 -0700 |
commit | 8129dabb5f5ff717bb1ca32710ca6204d5345461 (patch) | |
tree | 9aa7deb1816dd3ea1970799033716d55d0bc6841 /src/mesa/drivers | |
parent | ae58f9696c5f82c98767b3f244b2ad4b966905e5 (diff) |
mesa: Make ARB_sampler_objects mandatory
To allow meta acceleration operations to use sampler objects the
ARB_sampler_objects extension needs to be mandatory for all drivers.
Because the extension doesn't have any hardware dependencies it is
trivial to implement.
Signed-off-by: Pauli Nieminen <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/drivers')
-rwxr-xr-x | src/mesa/drivers/dri/intel/intel_extensions.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_extensions.c b/src/mesa/drivers/dri/intel/intel_extensions.c index b75221673b0..2d2245d534c 100755 --- a/src/mesa/drivers/dri/intel/intel_extensions.c +++ b/src/mesa/drivers/dri/intel/intel_extensions.c @@ -49,7 +49,6 @@ intelInitExtensions(struct gl_context *ctx) ctx->Extensions.ARB_half_float_pixel = true; ctx->Extensions.ARB_map_buffer_range = true; ctx->Extensions.ARB_point_sprite = true; - ctx->Extensions.ARB_sampler_objects = true; ctx->Extensions.ARB_shader_objects = true; ctx->Extensions.ARB_shading_language_100 = true; ctx->Extensions.ARB_sync = true; |