Remove now unused setTexOffset from __DriverAPIRec.

This commit is contained in:
Kristian Høgsberg
2008-02-25 15:36:42 -05:00
parent 57f310b2c9
commit b49a8f805a
2 changed files with 0 additions and 9 deletions

View File

@@ -205,12 +205,6 @@ struct __DriverAPIRec {
void (*CopySubBuffer)(__DRIdrawablePrivate *driDrawPriv,
int x, int y, int w, int h);
/**
* See corresponding field in \c __DRIscreenRec.
*/
void (*setTexOffset)(__DRIcontext *pDRICtx, GLint texname,
unsigned long long offset, GLint depth, GLuint pitch);
/**
* New version of GetMSC so we can pass drawable data to the low level
* DRM driver (e.g. pipe info).

View File

@@ -678,9 +678,6 @@ static const struct __DriverAPIRec intelAPI = {
.WaitForSBC = NULL,
.SwapBuffersMSC = NULL,
.CopySubBuffer = intelCopySubBuffer,
#ifdef I915
.setTexOffset = intelSetTexOffset,
#endif
.UpdateBuffer = intelUpdateBuffer,
};