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>2010-09-29 17:36:49 +0000
committerStijn Buys <ingar@osirion.org>2010-09-29 17:36:49 +0000
commit3274ad9eeb02af614e1cba5cd05468de04069d6e (patch)
treed59c581164fdd22c0d3307b09508af56932c5276 /src/render/gl.h
parent178f0e4a83918df416ac8274b0e845b390772d76 (diff)
better envmapping, by Odin
Diffstat (limited to 'src/render/gl.h')
-rw-r--r--src/render/gl.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/render/gl.h b/src/render/gl.h
index 5bd42b5..7d1857c 100644
--- a/src/render/gl.h
+++ b/src/render/gl.h
@@ -203,6 +203,11 @@ void loadidentity();
/// Perspective matrix
void frustum(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble znear, GLdouble zfar);
+
+/// Texture coordinate generation
+void texgeni(GLenum coord, GLenum param, GLenum value);
+
+void texgenfv(GLenum coord, GLenum param, const GLfloat* value);
}
#endif // __INCLUDED_RENDER_GL_H__