summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/multisample.h
diff options
context:
space:
mode:
authorChris Forbes <chrisf@ijw.co.nz>2012-11-24 13:08:45 +1300
committerChris Forbes <chrisf@ijw.co.nz>2013-03-02 11:33:20 +1300
commit0f83e415e49520021977e76ad3d0b0a9c1f6d8d4 (patch)
treeda14ac475849e25e14c0f03cd9ed08e76446903b /src/mesa/main/multisample.h
parentc0674fa5cdb27e367e29e954c03ce1e3f3b5c4a0 (diff)
downloadexternal_mesa3d-0f83e415e49520021977e76ad3d0b0a9c1f6d8d4.zip
external_mesa3d-0f83e415e49520021977e76ad3d0b0a9c1f6d8d4.tar.gz
external_mesa3d-0f83e415e49520021977e76ad3d0b0a9c1f6d8d4.tar.bz2
glapi: add ARB_texture_multisample
Adds new enums, dispatch machinery, and stubs for the 4 new entrypoints. V2: - Drop placeholder - Align enum values - Remove explicit exec=mesa; it *is* the dispatch flavor we want, but it's also the default. I misunderstood how this worked before; after actually reading the generator it makes good sense. V3: - Squash in stubs for new entrypoints, and dispatch_sanity tweaks, so we don't get build breakage between those patches. V4: - Fix various remaining whitespace issues Signed-off-by: Chris Forbes <chrisf@ijw.co.nz> [1/3 V2] Reviewed-by: Matt Turner <mattst88@gmail.com> [V3] Reviewed-by: Eric Anholt <eric@anholt.net> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Diffstat (limited to 'src/mesa/main/multisample.h')
-rw-r--r--src/mesa/main/multisample.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/multisample.h b/src/mesa/main/multisample.h
index 30726c3..9e6b8e0 100644
--- a/src/mesa/main/multisample.h
+++ b/src/mesa/main/multisample.h
@@ -38,4 +38,10 @@ extern void
_mesa_init_multisample(struct gl_context *ctx);
+extern void GLAPIENTRY
+_mesa_GetMultisamplefv(GLenum pname, GLuint index, GLfloat* val);
+
+extern void GLAPIENTRY
+_mesa_SampleMaski(GLuint index, GLbitfield mask);
+
#endif