modesetting: Delete dead drmmode_bo_for_pixmap function.

Embarassingly, it looks like I introduced this dead function in
commit 13c7d53df8 a year ago.
Nothing ever used it, not even then.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
Kenneth Graunke 2016-07-28 07:28:51 -07:00
parent c833c0866f
commit d3d4ff0ed4
2 changed files with 0 additions and 31 deletions

View File

@ -178,36 +178,6 @@ drmmode_create_bo(drmmode_ptr drmmode, drmmode_bo *bo,
return bo->dumb != NULL;
}
Bool
drmmode_bo_for_pixmap(drmmode_ptr drmmode, drmmode_bo *bo, PixmapPtr pixmap)
{
#ifdef GLAMOR
ScreenPtr screen = xf86ScrnToScreen(drmmode->scrn);
CARD16 pitch;
CARD32 size;
int fd;
#ifdef GLAMOR_HAS_GBM
if (drmmode->glamor) {
bo->gbm = glamor_gbm_bo_from_pixmap(screen, pixmap);
bo->dumb = NULL;
return bo->gbm != NULL;
}
#endif
fd = glamor_fd_from_pixmap(screen, pixmap, &pitch, &size);
if (fd < 0) {
xf86DrvMsg(drmmode->scrn->scrnIndex, X_ERROR,
"Failed to get fd for flip to new front.\n");
return FALSE;
}
bo->dumb = dumb_get_bo_from_fd(drmmode->fd, fd, pitch, size);
close(fd);
#endif
return bo->dumb != NULL;
}
Bool
drmmode_SetSlaveBO(PixmapPtr ppix,
drmmode_ptr drmmode, int fd_handle, int pitch, int size)

View File

@ -160,7 +160,6 @@ extern DevPrivateKeyRec msPixmapPrivateKeyRec;
#define msGetPixmapPriv(drmmode, p) ((msPixmapPrivPtr)dixGetPrivateAddr(&(p)->devPrivates, &(drmmode)->pixmapPrivateKeyRec))
Bool drmmode_bo_for_pixmap(drmmode_ptr drmmode, drmmode_bo *bo, PixmapPtr pixmap);
int drmmode_bo_destroy(drmmode_ptr drmmode, drmmode_bo *bo);
uint32_t drmmode_bo_get_pitch(drmmode_bo *bo);
uint32_t drmmode_bo_get_handle(drmmode_bo *bo);