diff options
author | Brian Paul <[email protected]> | 2011-07-19 20:03:05 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-07-19 20:03:05 -0600 |
commit | 1c1fc62e388534b6c0751fc9f8ab34a89e25efd0 (patch) | |
tree | a78b7265f44c1951358f3aa7804f91a0233b78ca /src/mesa/main/dd.h | |
parent | 774311fb5403e3da7ff0197199ffad8f34089e6a (diff) |
mesa: remove unused dd_function_table::CopyTexImage1D/2D() hooks
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index e1ae30fe4d4..e0c5844e193 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -290,24 +290,6 @@ struct dd_function_table { struct gl_texture_image *texImage ); /** - * Called by glCopyTexImage1D(). - * - * Drivers should use a fallback routine from texstore.c if needed. - */ - void (*CopyTexImage1D)( struct gl_context *ctx, GLenum target, GLint level, - GLenum internalFormat, GLint x, GLint y, - GLsizei width, GLint border ); - - /** - * Called by glCopyTexImage2D(). - * - * Drivers should use a fallback routine from texstore.c if needed. - */ - void (*CopyTexImage2D)( struct gl_context *ctx, GLenum target, GLint level, - GLenum internalFormat, GLint x, GLint y, - GLsizei width, GLsizei height, GLint border ); - - /** * Called by glCopyTexSubImage1D(). * * Drivers should use a fallback routine from texstore.c if needed. |