ladybird/Userland/Libraries/LibVirtGPU/Shader.h
Stephan Unverwerth c52abe0bea LibVirtGPU: Add a new GPU device that talks to our VirtIO-GPU driver
At this moment this only contains function stubs.
2022-12-26 09:39:20 +01:00

19 lines
284 B
C++

/*
* Copyright (c) 2022, Stephan Unverwerth <s.unverwerth@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibGPU/Shader.h>
namespace VirtGPU {
class Shader final : public GPU::Shader {
public:
Shader(void const* ownership_token);
};
}