summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/dd.h
diff options
context:
space:
mode:
authorMarek Olšák <marek.olsak@amd.com>2015-09-27 21:28:22 +0200
committerMarek Olšák <marek.olsak@amd.com>2015-10-03 22:06:08 +0200
commit379255298f8fa9d9d8d53bf8898345fdd4fd0222 (patch)
tree4576638d88d9092689cce8aa30d30fe9523fffc4 /src/mesa/main/dd.h
parenta6cc895e935889fce674e3988f326a2bae3b51ce (diff)
downloadexternal_mesa3d-379255298f8fa9d9d8d53bf8898345fdd4fd0222.zip
external_mesa3d-379255298f8fa9d9d8d53bf8898345fdd4fd0222.tar.gz
external_mesa3d-379255298f8fa9d9d8d53bf8898345fdd4fd0222.tar.bz2
mesa: remove some Driver.Blend* hooks
Nothing sets them. Reviewed-by: Brian Paul <brianp@vmware.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r--src/mesa/main/dd.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h
index 04d6935..ece2b35 100644
--- a/src/mesa/main/dd.h
+++ b/src/mesa/main/dd.h
@@ -516,15 +516,10 @@ struct dd_function_table {
/** Set the blend equation */
void (*BlendEquationSeparate)(struct gl_context *ctx,
GLenum modeRGB, GLenum modeA);
- void (*BlendEquationSeparatei)(struct gl_context *ctx, GLuint buffer,
- GLenum modeRGB, GLenum modeA);
/** Specify pixel arithmetic */
void (*BlendFuncSeparate)(struct gl_context *ctx,
GLenum sfactorRGB, GLenum dfactorRGB,
GLenum sfactorA, GLenum dfactorA);
- void (*BlendFuncSeparatei)(struct gl_context *ctx, GLuint buffer,
- GLenum sfactorRGB, GLenum dfactorRGB,
- GLenum sfactorA, GLenum dfactorA);
/** Specify a plane against which all geometry is clipped */
void (*ClipPlane)(struct gl_context *ctx, GLenum plane, const GLfloat *eq);
/** Enable and disable writing of frame buffer color components */