mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
c52abe0bea
At this moment this only contains function stubs.
18 lines
284 B
C++
18 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);
|
|
};
|
|
|
|
}
|