ladybird/Libraries/LibWeb/WebGL/WebGLShaderPrecisionFormat.h

25 lines
496 B
C
Raw Normal View History

2024-11-13 10:18:51 +01:00
/*
* Copyright (c) 2024, Jelle Raaijmakers <jelle@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibWeb/WebGL/WebGLObject.h>
namespace Web::WebGL {
class WebGLShaderPrecisionFormat final : public WebGLObject {
WEB_PLATFORM_OBJECT(WebGLShaderPrecisionFormat, WebGLObject);
GC_DECLARE_ALLOCATOR(WebGLShaderPrecisionFormat);
2024-11-13 10:18:51 +01:00
public:
virtual ~WebGLShaderPrecisionFormat();
protected:
explicit WebGLShaderPrecisionFormat(JS::Realm&);
};
}