summaryrefslogtreecommitdiffstats
path: root/src/mesa/main
diff options
context:
space:
mode:
authorTimothy Arceri <[email protected]>2017-05-15 10:51:34 +1000
committerTimothy Arceri <[email protected]>2017-05-17 10:12:04 +1000
commit25591adc286a217ee344d17d277c81ba9e6d353b (patch)
treeab8f1d7b9d7c5a233b8c3d33bc65da52d2961dc3 /src/mesa/main
parent9aff3c605b925ad3302f392ad378198845438dfa (diff)
mesa: add KHR_no_error support for glBlendEquationSeparateiARB()
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/mesa/main')
-rw-r--r--src/mesa/main/blend.c9
-rw-r--r--src/mesa/main/blend.h3
2 files changed, 12 insertions, 0 deletions
diff --git a/src/mesa/main/blend.c b/src/mesa/main/blend.c
index e91c14aeb9d..8c763ed34e5 100644
--- a/src/mesa/main/blend.c
+++ b/src/mesa/main/blend.c
@@ -615,6 +615,15 @@ blend_equation_separatei(struct gl_context *ctx, GLuint buf, GLenum modeRGB,
}
+void GLAPIENTRY
+_mesa_BlendEquationSeparateiARB_no_error(GLuint buf, GLenum modeRGB,
+ GLenum modeA)
+{
+ GET_CURRENT_CONTEXT(ctx);
+ blend_equation_separatei(ctx, buf, modeRGB, modeA);
+}
+
+
/**
* Set separate blend equations for one color buffer/target.
*/
diff --git a/src/mesa/main/blend.h b/src/mesa/main/blend.h
index 199345df600..54b9ce6e1b1 100644
--- a/src/mesa/main/blend.h
+++ b/src/mesa/main/blend.h
@@ -77,6 +77,9 @@ _mesa_BlendEquationSeparate( GLenum modeRGB, GLenum modeA );
extern void GLAPIENTRY
+_mesa_BlendEquationSeparateiARB_no_error(GLuint buf, GLenum modeRGB,
+ GLenum modeA);
+extern void GLAPIENTRY
_mesa_BlendEquationSeparateiARB(GLuint buf, GLenum modeRGB, GLenum modeA);