1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 06:04:57 +00:00

LibGPU: Add inputs and outputs to GPU shader IR

This commit is contained in:
Stephan Unverwerth 2022-09-18 16:08:52 +02:00 committed by Andrew Kaster
parent b18bf702ea
commit c88bc74afd

View file

@ -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;
};