LibWeb/WebGL2: Implement the EXT_texture_norm16 extension

This commit is contained in:
Luke Wilde
2025-10-18 18:44:17 +01:00
committed by Jelle Raaijmakers
parent 93d3ebfd59
commit ddf60ebe9e
Notes: github-actions[bot] 2025-10-20 13:34:51 +00:00
8 changed files with 107 additions and 0 deletions

View File

@@ -84,6 +84,7 @@ private:
// "Multiple calls to getExtension with the same extension string, taking into account case-insensitive comparison, must return the same object as long as the extension is enabled."
GC::Ptr<Extensions::EXTColorBufferFloat> m_ext_color_buffer_float_extension;
GC::Ptr<Extensions::EXTRenderSnorm> m_ext_render_snorm;
GC::Ptr<Extensions::EXTTextureNorm16> m_ext_texture_norm16;
GC::Ptr<Extensions::WebGLCompressedTextureS3tc> m_webgl_compressed_texture_s3tc_extension;
virtual void set_error(GLenum error) override;