Home
last modified time | relevance | path

Searched refs:clipVertex (Results 1 – 3 of 3) sorted by relevance

/frameworks/native/opengl/libagl/
Darray.cpp1037 static void clipVertex(ogles_context_t* c, vertex_t* nv, in clipVertex() function
1051 clipVertex(c, nv, t, s, p); in clipVertexC()
1061 clipVertex(c, nv, t, s, p); in clipVertexT()
1075 c->arrays.clipVertex(c, nv, t, p, s); in clipEye()
1217 case 0: c->arrays.clipVertex = clipVertex; break; in validate_arrays()
1218 case 1: c->arrays.clipVertex = clipVertexC; break; in validate_arrays()
1219 case 2: c->arrays.clipVertex = clipVertexT; break; in validate_arrays()
1220 case 3: c->arrays.clipVertex = clipVertexAll; break; in validate_arrays()
Dprimitives.cpp980 c->arrays.clipVertex(c, buf, t, p, s); in clip_triangle()
991 c->arrays.clipVertex(c, buf, t, s, p); in clip_triangle()
1087 c->arrays.clipVertex(c, p, t, p, s); in clip_line()
1094 c->arrays.clipVertex(c, s, t, s, p); in clip_line()
Dcontext.h221 void (*clipVertex)(ogles_context_t* c, vertex_t* nv, member