LibWeb/WebGL: Implement getShaderPrecisionFormat

This commit is contained in:
Luke Wilde 2024-12-05 15:14:44 +00:00 committed by Alexander Kalenik
commit bf2b8c5f2b
Notes: github-actions[bot] 2024-12-05 20:42:25 +00:00
8 changed files with 59 additions and 11 deletions

View file

@ -3,7 +3,7 @@
// https://registry.khronos.org/webgl/specs/latest/1.0/#5.12
[Exposed=(Window,Worker)]
interface WebGLShaderPrecisionFormat {
[FIXME] readonly attribute GLint rangeMin;
[FIXME] readonly attribute GLint rangeMax;
[FIXME] readonly attribute GLint precision;
readonly attribute GLint rangeMin;
readonly attribute GLint rangeMax;
readonly attribute GLint precision;
};