Home | History | Annotate | Download | only in libagl

Lines Matching refs:ogles_context_t

37 static void primitive_point(ogles_context_t* c, vertex_t* v);
38 static void primitive_line(ogles_context_t* c, vertex_t* v0, vertex_t* v1);
39 static void primitive_clip_triangle(ogles_context_t* c,
42 static void primitive_nop_point(ogles_context_t* c, vertex_t* v);
43 static void primitive_nop_line(ogles_context_t* c, vertex_t* v0, vertex_t* v1);
44 static void primitive_nop_triangle(ogles_context_t* c,
47 static inline bool cull_triangle(ogles_context_t* c,
50 static void lerp_triangle(ogles_context_t* c,
53 static void lerp_texcoords(ogles_context_t* c,
56 static void lerp_texcoords_w(ogles_context_t* c,
59 static void triangle(ogles_context_t* c,
62 static void clip_triangle(ogles_context_t* c,
65 static unsigned int clip_line(ogles_context_t* c,
73 static void lightTriangleDarkSmooth(ogles_context_t* c,
96 static void lightTriangleDarkFlat(ogles_context_t* c,
109 static void lightTriangleSmooth(ogles_context_t* c,
120 static void lightTriangleFlat(ogles_context_t* c,
132 void lightVertexDarkSmoothFog(ogles_context_t* c, vertex_t* v)
143 void lightVertexDarkFlatFog(ogles_context_t* c, vertex_t* v)
151 void lightVertexSmoothFog(ogles_context_t* c, vertex_t* v)
159 static void lightTriangleDarkSmoothFog(ogles_context_t* c,
167 static void lightTriangleDarkFlatFog(ogles_context_t* c,
177 static void lightTriangleSmoothFog(ogles_context_t* c,
185 static void lightTriangleFlatFog(ogles_context_t* c,
197 typedef void (*light_primitive_t)(ogles_context_t*,
212 void ogles_validate_primitives(ogles_context_t* c)
390 void fetch_texcoord_impl(ogles_context_t* c,
435 inline void fetch_texcoord(ogles_context_t* c,
456 void primitive_nop_point(ogles_context_t*, vertex_t*) {
459 void primitive_point(ogles_context_t* c, vertex_t* v)
529 void primitive_nop_line(ogles_context_t*, vertex_t*, vertex_t*) {
532 void primitive_line(ogles_context_t* c, vertex_t* v0, vertex_t* v1)
570 void primitive_nop_triangle(ogles_context_t* c,
574 void primitive_clip_triangle(ogles_context_t* c,
614 void triangle(ogles_context_t* c,
631 void lerp_triangle(ogles_context_t* c,
694 int compute_lod(ogles_context_t* c, int i,
715 void lerp_texcoords(ogles_context_t* c,
759 void lerp_texcoords_w(ogles_context_t* c,
826 bool cull_triangle(ogles_context_t* c, vertex_t* v0, vertex_t* v1, vertex_t* v2)
850 void clip_triangle(ogles_context_t* c,
1033 unsigned int clip_line(ogles_context_t* c, vertex_t* s, vertex_t* p)