mirror of
https://github.com/servo/servo.git
synced 2025-06-10 01:23:13 +00:00
10 lines
296 B
Text
10 lines
296 B
Text
//
|
|
// 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;
|
|
};
|