js.web.webgl.WEBGL_debug_renderer_info Maven / Gradle / Ivy
package js.web.webgl;
import js.lang.Any;
import org.teavm.jso.JSProperty;
/**
* The WEBGL_debug_renderer_info extension is part of the WebGL API and exposes two constants with information about the graphics driver for debugging purposes.
*/
public interface WEBGL_debug_renderer_info extends Any {
@JSProperty
int getUNMASKED_RENDERER_WEBGL();
@JSProperty
int getUNMASKED_VENDOR_WEBGL();
}