Newer
Older
minerva / Userland / Libraries / LibSoftGPU / Shader.cpp
@minerva minerva on 13 Jul 339 bytes Initial commit
/*
 * Copyright (c) 2022, Stephan Unverwerth <s.unverwerth@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <LibSoftGPU/Shader.h>

namespace SoftGPU {

Shader::Shader(void const* ownership_token, Vector<Instruction> const& instructions)
    : GPU::Shader(ownership_token)
    , m_instructions(instructions)
{
}

}