mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +00:00
LibWeb: Add WebGLShaderPrecisionFormat
This commit is contained in:
committed by
Andreas Kling
parent
d63a979bde
commit
3d8ab0e67c
21
Libraries/LibWeb/WebGL/WebGLShaderPrecisionFormat.cpp
Normal file
21
Libraries/LibWeb/WebGL/WebGLShaderPrecisionFormat.cpp
Normal file
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Copyright (c) 2024, Jelle Raaijmakers <jelle@ladybird.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <LibWeb/Bindings/WebGLShaderPrecisionFormatPrototype.h>
|
||||
#include <LibWeb/WebGL/WebGLShaderPrecisionFormat.h>
|
||||
|
||||
namespace Web::WebGL {
|
||||
|
||||
JS_DEFINE_ALLOCATOR(WebGLShaderPrecisionFormat);
|
||||
|
||||
WebGLShaderPrecisionFormat::WebGLShaderPrecisionFormat(JS::Realm& realm)
|
||||
: WebGLObject(realm)
|
||||
{
|
||||
}
|
||||
|
||||
WebGLShaderPrecisionFormat::~WebGLShaderPrecisionFormat() = default;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user