diff options
author | Ilia Mirkin <[email protected]> | 2019-02-12 21:32:27 -0500 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2019-02-18 12:13:54 -0500 |
commit | 070a5e5d9248a77aa84375f74fe48c5067362ea8 (patch) | |
tree | c24b06fe2bec5e2a636c54fff2bb6640d970c13b /src/mesa/main/extensions_table.h | |
parent | 47616810ed7cfce21d239391131ad9a5ef558b52 (diff) |
mesa: add explicit enable for EXT_float_blend, and error condition
If EXT_float_blend is not supported, error out on blending of FP32
attachments in an ES2 context.
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Tapani Pälli <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/main/extensions_table.h')
-rw-r--r-- | src/mesa/main/extensions_table.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/extensions_table.h b/src/mesa/main/extensions_table.h index 0d6bb452ffa..b0492fed698 100644 --- a/src/mesa/main/extensions_table.h +++ b/src/mesa/main/extensions_table.h @@ -226,7 +226,7 @@ EXT(EXT_draw_buffers_indexed , ARB_draw_buffers_blend EXT(EXT_draw_elements_base_vertex , ARB_draw_elements_base_vertex , x , x , x , ES2, 2014) EXT(EXT_draw_instanced , ARB_draw_instanced , GLL, GLC, x , x , 2006) EXT(EXT_draw_range_elements , dummy_true , GLL, x , x , x , 1997) -EXT(EXT_float_blend , dummy_true , x , x , x , 30, 2015) +EXT(EXT_float_blend , EXT_float_blend , x , x , x , 30, 2015) EXT(EXT_fog_coord , dummy_true , GLL, x , x , x , 1999) EXT(EXT_frag_depth , dummy_true , x , x , x , ES2, 2010) EXT(EXT_framebuffer_blit , dummy_true , GLL, GLC, x , x , 2005) |