Lines Matching refs:VS
1946 VS = 1 << 0, /* Vertex Shader */
1957 VS_GS = VS | GS,
1958 VS_TCS = VS | TCS,
1976 VS,
1977 ES, /* Export shader: pre-GS (VS or TES) on GFX6-8. Combined into GS on GFX9 (and GFX10/legacy). */
1979 NGG, /* Primitive shader, used to implement VS, TES, GS. */
1980 LS, /* Local shader: pre-TCS (VS) on GFX6-8. Combined into HS on GFX9 (and GFX10/legacy). */
1981 HS, /* Hull shader: TCS on GFX6-8. Merged VS and TCS on GFX9-10. */
2015 static constexpr Stage vertex_vs(HWStage::VS, SWStage::VS);
2018 static constexpr Stage tess_eval_vs(HWStage::VS, SWStage::TES);
2019 static constexpr Stage gs_copy_vs(HWStage::VS, SWStage::GSCopy);
2024 static constexpr Stage vertex_ngg(HWStage::NGG, SWStage::VS);
2033 static constexpr Stage vertex_ls(HWStage::LS, SWStage::VS); /* vertex before tesselation control */
2034 static constexpr Stage vertex_es(HWStage::ES, SWStage::VS); /* vertex before geometry */