Searched defs:outheight (Results 1 - 2 of 2) sorted by relevance
/external/quake/quake/src/QW/client/ |
H A D | gl_draw.c | 1011 void GL_ResampleTexture (unsigned *in, int inwidth, int inheight, unsigned *out, int outwidth, int outheight) argument 1018 for (i=0 ; i<outheight ; i++, out += outwidth) 1020 inrow = in + inwidth*(i*inheight/outheight); 1041 void GL_Resample8BitTexture (unsigned char *in, int inwidth, int inheight, unsigned char *out, int outwidth, int outheight) argument 1048 for (i=0 ; i<outheight ; i++, out += outwidth) 1050 inrow = in + inwidth*(i*inheight/outheight);
|
/external/quake/quake/src/WinQuake/ |
H A D | gl_draw.cpp | 1268 void GL_ResampleTexture (unsigned *in, int inwidth, int inheight, unsigned *out, int outwidth, int outheight) argument 1275 for (i=0 ; i<outheight ; i++, out += outwidth) 1277 inrow = in + inwidth*(i*inheight/outheight); 1298 void GL_Resample8BitTexture (unsigned char *in, int inwidth, int inheight, unsigned char *out, int outwidth, int outheight) argument 1305 for (i=0 ; i<outheight ; i++, out += outwidth) 1307 inrow = in + inwidth*(i*inheight/outheight);
|
Completed in 33 milliseconds