Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2007-10-21 15:20:20 +0000
committerStijn Buys <ingar@osirion.org>2007-10-21 15:20:20 +0000
commit084c6212afaa6f996091f36d0ff85ac845803a87 (patch)
tree224fa2e9b5d4e29657f2b3b040b45d41d57a5d10 /src/gl/osiriongl.h
parentf79c4c47f6f70ac07e521f06420bb80b1028a799 (diff)
added glDisable and glBlendFunc
Diffstat (limited to 'src/gl/osiriongl.h')
-rw-r--r--src/gl/osiriongl.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gl/osiriongl.h b/src/gl/osiriongl.h
index 92c0db3..26ff131 100644
--- a/src/gl/osiriongl.h
+++ b/src/gl/osiriongl.h
@@ -56,6 +56,9 @@ namespace gl
/// glEnable
void enable(GLenum cap);
+ /// glDisable
+ void disable(GLenum cap);
+
/// glShadeModel
void shademodel(GLenum mode);
@@ -69,6 +72,9 @@ namespace gl
/// glDepthMask
void depthmask(GLenum mode);
+ /// glBlendFunc
+ void blendfunc(GLenum sfactor, GLenum dfactor);
+
/// Delimite the start of a sequence of verteces describing a primitive or group of primitives
/*! @param primitive The type of drawing primitive
* @see end()