mesa: remove unused dd_function_table::CopyTexImage1D/2D() hooks
authorBrian Paul <brianp@vmware.com>
Wed, 20 Jul 2011 02:03:05 +0000 (20:03 -0600)
committerBrian Paul <brianp@vmware.com>
Wed, 20 Jul 2011 02:03:05 +0000 (20:03 -0600)
src/mesa/main/dd.h

index e1ae30fe4d46a26f630fe03e67e04704ef7682c5..e0c5844e193f47a7aa9e690ccc9094a6df353354 100644 (file)
@@ -289,24 +289,6 @@ struct dd_function_table {
                         struct gl_texture_object *texObj,
                         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().
     *