diff options
Diffstat (limited to 'src/refresh/sw/draw.c')
-rw-r--r-- | src/refresh/sw/draw.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/refresh/sw/draw.c b/src/refresh/sw/draw.c index f2a5697..c13273a 100644 --- a/src/refresh/sw/draw.c +++ b/src/refresh/sw/draw.c @@ -168,24 +168,6 @@ void R_SetClipRect(int flags, const clipRect_t *clip) /* ============= -R_GetPicSize -============= -*/ -qboolean R_GetPicSize(int *w, int *h, qhandle_t pic) -{ - image_t *image = IMG_ForHandle(pic); - - if (w) { - *w = image->width; - } - if (h) { - *h = image->height; - } - return image->flags & if_transparent; -} - -/* -============= R_DrawStretchData ============= */ |