egl :: EGLConfigAttribs :: alpha_size
egl :: EGLConfigAttribs :: blue_size
egl :: EGLConfigAttribs :: buffer_size
egl :: EGLConfigAttribs :: caveat
egl :: EGLConfigAttribs :: config
egl :: EGLConfigAttribs :: config=
egl :: EGLConfigAttribs :: conformant
egl :: EGLConfigAttribs :: defaultinit
egl :: EGLConfigAttribs :: depth_size
egl :: EGLConfigAttribs :: display
egl :: EGLConfigAttribs :: display=
egl :: EGLConfigAttribs :: green_size
egl :: EGLConfigAttribs :: red_size
egl :: EGLConfigAttribs :: samples
egl :: EGLConfigAttribs :: stencil_size
egl $ EGLConfigAttribs :: SELF
Type of this instance, automatically specialized in every classegl :: EGLConfigAttribs :: alpha_size
egl :: EGLConfigAttribs :: blue_size
egl :: EGLConfigAttribs :: buffer_size
egl :: EGLConfigAttribs :: caveat
core :: Object :: class_factory
Implementation used byget_class
to create the specific class.
egl :: EGLConfigAttribs :: config
egl :: EGLConfigAttribs :: config=
egl :: EGLConfigAttribs :: conformant
core :: Object :: defaultinit
egl :: EGLConfigAttribs :: defaultinit
egl :: EGLConfigAttribs :: depth_size
egl :: EGLConfigAttribs :: display
egl :: EGLConfigAttribs :: display=
egl :: EGLConfigAttribs :: green_size
core :: Object :: is_same_instance
Return true ifself
and other
are the same instance (i.e. same identity).
core :: Object :: is_same_serialized
Isself
the same as other
in a serialization context?
core :: Object :: is_same_type
Return true ifself
and other
have the same dynamic type.
core :: Object :: output_class_name
Display class name on stdout (debug only).egl :: EGLConfigAttribs :: red_size
egl :: EGLConfigAttribs :: samples
egl :: EGLConfigAttribs :: stencil_size
# Attributes of a config for a given EGL display
class EGLConfigAttribs
var display: EGLDisplay
var config: EGLConfig
fun buffer_size: Int do return display.config_attrib(config, 0x3020)
fun alpha_size: Int do return display.config_attrib(config, 0x3021)
fun blue_size: Int do return display.config_attrib(config, 0x3022)
fun green_size: Int do return display.config_attrib(config, 0x3023)
fun red_size: Int do return display.config_attrib(config, 0x3024)
fun depth_size: Int do return display.config_attrib(config, 0x3025)
fun stencil_size: Int do return display.config_attrib(config, 0x3026)
fun samples: Int do return display.config_attrib(config, 0x3031)
fun sample_buffers: Int do return display.config_attrib(config, 0x3032)
fun native_visual_id: Int do return display.config_attrib(config, 0x302E)
fun native_visual_type: Int do return display.config_attrib(config, 0x302F)
fun caveat: EGLConfigCaveat do
return new EGLConfigCaveat.from_i(display.config_attrib(config, 0x3027))
end
fun conformant: EGLConformant do
return new EGLConformant.from_i(display.config_attrib(config, 0x3042))
end
end
lib/egl/egl.nit:207,1--232,3