Lines Matching full:width
35 int D_SurfaceCacheForRes (int width, int height)
47 pix = width*height;
129 surfcache_t *D_SCAlloc (int width, int size)
134 if ((width < 0) || (width > 256))
135 Sys_Error ("D_SCAlloc: bad cache width %d\n", width);
185 sc_rover->width = 0;
193 new->width = width;
195 if (width > 0)
196 new->height = (size - sizeof(*new) + sizeof(new->data)) / width;
228 printf ("%p : %i bytes %i width\n",test, test->size, test->width);