Searched refs:enabled (Results 1 - 25 of 1090) sorted by relevance

1234567891011>>

/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/
H A Detnaviv_state.h37 return ctx->zsa && ctx->zsa->depth.enabled;
43 return ctx->zsa && ctx->zsa->stencil[0].enabled;
H A Detnaviv_zsa.c51 (!so->depth.enabled || so->depth.func == PIPE_FUNC_ALWAYS) &&
71 if (so->stencil[0].enabled) {
73 (so->stencil[1].enabled && so->stencil[1].func != PIPE_FUNC_ALWAYS))
80 } else if (so->stencil[1].enabled) {
89 /* Disable early z reject when no depth test is enabled.
92 if (so->depth.enabled == false || so->depth.func == PIPE_FUNC_ALWAYS)
97 VIVS_PE_DEPTH_CONFIG_DEPTH_FUNC(so->depth.enabled ? so->depth.func
104 COND(so->alpha.enabled, VIVS_PE_ALPHA_OP_ALPHA_TEST) |
117 translate_stencil_mode(so->stencil[0].enabled, so->stencil[1].enabled) |
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a2xx/
H A Dfd2_zsa.c51 if (cso->depth.enabled)
53 COND(!cso->alpha.enabled, A2XX_RB_DEPTHCONTROL_EARLY_Z_ENABLE);
57 if (cso->stencil[0].enabled) {
71 if (cso->stencil[1].enabled) {
87 if (cso->alpha.enabled) {
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a5xx/
H A Dfd5_zsa.c60 /* LRZ not enabled */
65 if (!(cso->stencil->enabled || cso->alpha.enabled || !cso->depth.writemask))
71 if (cso->depth.enabled)
79 if (cso->stencil[0].enabled) {
93 if (cso->stencil[1].enabled) {
108 if (cso->alpha.enabled) {
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/
H A Dfreedreno_state.h35 return ctx->zsa && ctx->zsa->depth.enabled;
45 return ctx->zsa && ctx->zsa->stencil[0].enabled;
/xsrc/external/mit/xf86-video-amdgpu/dist/src/
H A Damdgpu_dri2.h35 Bool enabled; member in struct:amdgpu_dri2
/xsrc/external/mit/xf86-video-ati-kms/dist/src/
H A Dradeon_dri2.h35 Bool enabled; member in struct:radeon_dri2
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a3xx/
H A Dfd3_zsa.c51 if (cso->depth.enabled)
59 if (cso->stencil[0].enabled) {
74 if (cso->stencil[1].enabled) {
90 if (cso->alpha.enabled) {
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/
H A Detnaviv_state.h43 return ctx->zsa && ctx->zsa->stencil[0].enabled;
H A Detnaviv_zsa.c72 if (so->stencil[0].enabled) {
74 (so->stencil[1].enabled && so->stencil[1].func != PIPE_FUNC_ALWAYS))
82 } else if (so->stencil[1].enabled) {
107 const struct pipe_stencil_state *stencil_front = (so->stencil[1].enabled && so->stencil[1].valuemask) ? &so->stencil[i] : &so->stencil[0];
108 const struct pipe_stencil_state *stencil_back = (so->stencil[1].enabled && so->stencil[1].valuemask) ? &so->stencil[!i] : &so->stencil[0];
119 translate_stencil_mode(so->stencil[0].enabled, so->stencil[0].enabled) |
/xsrc/external/mit/xorg-server/dist/hw/xfree86/common/
H A Dxf86DPMS.c70 Bool enabled = TRUE; local in function:xf86DPMSInit
75 enabled = FALSE;
79 enabled = xf86CheckBoolOption(pScrn->options, "dpms", FALSE);
82 if (enabled) {
83 xf86DrvMsg(pScreen->myNum, enabled_from, "DPMS enabled\n");
/xsrc/external/mit/MesaLib.old/dist/src/gallium/docs/source/cso/
H A Ddsa.rst21 enabled
22 Whether the depth test is enabled.
31 enabled
32 Whether the stencil test is enabled. For the second stencil, whether the
33 two-sided stencil is enabled. If two-sided stencil is disabled, the other
56 enabled
57 Whether the alpha test is enabled.
/xsrc/external/mit/MesaLib/dist/docs/gallium/cso/
H A Ddsa.rst21 enabled
22 Whether the depth test is enabled.
31 enabled
32 Whether the stencil test is enabled. For the second stencil, whether the
33 two-sided stencil is enabled. If two-sided stencil is disabled, the other
56 enabled
57 Whether the alpha test is enabled.
/xsrc/external/mit/xf86-video-ati/dist/src/
H A Dradeon_dri2.h32 Bool enabled; member in struct:radeon_dri2
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a4xx/
H A Dfd4_zsa.c51 if (cso->depth.enabled)
59 if (cso->stencil[0].enabled) {
76 if (cso->stencil[1].enabled) {
92 if (cso->alpha.enabled) {
/xsrc/external/mit/MesaLib/src/gallium/auxiliary/
H A Du_tracepoints.h52 if (!unlikely(ut->enabled))
74 if (!unlikely(ut->enabled))
98 if (!unlikely(ut->enabled))
/xsrc/external/mit/MesaLib.old/dist/src/mesa/x86/
H A Dcommon_x86.c131 int ret, enabled; local in function:_mesa_check_os_sse_support
133 len = sizeof(enabled);
134 ret = sysctlbyname("hw.instruction_sse", &enabled, &len, NULL, 0);
135 if (ret || !enabled)
140 int ret, enabled;
141 size_t len = sizeof(enabled);
142 ret = sysctlbyname("machdep.sse", &enabled, &len, (void *)NULL, 0);
143 if (ret || !enabled)
149 int ret, enabled;
150 size_t len = sizeof(enabled);
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/x86/
H A Dcommon_x86.c133 int ret, enabled; local in function:_mesa_check_os_sse_support
135 len = sizeof(enabled);
136 ret = sysctlbyname("hw.instruction_sse", &enabled, &len, NULL, 0);
137 if (ret || !enabled)
142 int ret, enabled;
143 size_t len = sizeof(enabled);
144 ret = sysctlbyname("machdep.sse", &enabled, &len, (void *)NULL, 0);
145 if (ret || !enabled)
151 int ret, enabled;
152 size_t len = sizeof(enabled);
[all...]
/xsrc/external/mit/MesaLib/dist/src/vulkan/overlay-layer/
H A Doverlay_params.c166 params->enabled[OVERLAY_PARAM_ENABLED_fps] = true;
167 params->enabled[OVERLAY_PARAM_ENABLED_frame_timing] = true;
168 params->enabled[OVERLAY_PARAM_ENABLED_device] = true;
169 params->enabled[OVERLAY_PARAM_ENABLED_format] = true;
182 params->enabled[OVERLAY_PARAM_ENABLED_##name] = \
/xsrc/external/mit/libX11/dist/src/
H A DLiHosts.c74 Bool *enabled) /* RETURN */
154 *enabled = reply.enabled;
160 *enabled = reply.enabled;
71 XListHosts(register Display * dpy,int * nhosts,Bool * enabled) argument
/xsrc/external/mit/libdrm/dist/tests/modetest/
H A Dcursor.c52 uint32_t enabled, x, y; member in struct:cursor
79 int enabled = (step->arg ^ count) & 0x1; local in function:set_cursor
82 if (enabled)
85 cursor->enabled = enabled;
95 if (!cursor->enabled)
181 cursor->enabled = 0;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/
H A Dsvga_pipe_depthstencil.c91 /* Note: we use the ds->stencil[0].enabled value for both the front
103 ds->stencil[0].enabled, /*f|b*/
104 ds->stencil[0].enabled, /*f*/
105 ds->stencil[0].enabled, /*b*/
135 ds->stencil[0].enabled = templ->stencil[0].enabled;
136 if (ds->stencil[0].enabled) {
155 ds->stencil[1].enabled = templ->stencil[1].enabled;
156 if (templ->stencil[1].enabled) {
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/docs/source/drivers/openswr/
H A Dknobs.rst9 Use dialogs when asserts fire. Asserts are only enabled in debug builds
13 If enabled will perform all rendering on the API thread. This is useful mainly for debugging purposes.
45 Frame from when to start saving buckets data. NOTE: KNOB_ENABLE_RDTSC must be enabled in core/knobs.h for this to have an effect.
49 Frame at which to stop saving buckets data. NOTE: KNOB_ENABLE_RDTSC must be enabled in core/knobs.h for this to have an effect.
65 Maximum primitives in a single Draw() with tessellation enabled. Larger primitives are split into smaller Draw calls. Should be a multiple of (vectorWidth).
89 Stop per-draw execution at worker FE NOTE: Requires KNOB_ENABLE_TOSS_POINTS to be enabled in core/knobs.h
93 Stop per-draw execution at vertex fetch NOTE: Requires KNOB_ENABLE_TOSS_POINTS to be enabled in core/knobs.h
97 Stop per-draw execution at input assembler NOTE: Requires KNOB_ENABLE_TOSS_POINTS to be enabled in core/knobs.h
101 Stop per-draw execution at vertex shader NOTE: Requires KNOB_ENABLE_TOSS_POINTS to be enabled in core/knobs.h
105 Stop per-draw execution at primitive setup NOTE: Requires KNOB_ENABLE_TOSS_POINTS to be enabled i
[all...]
/xsrc/external/mit/MesaLib/dist/docs/drivers/openswr/
H A Dknobs.rst9 Use dialogs when asserts fire. Asserts are only enabled in debug builds
13 If enabled will perform all rendering on the API thread. This is useful mainly for debugging purposes.
45 Frame from when to start saving buckets data. NOTE: KNOB_ENABLE_RDTSC must be enabled in core/knobs.h for this to have an effect.
49 Frame at which to stop saving buckets data. NOTE: KNOB_ENABLE_RDTSC must be enabled in core/knobs.h for this to have an effect.
65 Maximum primitives in a single Draw() with tessellation enabled. Larger primitives are split into smaller Draw calls. Should be a multiple of (vectorWidth).
89 Stop per-draw execution at worker FE NOTE: Requires KNOB_ENABLE_TOSS_POINTS to be enabled in core/knobs.h
93 Stop per-draw execution at vertex fetch NOTE: Requires KNOB_ENABLE_TOSS_POINTS to be enabled in core/knobs.h
97 Stop per-draw execution at input assembler NOTE: Requires KNOB_ENABLE_TOSS_POINTS to be enabled in core/knobs.h
101 Stop per-draw execution at vertex shader NOTE: Requires KNOB_ENABLE_TOSS_POINTS to be enabled in core/knobs.h
105 Stop per-draw execution at primitive setup NOTE: Requires KNOB_ENABLE_TOSS_POINTS to be enabled i
[all...]
/xsrc/external/mit/fontconfig/dist/fc-conflist/
H A Dfc-conflist.c133 FcBool enabled; local in function:main
135 if (FcConfigFileInfoIterGet (config, &iter, &name, &desc, &enabled))
137 printf ("%c %s: %s\n", enabled ? '+' : '-', name, desc);

Completed in 15 milliseconds

1234567891011>>