From e8d91f22340217968363498d8ccdedda9e21c2a5 Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Wed, 13 Nov 2024 09:07:47 +0100 Subject: [PATCH] LibWeb: Add missing RGBA8 constant to WebGLRenderingContext --- Libraries/LibWeb/WebGL/WebGLRenderingContextBase.idl | 1 + 1 file changed, 1 insertion(+) diff --git a/Libraries/LibWeb/WebGL/WebGLRenderingContextBase.idl b/Libraries/LibWeb/WebGL/WebGLRenderingContextBase.idl index df40103c673..2bc10f1a44f 100644 --- a/Libraries/LibWeb/WebGL/WebGLRenderingContextBase.idl +++ b/Libraries/LibWeb/WebGL/WebGLRenderingContextBase.idl @@ -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;