mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-12 20:42:21 +00:00
LibGPU: Add inputs and outputs to GPU shader IR
This commit is contained in:
parent
b18bf702ea
commit
c88bc74afd
Notes:
sideshowbarker
2024-07-17 03:30:41 +09:00
Author: https://github.com/sunverwerth
Commit: c88bc74afd
Pull-request: https://github.com/SerenityOS/serenity/pull/16225
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/gmta ✅
Reviewed-by: https://github.com/supercomputer7
1 changed files with 2 additions and 0 deletions
|
@ -72,6 +72,8 @@ struct Temporary final {
|
||||||
struct Shader final {
|
struct Shader final {
|
||||||
Vector<Constant> constants;
|
Vector<Constant> constants;
|
||||||
Vector<Uniform> uniforms;
|
Vector<Uniform> uniforms;
|
||||||
|
Vector<Input> inputs;
|
||||||
|
Vector<Output> outputs;
|
||||||
Vector<Temporary> temporaries;
|
Vector<Temporary> temporaries;
|
||||||
Vector<Instruction> instructions;
|
Vector<Instruction> instructions;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue