i965: enable OES_texture_view for gen8+

Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Tapani Pälli 2018-05-09 09:12:33 +03:00
parent 3ddcdcf94d
commit 7b54404c9d
1 changed files with 2 additions and 1 deletions

View File

@ -281,9 +281,10 @@ intelInitExtensions(struct gl_context *ctx)
if (devinfo->gen >= 8 || devinfo->is_baytrail) {
/* For now, we only enable OES_copy_image on platforms that support
* ETC2 natively in hardware. We would need more hacks to support it
* elsewhere.
* elsewhere. Same with OES_texture_view.
*/
ctx->Extensions.OES_copy_image = true;
ctx->Extensions.OES_texture_view = true;
}
if (devinfo->gen >= 8) {