/* * Copyright (c) 2022, Stephan Unverwerth * * SPDX-License-Identifier: BSD-2-Clause */ #include namespace SoftGPU { Shader::Shader(void const* ownership_token, Vector const& instructions) : GPU::Shader(ownership_token) , m_instructions(instructions) { } }