summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibSoftGPU/Shader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibSoftGPU/Shader.cpp')
-rw-r--r--Userland/Libraries/LibSoftGPU/Shader.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Libraries/LibSoftGPU/Shader.cpp b/Userland/Libraries/LibSoftGPU/Shader.cpp
index 44bb9635ea..ae68fcfd22 100644
--- a/Userland/Libraries/LibSoftGPU/Shader.cpp
+++ b/Userland/Libraries/LibSoftGPU/Shader.cpp
@@ -8,8 +8,9 @@
namespace SoftGPU {
-Shader::Shader(void const* ownership_token)
+Shader::Shader(void const* ownership_token, Vector<Instruction> const& instructions)
: GPU::Shader(ownership_token)
+ , m_instructions(instructions)
{
}