(cls, **kwargs)
| 1974 | |
| 1975 | @classmethod |
| 1976 | def get_default_variation(cls, **kwargs): |
| 1977 | return super().get_default_variation( |
| 1978 | is_legacy=settings.LEGACY_GL_EMULATION, |
| 1979 | is_webgl2=settings.MAX_WEBGL_VERSION >= 2, |
| 1980 | is_ofb=settings.OFFSCREEN_FRAMEBUFFER, |
| 1981 | is_full_es3=settings.FULL_ES3, |
| 1982 | is_enable_get_proc_address=settings.GL_ENABLE_GET_PROC_ADDRESS, |
| 1983 | **kwargs, |
| 1984 | ) |
| 1985 | |
| 1986 | |
| 1987 | class libembind(MTLibrary): |
no outgoing calls
no test coverage detected