Home | History | Annotate | Download | only in libagl

Lines Matching refs:vertex_t

54 void perspective(ogles_context_t* c, vertex_t* v, uint32_t enables)
83 void clipFrustumPerspective(ogles_context_t* c, vertex_t* v, uint32_t enables)
89 uint32_t clip = v->flags & vertex_t::CLIP_ALL;
91 if (v->clip.x < -w) clip |= vertex_t::CLIP_L;
92 if (v->clip.x > w) clip |= vertex_t::CLIP_R;
93 if (v->clip.y < -w) clip |= vertex_t::CLIP_B;
94 if (v->clip.y > w) clip |= vertex_t::CLIP_T;
95 if (v->clip.z < -w) clip |= vertex_t::CLIP_N;
96 if (v->clip.z > w) clip |= vertex_t::CLIP_F;
110 void clipAllPerspective(ogles_context_t* c, vertex_t* v, uint32_t enables)
115 v->flags |= vertex_t::EYE;
136 void ogles_vertex_project(ogles_context_t* c, vertex_t* v) {
140 void ogles_vertex_perspective2D(ogles_context_t* c, vertex_t* v)
151 void ogles_vertex_perspective3DZ(ogles_context_t* c, vertex_t* v) {
154 void ogles_vertex_perspective3D(ogles_context_t* c, vertex_t* v) {
157 void ogles_vertex_clipAllPerspective3DZ(ogles_context_t* c, vertex_t* v) {
160 void ogles_vertex_clipAllPerspective3D(ogles_context_t* c, vertex_t* v) {