mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
webgl: Add WebGLActiveInfo and WebGLShaderPrecisionFormat interfaces
This commit is contained in:
parent
ee192793d5
commit
b0d04765ae
6 changed files with 123 additions and 0 deletions
|
@ -0,0 +1,10 @@
|
|||
//
|
||||
// WebGL IDL definitions scraped from the Khronos specification:
|
||||
// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.7
|
||||
//
|
||||
|
||||
interface WebGLShaderPrecisionFormat {
|
||||
readonly attribute GLint rangeMin;
|
||||
readonly attribute GLint rangeMax;
|
||||
readonly attribute GLint precision;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue