mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
VideoCommon: Add separate pipeline usage for UberShaders
This commit is contained in:
parent
d289e9c51c
commit
99533d2840
9 changed files with 19 additions and 18 deletions
|
@ -20,6 +20,8 @@ class NativeVertexFormat;
|
|||
// - Per-stage UBO (VS/GS/PS, VS constants accessible from PS)
|
||||
// - 8 combined image samplers (accessible from PS)
|
||||
// - 1 SSBO, accessible from PS if bounding box is enabled
|
||||
// - GX Uber
|
||||
// - Same as GX, plus one VS SSBO for vertices if dynamic vertex loading is enabled
|
||||
// - Utility
|
||||
// - Single UBO, accessible from all stages [set=0, binding=1]
|
||||
// - 8 combined image samplers (accessible from PS) [set=1, binding=0-7]
|
||||
|
@ -32,6 +34,7 @@ class NativeVertexFormat;
|
|||
enum class AbstractPipelineUsage
|
||||
{
|
||||
GX,
|
||||
GXUber,
|
||||
Utility
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue