summaryrefslogtreecommitdiff
path: root/src/mesa/main/teximage.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-01-31 23:10:16 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-01-31 23:10:16 +0000
commit663049a719ed76aa0a6f24f1951a411d241bc8a4 (patch)
tree2d01f4a995e0362c8195fa44e03025d20dc9d909 /src/mesa/main/teximage.h
parent2b1c416e213173bbc8db6ff5daf493f331f9ffbe (diff)
added _mesa_TexImage3DEXT()
Diffstat (limited to 'src/mesa/main/teximage.h')
-rw-r--r--src/mesa/main/teximage.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/mesa/main/teximage.h b/src/mesa/main/teximage.h
index 98ab512262..bd6202875a 100644
--- a/src/mesa/main/teximage.h
+++ b/src/mesa/main/teximage.h
@@ -1,10 +1,10 @@
-/* $Id: teximage.h,v 1.3 1999/11/11 01:22:28 brianp Exp $ */
+/* $Id: teximage.h,v 1.4 2000/01/31 23:10:16 brianp Exp $ */
/*
* Mesa 3-D graphics library
* Version: 3.3
*
- * Copyright (C) 1999 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2000 Brian Paul All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -66,6 +66,13 @@ _mesa_TexImage3D( GLenum target, GLint level, GLint internalformat,
extern void
+_mesa_TexImage3DEXT( GLenum target, GLint level, GLenum internalformat,
+ GLsizei width, GLsizei height, GLsizei depth,
+ GLint border, GLenum format, GLenum type,
+ const GLvoid *pixels );
+
+
+extern void
_mesa_GetTexImage( GLenum target, GLint level,
GLenum format, GLenum type, GLvoid *pixels );