Home
last modified time | relevance | path

Searched refs:ClipPlanesEnabled (Results 1 – 25 of 25) sorted by relevance

/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_curbe.c89 if (ctx->Transform.ClipPlanesEnabled) { in calculate_curbe_offsets()
90 GLuint nr_planes = 6 + util_bitcount(ctx->Transform.ClipPlanesEnabled); in calculate_curbe_offsets()
254 mask = ctx->Transform.ClipPlanesEnabled; in brw_upload_constant_buffer()
Dbrw_clip.c114 if (ctx->Transform.ClipPlanesEnabled) in brw_upload_clip_prog()
115 key.nr_userclip = util_logbase2(ctx->Transform.ClipPlanesEnabled) + 1; in brw_upload_clip_prog()
Dbrw_vs.c264 if (ctx->Transform.ClipPlanesEnabled != 0 && in brw_vs_populate_key()
268 util_logbase2(ctx->Transform.ClipPlanesEnabled) + 1; in brw_vs_populate_key()
Dbrw_sf.c124 key.userclip_active = (ctx->Transform.ClipPlanesEnabled != 0); in brw_upload_sf_prog()
DgenX_state_upload.c1338 ctx->Transform.ClipPlanesEnabled; in genX()
1344 (ctx->Transform.ClipPlanesEnabled & 0x3f) | 0x40; in genX()
1444 ctx->Transform.ClipPlanesEnabled; in genX()
/external/mesa3d/src/mesa/tnl/
Dt_vb_cliptmp.h139 GLbitfield enabled = ctx->Transform.ClipPlanesEnabled; in TAG()
227 GLbitfield enabled = ctx->Transform.ClipPlanesEnabled; in TAG()
289 GLbitfield enabled = ctx->Transform.ClipPlanesEnabled; in TAG()
Dt_vb_vertex.c68 GLbitfield mask = ctx->Transform.ClipPlanesEnabled; \
215 if (ctx->Transform.ClipPlanesEnabled) { in run_vertex_stage()
Dt_vb_program.c89 GLbitfield mask = ctx->Transform.ClipPlanesEnabled; in userclip()
168 if (ctx->Transform.ClipPlanesEnabled && in do_ndc_cliptest()
/external/mesa3d/src/mesa/state_tracker/
Dst_util.h101 ctx->Transform.ClipPlanesEnabled; in st_user_clip_planes_enabled()
Dst_atom_shader.c235 key.lower_ucp = st->ctx->Transform.ClipPlanesEnabled; in st_update_vp()
295 key.lower_ucp = st->ctx->Transform.ClipPlanesEnabled; in st_update_common_program()
Dst_atom_rasterizer.c275 raster->clip_plane_enable = ctx->Transform.ClipPlanesEnabled; in st_update_rasterizer()
/external/mesa3d/src/mesa/main/
Dclip.c91 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) { in _mesa_ClipPlane()
Dmatrix.c923 mask = ctx->Transform.ClipPlanesEnabled; in update_projection()
1112 ctx->Transform.ClipPlanesEnabled = 0; in _mesa_init_transform()
Denable.c438 if ((ctx->Transform.ClipPlanesEnabled & (1 << p)) in _mesa_set_enable()
454 ctx->Transform.ClipPlanesEnabled |= (1 << p); in _mesa_set_enable()
464 ctx->Transform.ClipPlanesEnabled &= ~(1 << p); in _mesa_set_enable()
1533 return (ctx->Transform.ClipPlanesEnabled >> p) & 1; in _mesa_IsEnabled()
Drastpos.c112 GLbitfield mask = ctx->Transform.ClipPlanesEnabled; in userclip_point()
431 if (ctx->Transform.ClipPlanesEnabled && !userclip_point(ctx, clip)) { in _mesa_RasterPos()
Dattrib.c339 attr->ClipPlanes = ctx->Transform.ClipPlanesEnabled; in _mesa_PushAttrib()
626 if ((ctx->Transform.ClipPlanesEnabled & mask) != (enable->ClipPlanes & mask)) in pop_enable_group()
1439 !!(xform->ClipPlanesEnabled & mask)); in _mesa_PopAttrib()
Dmtypes.h1299 GLbitfield ClipPlanesEnabled; /**< on/off bitmask */ member
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_state_init.c228 TCL_CHECK( tcl_ucp0_add4, (ctx->Transform.ClipPlanesEnabled & 0x1), 4 )
229 TCL_CHECK( tcl_ucp1_add4, (ctx->Transform.ClipPlanesEnabled & 0x2), 4 )
230 TCL_CHECK( tcl_ucp2_add4, (ctx->Transform.ClipPlanesEnabled & 0x4), 4 )
231 TCL_CHECK( tcl_ucp3_add4, (ctx->Transform.ClipPlanesEnabled & 0x8), 4 )
232 TCL_CHECK( tcl_ucp4_add4, (ctx->Transform.ClipPlanesEnabled & 0x10), 4 )
233 TCL_CHECK( tcl_ucp5_add4, (ctx->Transform.ClipPlanesEnabled & 0x20), 4 )
Dradeon_state.c1134 GLbitfield mask = ctx->Transform.ClipPlanesEnabled; in radeonUpdateClipPlanes()
2013 if (ctx->Transform.ClipPlanesEnabled) in radeonValidateState()
/external/mesa3d/src/mesa/drivers/common/
Dmeta.h144 GLbitfield ClipPlanesEnabled; member
Dmeta.c724 save->ClipPlanesEnabled = ctx->Transform.ClipPlanesEnabled; in _mesa_meta_begin()
725 mask = ctx->Transform.ClipPlanesEnabled; in _mesa_meta_begin()
1114 GLbitfield mask = save->ClipPlanesEnabled; in _mesa_meta_end()
/external/mesa3d/src/mesa/drivers/dri/r200/
Dr200_vertprog.c1135 if (ctx->Transform.ClipPlanesEnabled) { in r200SetupVertexProg()
1138 rmesa->hw.tcl.cmd[TCL_UCP_VERT_BLEND_CTL] |= (ctx->Transform.ClipPlanesEnabled << 2); in r200SetupVertexProg()
Dr200_state.c1364 GLbitfield mask = ctx->Transform.ClipPlanesEnabled; in r200UpdateClipPlanes()
1943 if (ctx->Transform.ClipPlanesEnabled & (1 << i)) { in r200Enable()
2238 if (ctx->Transform.ClipPlanesEnabled) in r200ValidateState()
Dr200_state_init.c271 TCL_OR_VP_CHECK( tcl_ucp_add4, (ctx->Transform.ClipPlanesEnabled & (1 << (atom->idx))), 4 )
/external/mesa3d/docs/relnotes/
D4.1295 by GLuint ctx->Transform.ClipPlanesEnabled. The later is a bitfield.