Module: Mesa Branch: master Commit: d25b4d5e904bed11e4a84912cf0503f8c5053f06 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=d25b4d5e904bed11e4a84912cf0503f8c5053f06
Author: Chris Forbes <[email protected]> Date: Sat Feb 16 22:09:38 2013 +1300 i965: enable ARB_texture_storage_multisample on Gen6+ This can be enabled everywhere that ARB_texture_multisample is supported -- ARB_texture_storage is supported on everything. Signed-off-by: Chris Forbes <[email protected]> Reviewed-by: Eric Anholt <[email protected]> Reviewed-by: Brian Paul <[email protected]> --- src/mesa/drivers/dri/intel/intel_extensions.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/mesa/drivers/dri/intel/intel_extensions.c b/src/mesa/drivers/dri/intel/intel_extensions.c index 9efdee4..1ad728a 100755 --- a/src/mesa/drivers/dri/intel/intel_extensions.c +++ b/src/mesa/drivers/dri/intel/intel_extensions.c @@ -108,6 +108,7 @@ intelInitExtensions(struct gl_context *ctx) ctx->Extensions.OES_depth_texture_cube_map = true; ctx->Extensions.ARB_shading_language_packing = true; ctx->Extensions.ARB_texture_multisample = true; + ctx->Extensions.ARB_texture_storage_multisample = true; } if (intel->gen >= 5) { _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
