LibWeb: Add missing RGBA8 constant to WebGLRenderingContext

This commit is contained in:
Jelle Raaijmakers 2024-11-13 09:07:47 +01:00 committed by Andreas Kling
parent 3b1d1d4582
commit e8d91f2234
Notes: github-actions[bot] 2024-11-13 10:43:49 +00:00

View file

@ -517,6 +517,7 @@ interface mixin WebGLRenderingContextBase {
const GLenum RGBA4 = 0x8056;
const GLenum RGB5_A1 = 0x8057;
const GLenum RGBA8 = 0x8058;
const GLenum RGB565 = 0x8D62;
const GLenum DEPTH_COMPONENT16 = 0x81A5;
const GLenum STENCIL_INDEX8 = 0x8D48;