Home
last modified time | relevance | path

Searched refs:GL_FILL (Results 1 – 23 of 23) sorted by relevance

/external/mesa3d/src/mesa/main/
Dpolygon.c139 if (mode!=GL_POINT && mode!=GL_LINE && mode!=GL_FILL) { in _mesa_PolygonMode()
178 if (ctx->Polygon.FrontMode == GL_FILL && ctx->Polygon.BackMode == GL_FILL) in _mesa_PolygonMode()
323 ctx->Polygon.FrontMode = GL_FILL; in _mesa_init_polygon()
324 ctx->Polygon.BackMode = GL_FILL; in _mesa_init_polygon()
Dstate.c423 if (ctx->Polygon.FrontMode != GL_FILL
424 || ctx->Polygon.BackMode != GL_FILL)
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_clip.c175 case GL_FILL: in brw_upload_clip_prog()
193 case GL_FILL: in brw_upload_clip_prog()
208 if (ctx->Polygon.BackMode != GL_FILL || in brw_upload_clip_prog()
209 ctx->Polygon.FrontMode != GL_FILL) { in brw_upload_clip_prog()
Dbrw_draw.c100 ctx->Polygon.FrontMode == GL_FILL && in brw_set_prim()
101 ctx->Polygon.BackMode == GL_FILL) in brw_set_prim()
106 ctx->Polygon.FrontMode == GL_FILL && in brw_set_prim()
107 ctx->Polygon.BackMode == GL_FILL) { in brw_set_prim()
Dgen7_sf_state.c189 case GL_FILL: in upload_sf_state()
207 case GL_FILL: in upload_sf_state()
Dgen6_sf_state.c161 case GL_FILL: in upload_sf_state()
179 case GL_FILL: in upload_sf_state()
Dbrw_vs.c405 key.copy_edgeflag = (ctx->Polygon.FrontMode != GL_FILL || in brw_upload_vs_prog()
406 ctx->Polygon.BackMode != GL_FILL); in brw_upload_vs_prog()
Dbrw_draw_upload.c375 if (intel->gen >= 6 && (ctx->Polygon.FrontMode != GL_FILL || in brw_prepare_vertices()
376 ctx->Polygon.BackMode != GL_FILL)) { in brw_prepare_vertices()
/external/mesa3d/src/mesa/tnl/
Dt_vb_render.c72 #define NEED_EDGEFLAG_SETUP (ctx->Polygon.FrontMode != GL_FILL || ctx->Polygon.BackMode != GL_FILL)
187 #define NEED_EDGEFLAG_SETUP (ctx->Polygon.FrontMode != GL_FILL || ctx->Polygon.BackMode != GL_FILL)
Dt_context.c166 if (ctx->Polygon.FrontMode != GL_FILL || in _tnl_InvalidateState()
167 ctx->Polygon.BackMode != GL_FILL) in _tnl_InvalidateState()
Dt_draw.c319 if (ctx->Polygon.FrontMode != GL_FILL || in bind_inputs()
320 ctx->Polygon.BackMode != GL_FILL) in bind_inputs()
/external/mesa3d/src/mesa/state_tracker/
Dst_atom_shader.c146 st->ctx->Polygon.FrontMode != GL_FILL || in update_vp()
147 st->ctx->Polygon.BackMode != GL_FILL)); in update_vp()
Dst_draw.c176 ctx->Polygon.FrontMode == GL_FILL && in translate_prim()
177 ctx->Polygon.BackMode == GL_FILL) in translate_prim()
Dst_atom_rasterizer.c48 case GL_FILL: in translate_fill()
/external/mesa3d/src/mesa/swrast_setup/
Dss_triangle.c256 if (ctx->Polygon.FrontMode != GL_FILL || in _swsetup_choose_trifuncs()
257 ctx->Polygon.BackMode != GL_FILL || in _swsetup_choose_trifuncs()
Dss_tritmp.h41 GLenum mode = GL_FILL; in TAG()
/external/mesa3d/src/mesa/drivers/dri/nouveau/
Dnouveau_gldefs.h162 case GL_FILL: in nvgl_polygon_mode()
/external/mesa3d/src/mesa/tnl_dd/
Dt_dd_tritmp.h120 GLenum mode = GL_FILL; in TAG()
346 GLenum mode = GL_FILL; in TAG()
/external/mesa3d/src/mesa/vbo/
Dvbo_exec_api.c715 case GL_FILL: in vbo_exec_EvalMesh2()
760 case GL_FILL: in vbo_exec_EvalMesh2()
/external/eigen/demos/opengl/
Dquaternion_demo.cpp461 glPolygonMode(GL_FRONT_AND_BACK,GL_FILL); in paintGL()
/external/deqp/framework/opengl/wrapper/
DglwEnums.inl240 #define GL_FILL 0x1B02 macro
/external/mesa3d/include/GL/
Dgl.h266 #define GL_FILL 0x1B02 macro
/external/mesa3d/src/mesa/drivers/common/
Dmeta.c601 _mesa_PolygonMode(GL_FRONT_AND_BACK, GL_FILL); in _mesa_meta_begin()