implemented FX_grSstPerfStats()

This commit is contained in:
Brian Paul 2000-03-07 18:23:20 +00:00
parent 9360a4450d
commit 56b99de2fa

View file

@ -221,12 +221,12 @@ void FX_grGlideGetVersion(char *buf)
void FX_grSstPerfStats(GrSstPerfStats_t *st)
{
/* ToDo */
st->pixelsIn = 0;
st->chromaFail = 0;
st->zFuncFail = 0;
st->aFuncFail = 0;
st->pixelsOut = 0;
int n;
grGet(GR_STATS_PIXELS_IN, 4, &n); st->pixelsIn = n;
grGet(GR_STATS_PIXELS_CHROMA_FAIL, 4, &n); st->chromaFail = n;
grGet(GR_STATS_PIXELS_DEPTHFUNC_FAIL, 4, &n); st->zFuncFail = n;
grGet(GR_STATS_PIXELS_AFUNC_FAIL, 4, &n); st->aFuncFail = n;
grGet(GR_STATS_PIXELS_OUT, 4, &n); st->pixelsOut = n;
}
void FX_grAADrawLine(GrVertex *a,GrVertex *b)