Serenity Operating System
1/*
2 * Copyright (c) 2022, Stephan Unverwerth <s.unverwerth@serenityos.org>
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7#include <LibSoftGPU/Shader.h>
8
9namespace SoftGPU {
10
11Shader::Shader(void const* ownership_token, Vector<Instruction> const& instructions)
12 : GPU::Shader(ownership_token)
13 , m_instructions(instructions)
14{
15}
16
17}