Home | History | Annotate | Download | only in libagl

Lines Matching refs:cbSurface

696     const GGLSurface& cbSurface = c->rasterizer.state.buffers.color.s;
697 y = gglIntToFixed(cbSurface.height) - (y + h);
800 const GGLSurface& cbSurface = c->rasterizer.state.buffers.color.s;
801 y = cbSurface.height - (y + h);
1334 const GGLSurface& cbSurface = c->rasterizer.state.buffers.color.s;
1335 const int cbFormatIdx = cbSurface.format;
1397 y = cbSurface.height - (y + height);
1404 if (x+width > GLint(cbSurface.width))
1405 width = cbSurface.width - x;
1407 if (y+height > GLint(cbSurface.height))
1408 height = cbSurface.height - y;
1412 cbSurface, x, y, width, height);
1457 const GGLSurface& cbSurface = c->rasterizer.state.buffers.color.s;
1458 y = cbSurface.height - (y + height);
1465 if (x+width > GLint(cbSurface.width))
1466 width = cbSurface.width - x;
1468 if (y+height > GLint(cbSurface.height))
1469 height = cbSurface.height - y;
1473 cbSurface, x, y, width, height);