From c88bc74afd5e40d60c10d87920b28adbe7a13fe4 Mon Sep 17 00:00:00 2001 From: Stephan Unverwerth Date: Sun, 18 Sep 2022 16:08:52 +0200 Subject: [PATCH] LibGPU: Add inputs and outputs to GPU shader IR --- Userland/Libraries/LibGPU/IR.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Userland/Libraries/LibGPU/IR.h b/Userland/Libraries/LibGPU/IR.h index c882612b77e..c983ce50684 100644 --- a/Userland/Libraries/LibGPU/IR.h +++ b/Userland/Libraries/LibGPU/IR.h @@ -72,6 +72,8 @@ struct Temporary final { struct Shader final { Vector constants; Vector uniforms; + Vector inputs; + Vector outputs; Vector temporaries; Vector instructions; };