Lines Matching defs:VS
1909 VS = 1 << 0, /* Vertex Shader */
1918 VS_GS = VS | GS,
1919 VS_TCS = VS | TCS,
1937 VS,
1938 ES, /* Export shader: pre-GS (VS or TES) on GFX6-8. Combined into GS on GFX9 (and GFX10/legacy). */
1940 NGG, /* Primitive shader, used to implement VS, TES, GS. */
1941 LS, /* Local shader: pre-TCS (VS) on GFX6-8. Combined into HS on GFX9 (and GFX10/legacy). */
1942 HS, /* Hull shader: TCS on GFX6-8. Merged VS and TCS on GFX9-10. */
1976 static constexpr Stage vertex_vs(HWStage::VS, SWStage::VS);
1979 static constexpr Stage tess_eval_vs(HWStage::VS, SWStage::TES);
1980 static constexpr Stage gs_copy_vs(HWStage::VS, SWStage::GSCopy);
1982 static constexpr Stage vertex_ngg(HWStage::NGG, SWStage::VS);
1991 static constexpr Stage vertex_ls(HWStage::LS, SWStage::VS); /* vertex before tesselation control */
1992 static constexpr Stage vertex_es(HWStage::ES, SWStage::VS); /* vertex before geometry */