Home
last modified time | relevance | path

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

/frameworks/native/opengl/libagl/
Darray.cpp1035 static void clipVertex(ogles_context_t* c, vertex_t* nv, in clipVertex() function
1049 clipVertex(c, nv, t, s, p); in clipVertexC()
1059 clipVertex(c, nv, t, s, p); in clipVertexT()
1073 c->arrays.clipVertex(c, nv, t, p, s); in clipEye()
1215 case 0: c->arrays.clipVertex = clipVertex; break; in validate_arrays()
1216 case 1: c->arrays.clipVertex = clipVertexC; break; in validate_arrays()
1217 case 2: c->arrays.clipVertex = clipVertexT; break; in validate_arrays()
1218 case 3: c->arrays.clipVertex = clipVertexAll; break; in validate_arrays()
Dprimitives.cpp981 c->arrays.clipVertex(c, buf, t, p, s); in clip_triangle()
992 c->arrays.clipVertex(c, buf, t, s, p); in clip_triangle()
1088 c->arrays.clipVertex(c, p, t, p, s); in clip_line()
1095 c->arrays.clipVertex(c, s, t, s, p); in clip_line()
Dcontext.h221 void (*clipVertex)(ogles_context_t* c, vertex_t* nv, member