diff options
author | Roland Scheidegger <[email protected]> | 2015-02-14 16:34:04 +0100 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2015-02-21 01:23:00 +0100 |
commit | 88305dfd0b79ad5980d293e86712496f134347b4 (patch) | |
tree | 749308cc3289045eefd886c4960773325e9bb491 /src/mesa/main/extensions.c | |
parent | 9dbe5e1dca8da8e129706ed88e41e142172617fe (diff) |
mesa: don't enable NV_fragment_program_option with swrast
Since dropping some NV_fragment_program opcodes (commits
868f95f1da74cf6dd7468cba1b56664aad585ccb, a3688d686f147f4252d19b298ae26d4ac72c2e08)
we can no longer parse all opcodes necessary for this extension, leading
to bugs (https://bugs.freedesktop.org/show_bug.cgi?id=86980).
Hence don't announce support for it in swrast (no other driver enabled it).
(Note that remnants of some NV_fp/vp extensions remain, they could be
dropped but are required as hacks for getting viewperf11 catia to run.)
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 6951a0c70f3..f2120153870 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -515,7 +515,6 @@ _mesa_enable_sw_extensions(struct gl_context *ctx) ctx->Extensions.NV_point_sprite = GL_TRUE; ctx->Extensions.NV_texture_env_combine4 = GL_TRUE; ctx->Extensions.NV_texture_rectangle = GL_TRUE; - ctx->Extensions.NV_fragment_program_option = GL_TRUE; ctx->Extensions.EXT_gpu_program_parameters = GL_TRUE; ctx->Extensions.OES_standard_derivatives = GL_TRUE; ctx->Extensions.TDFX_texture_compression_FXT1 = GL_TRUE; |