Searched defs:pvrectin (Results 1 - 2 of 2) sorted by relevance

/external/quake/quake/src/QW/client/
H A Dr_main.c315 void R_SetVrect (vrect_t *pvrectin, vrect_t *pvrect, int lineadj) argument
336 h = pvrectin->height;
338 h = pvrectin->height - lineadj;
340 // h = (!cl_sbar.value && size==1.0) ? pvrectin->height : (pvrectin->height - lineadj);
341 // h = pvrectin->height - lineadj;
343 pvrect->width = pvrectin->width;
345 pvrect->width = pvrectin->width * size;
348 size = 96.0 / pvrectin->width;
352 pvrect->height = pvrectin
[all...]
/external/quake/quake/src/WinQuake/
H A Dr_main.cpp310 void R_SetVrect (vrect_t *pvrectin, vrect_t *pvrect, int lineadj) argument
323 h = pvrectin->height - lineadj;
324 pvrect->width = pvrectin->width * size;
327 size = 96.0 / pvrectin->width;
331 pvrect->height = pvrectin->height * size;
332 if (pvrect->height > pvrectin->height - lineadj)
333 pvrect->height = pvrectin->height - lineadj;
337 pvrect->x = (pvrectin->width - pvrect->width)/2;

Completed in 47 milliseconds