mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-11 08:50:37 +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: https://github.com/SerenityOS/serenity/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 {
|
||||
Vector<Constant> constants;
|
||||
Vector<Uniform> uniforms;
|
||||
Vector<Input> inputs;
|
||||
Vector<Output> outputs;
|
||||
Vector<Temporary> temporaries;
|
||||
Vector<Instruction> instructions;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue