Lines Matching refs:cbSurface
685 const GGLSurface& cbSurface = c->rasterizer.state.buffers.color.s; in drawTexxOESImp() local
686 y = gglIntToFixed(cbSurface.height) - (y + h); in drawTexxOESImp()
789 const GGLSurface& cbSurface = c->rasterizer.state.buffers.color.s; in drawTexiOES() local
790 y = cbSurface.height - (y + h); in drawTexiOES()
1321 const GGLSurface& cbSurface = c->rasterizer.state.buffers.color.s; in glCopyTexImage2D() local
1322 const int cbFormatIdx = cbSurface.format; in glCopyTexImage2D()
1384 y = cbSurface.height - (y + height); in glCopyTexImage2D()
1391 if (x+width > GLint(cbSurface.width)) in glCopyTexImage2D()
1392 width = cbSurface.width - x; in glCopyTexImage2D()
1394 if (y+height > GLint(cbSurface.height)) in glCopyTexImage2D()
1395 height = cbSurface.height - y; in glCopyTexImage2D()
1399 cbSurface, x, y, width, height); in glCopyTexImage2D()
1444 const GGLSurface& cbSurface = c->rasterizer.state.buffers.color.s; in glCopyTexSubImage2D() local
1445 y = cbSurface.height - (y + height); in glCopyTexSubImage2D()
1452 if (x+width > GLint(cbSurface.width)) in glCopyTexSubImage2D()
1453 width = cbSurface.width - x; in glCopyTexSubImage2D()
1455 if (y+height > GLint(cbSurface.height)) in glCopyTexSubImage2D()
1456 height = cbSurface.height - y; in glCopyTexSubImage2D()
1460 cbSurface, x, y, width, height); in glCopyTexSubImage2D()