diff options
author | Tapani Pälli <[email protected]> | 2014-07-25 10:20:17 +0300 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2014-07-28 16:26:27 -0700 |
commit | 76b11d15d36db9e83b36efe469c27d68389bb627 (patch) | |
tree | aa7cb16185932777a4b8f58f93d2ddd48c45318a /src/mesa/main | |
parent | a9528cef6b6ff4875c9d125a60b7309a2ad24766 (diff) |
glapi: add indexed blend functions (GL 4.0)
This makes some of the UE4 engine demos (Stylized, Mobile Temple)
render correctly, tested on Intel Haswell machine.
Signed-off-by: Tapani Pälli <[email protected]>
Acked-by: Anuj Phogat <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=78716
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/tests/dispatch_sanity.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/main/tests/dispatch_sanity.cpp b/src/mesa/main/tests/dispatch_sanity.cpp index 6c4bdee7fd4..5e751f493ff 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -542,11 +542,11 @@ const struct function gl_core_functions_possible[] = { { "glVertexAttribDivisor", 33, -1 }, /* GL 4.0 */ - { "glMinSampleShading", 40, -1 }, // XXX: Add to xml -// { "glBlendEquationi", 40, -1 }, // XXX: Add to xml -// { "glBlendEquationSeparatei", 40, -1 }, // XXX: Add to xml -// { "glBlendFunci", 40, -1 }, // XXX: Add to xml -// { "glBlendFuncSeparatei", 40, -1 }, // XXX: Add to xml + { "glMinSampleShading", 40, -1 }, + { "glBlendEquationi", 40, -1 }, + { "glBlendEquationSeparatei", 40, -1 }, + { "glBlendFunci", 40, -1 }, + { "glBlendFuncSeparatei", 40, -1 }, /* GL 4.3 */ { "glIsRenderbuffer", 43, -1 }, |