/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_curbe.c | 89 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()
|
D | brw_clip.c | 114 if (ctx->Transform.ClipPlanesEnabled) in brw_upload_clip_prog() 115 key.nr_userclip = util_logbase2(ctx->Transform.ClipPlanesEnabled) + 1; in brw_upload_clip_prog()
|
D | brw_vs.c | 264 if (ctx->Transform.ClipPlanesEnabled != 0 && in brw_vs_populate_key() 268 util_logbase2(ctx->Transform.ClipPlanesEnabled) + 1; in brw_vs_populate_key()
|
D | brw_sf.c | 124 key.userclip_active = (ctx->Transform.ClipPlanesEnabled != 0); in brw_upload_sf_prog()
|
D | genX_state_upload.c | 1338 ctx->Transform.ClipPlanesEnabled; in genX() 1344 (ctx->Transform.ClipPlanesEnabled & 0x3f) | 0x40; in genX() 1444 ctx->Transform.ClipPlanesEnabled; in genX()
|
/external/mesa3d/src/mesa/tnl/ |
D | t_vb_cliptmp.h | 139 GLbitfield enabled = ctx->Transform.ClipPlanesEnabled; in TAG() 227 GLbitfield enabled = ctx->Transform.ClipPlanesEnabled; in TAG() 289 GLbitfield enabled = ctx->Transform.ClipPlanesEnabled; in TAG()
|
D | t_vb_vertex.c | 68 GLbitfield mask = ctx->Transform.ClipPlanesEnabled; \ 215 if (ctx->Transform.ClipPlanesEnabled) { in run_vertex_stage()
|
D | t_vb_program.c | 89 GLbitfield mask = ctx->Transform.ClipPlanesEnabled; in userclip() 168 if (ctx->Transform.ClipPlanesEnabled && in do_ndc_cliptest()
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_util.h | 101 ctx->Transform.ClipPlanesEnabled; in st_user_clip_planes_enabled()
|
D | st_atom_shader.c | 235 key.lower_ucp = st->ctx->Transform.ClipPlanesEnabled; in st_update_vp() 295 key.lower_ucp = st->ctx->Transform.ClipPlanesEnabled; in st_update_common_program()
|
D | st_atom_rasterizer.c | 275 raster->clip_plane_enable = ctx->Transform.ClipPlanesEnabled; in st_update_rasterizer()
|
/external/mesa3d/src/mesa/main/ |
D | clip.c | 91 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) { in _mesa_ClipPlane()
|
D | matrix.c | 923 mask = ctx->Transform.ClipPlanesEnabled; in update_projection() 1112 ctx->Transform.ClipPlanesEnabled = 0; in _mesa_init_transform()
|
D | enable.c | 438 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()
|
D | rastpos.c | 112 GLbitfield mask = ctx->Transform.ClipPlanesEnabled; in userclip_point() 431 if (ctx->Transform.ClipPlanesEnabled && !userclip_point(ctx, clip)) { in _mesa_RasterPos()
|
D | attrib.c | 339 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()
|
D | mtypes.h | 1299 GLbitfield ClipPlanesEnabled; /**< on/off bitmask */ member
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_state_init.c | 228 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 )
|
D | radeon_state.c | 1134 GLbitfield mask = ctx->Transform.ClipPlanesEnabled; in radeonUpdateClipPlanes() 2013 if (ctx->Transform.ClipPlanesEnabled) in radeonValidateState()
|
/external/mesa3d/src/mesa/drivers/common/ |
D | meta.h | 144 GLbitfield ClipPlanesEnabled; member
|
D | meta.c | 724 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/ |
D | r200_vertprog.c | 1135 if (ctx->Transform.ClipPlanesEnabled) { in r200SetupVertexProg() 1138 rmesa->hw.tcl.cmd[TCL_UCP_VERT_BLEND_CTL] |= (ctx->Transform.ClipPlanesEnabled << 2); in r200SetupVertexProg()
|
D | r200_state.c | 1364 GLbitfield mask = ctx->Transform.ClipPlanesEnabled; in r200UpdateClipPlanes() 1943 if (ctx->Transform.ClipPlanesEnabled & (1 << i)) { in r200Enable() 2238 if (ctx->Transform.ClipPlanesEnabled) in r200ValidateState()
|
D | r200_state_init.c | 271 TCL_OR_VP_CHECK( tcl_ucp_add4, (ctx->Transform.ClipPlanesEnabled & (1 << (atom->idx))), 4 )
|
/external/mesa3d/docs/relnotes/ |
D | 4.1 | 295 by GLuint ctx->Transform.ClipPlanesEnabled. The later is a bitfield.
|