1234567891011121314151617 |
- /*
- * Copyright (c) 2022, Luke Wilde <lukew@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <LibGC/Root.h>
- #include <LibWeb/Forward.h>
- namespace Web::WebGL {
- using GLenum = unsigned int;
- using GLuint = unsigned int;
- }
|