diff options
author | Ian Romanick <[email protected]> | 2013-06-27 18:20:29 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-06-28 13:35:22 -0700 |
commit | 9bc24b4fc4ee1eda60d4f4bde662f7a1d8474cc1 (patch) | |
tree | 2ed022cde8dc912c24f5e491fa7c38a36e299641 /src/mesa/drivers/dri/nouveau | |
parent | 338ea2e4d14b5bf30fe2820facd71333d5acd527 (diff) |
mesa: GL_NV_blend_square is not optional
Every driver left in Mesa enables this extension all the time. There's
no reason to let it be optional.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/nouveau')
-rw-r--r-- | src/mesa/drivers/dri/nouveau/nouveau_context.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/nouveau/nouveau_context.c b/src/mesa/drivers/dri/nouveau/nouveau_context.c index 8002d4fdfa7..eab1aa23f47 100644 --- a/src/mesa/drivers/dri/nouveau/nouveau_context.c +++ b/src/mesa/drivers/dri/nouveau/nouveau_context.c @@ -201,7 +201,6 @@ nouveau_context_init(struct gl_context *ctx, struct nouveau_screen *screen, ctx->Extensions.EXT_framebuffer_blit = true; ctx->Extensions.EXT_packed_depth_stencil = true; ctx->Extensions.EXT_texture_filter_anisotropic = true; - ctx->Extensions.NV_blend_square = true; ctx->Extensions.NV_texture_env_combine4 = true; return GL_TRUE; |