OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:has_gs
(Results
1 - 25
of
25
) sorted by relevancy
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/
si_build_pm4.h
285
enum si_has_gs
has_gs
, enum si_has_ngg ngg,
300
if (ngg ||
has_gs
) {
305
} else if (
has_gs
) {
322
if (ngg ||
has_gs
) {
327
} else if (
has_gs
) {
si_pipe.h
1681
si_get_vs_inline(struct si_context *sctx, enum si_has_tess has_tess, enum si_has_gs
has_gs
)
1683
if (
has_gs
)
/xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/
ir3_shader.h
303
unsigned
has_gs
: 1;
member in struct:ir3_shader_key::__anon977::__anon978
712
if (key->tessellation || key->
has_gs
)
ir3_compiler_nir.c
3654
return !so->key.
has_gs
&& !so->key.tessellation;
3656
return !so->key.
has_gs
;
3749
bool
has_gs
= ctx->so->key.
has_gs
;
local
3759
} else if (
has_gs
) {
3773
if (
has_gs
) {
4012
(so->key.
has_gs
|| so->key.tessellation)) ||
4013
(so->type == MESA_SHADER_TESS_EVAL && so->key.
has_gs
)) {
ir3_nir.c
638
if (so->key.
has_gs
|| so->key.tessellation) {
652
if (so->key.
has_gs
)
ir3_shader.c
504
key->
has_gs
= true;
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
pipelineobj.c
718
const bool
has_gs
= _mesa_has_geometry_shaders(ctx);
local
760
if (!
has_gs
)
shaderapi.c
725
const bool
has_gs
= _mesa_has_geometry_shaders(ctx);
local
868
if (!
has_gs
)
876
if (!
has_gs
||
886
if (!
has_gs
)
894
if (!
has_gs
)
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
pipelineobj.c
712
const bool
has_gs
= _mesa_has_geometry_shaders(ctx);
local
754
if (!
has_gs
)
shaderapi.c
675
const bool
has_gs
= _mesa_has_geometry_shaders(ctx);
local
782
if (!
has_gs
)
790
if (!
has_gs
|| !ctx->Extensions.ARB_gpu_shader5)
798
if (!
has_gs
)
806
if (!
has_gs
)
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/draw/
draw_llvm.h
299
unsigned
has_gs
:1;
member in struct:draw_llvm_variant_key
draw_llvm.c
1563
const boolean bypass_viewport = key->
has_gs
|| key->bypass_viewport ||
1565
const boolean enable_cliptest = !key->
has_gs
&& (key->clip_xy ||
1986
key->
has_gs
= llvm->draw->gs.geometry_shader != NULL;
2057
debug_printf("
has_gs
= %u\n", key->
has_gs
);
/xsrc/external/mit/MesaLib/dist/src/broadcom/vulkan/
v3dvx_cmd_buffer.c
1823
if (pipeline->
has_gs
) {
1837
if (pipeline->
has_gs
) {
1847
if (pipeline->
has_gs
) {
1864
if (pipeline->
has_gs
) {
1920
(pipeline->
has_gs
&& prog_data_gs->uses_pid) || prog_data_fs->uses_pid;
1922
!pipeline->
has_gs
&& prog_data_fs->uses_pid;
2018
if (pipeline->
has_gs
) {
v3dvx_pipeline.c
379
if (!pipeline->
has_gs
) {
v3dv_pipeline.c
1147
key->
has_gs
= has_geometry_shader;
2355
pipeline->
has_gs
= true;
2444
pipeline->
has_gs
= true;
2490
assert(!pipeline->subpass->view_mask || (!pipeline->
has_gs
&& !pipeline->gs));
2631
if (pipeline->
has_gs
) {
v3dv_private.h
1761
bool
has_gs
;
member in struct:v3dv_pipeline
v3dv_cmd_buffer.c
2169
if (pipeline->
has_gs
) {
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/ir3/
ir3_gallium.c
211
key.
has_gs
= true;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a6xx/
fd6_draw.c
190
emit.key.key.
has_gs
= true;
/xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/
radv_pipeline.c
2334
bool
has_gs
= radv_pipeline_has_gs(pipeline);
local
2342
has_gs
? R_00B330_SPI_SHADER_USER_DATA_ES_0 :
2348
return
has_gs
? R_00B330_SPI_SHADER_USER_DATA_ES_0 : R_00B130_SPI_SHADER_USER_DATA_VS_0;
2359
return
has_gs
? R_00B330_SPI_SHADER_USER_DATA_ES_0 :
2362
if (
has_gs
)
/xsrc/external/mit/MesaLib/dist/src/broadcom/compiler/
v3d_compiler.h
441
bool
has_gs
;
nir_to_vir.c
2113
!c->fs_key->
has_gs
) {
3797
if (c->fs_uses_primitive_id && !c->fs_key->
has_gs
) {
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/v3d/
v3d_program.c
546
key->
has_gs
= v3d->prog.bind_gs != NULL;
/xsrc/external/mit/MesaLib/dist/src/amd/vulkan/
radv_pipeline.c
2481
bool
has_gs
= shaders[MESA_SHADER_GEOMETRY];
local
2490
tes_info_idx =
has_gs
? MESA_SHADER_GEOMETRY : MESA_SHADER_TESS_EVAL;
2515
if (
has_gs
) {
2525
} else if (
has_gs
) {
3700
bool
has_gs
= radv_pipeline_has_gs(pipeline);
local
3718
if (
has_gs
) {
3739
if (
has_gs
) {
/xsrc/external/mit/MesaLib/dist/src/freedreno/vulkan/
tu_pipeline.c
2230
key->
has_gs
= true;
Completed in 70 milliseconds
Indexes created Thu Jul 30 00:24:59 UTC 2026