ladybird/Libraries/LibWeb/WebGL/WebGLProgram.h

25 lines
426 B
C
Raw Normal View History

2024-11-13 09:59:10 +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 WebGLProgram final : public WebGLObject {
WEB_PLATFORM_OBJECT(WebGLProgram, WebGLObject);
GC_DECLARE_ALLOCATOR(WebGLProgram);
2024-11-13 09:59:10 +01:00
public:
virtual ~WebGLProgram();
protected:
explicit WebGLProgram(JS::Realm&);
};
}