mesa: remove unused dd_function_table::CopyTexImage1D/2D() hooks

This commit is contained in:
Brian Paul 2011-07-19 20:03:05 -06:00
parent 774311fb54
commit 1c1fc62e38

View 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().
*