OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:cull_face
(Results
1 - 6
of
6
) sorted by null
/external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_cull.c
43
unsigned
cull_face
; /**< which face(s) to cull (one of PIPE_FACE_x) */
member in struct:cull_stage
82
if ((face & cull_stage(stage)->
cull_face
) == 0) {
95
cull->
cull_face
= stage->draw->rasterizer->
cull_face
;
/external/deqp/modules/gles31/functional/
es31fNegativeFragmentApiTests.cpp
277
void
cull_face
(NegativeTestContext& ctx)
function in namespace:deqp::gles31::Functional::NegativeTestShared
493
{
cull_face
, "
cull_face
", "Invalid glCullFace() usage" },
/external/mesa3d/src/gallium/drivers/softpipe/
sp_setup.c
114
unsigned
cull_face
; /* which faces cull */
member in struct:setup_context
388
if (face & setup->
cull_face
)
[
all
...]
/external/mesa3d/src/mesa/drivers/dri/r200/
r200_state.c
532
int
cull_face
= (mode == GL_CW) ? R200_FFACE_CULL_CW : R200_FFACE_CULL_CCW;
local
542
cull_face
= (mode == GL_CCW) ? R200_FFACE_CULL_CW : R200_FFACE_CULL_CCW;
543
rmesa->hw.set.cmd[SET_SE_CNTL] |=
cull_face
;
[
all
...]
/external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_state.c
440
int
cull_face
= (mode == GL_CW) ? RADEON_FFACE_CULL_CW : RADEON_FFACE_CULL_CCW;
local
450
cull_face
= (mode == GL_CCW) ? RADEON_FFACE_CULL_CW : RADEON_FFACE_CULL_CCW;
451
rmesa->hw.set.cmd[SET_SE_CNTL] |=
cull_face
;
[
all
...]
/external/mesa3d/src/gallium/include/pipe/
p_state.h
86
unsigned
cull_face
:2; /**< PIPE_FACE_x */
member in struct:pipe_rasterizer_state
Completed in 1522 milliseconds