X-Git-Url: http://nitlanguage.org diff --git a/examples/opengles2_hello_triangle.nit b/examples/opengles2_hello_triangle.nit index 0768735..2b39b1b 100644 --- a/examples/opengles2_hello_triangle.nit +++ b/examples/opengles2_hello_triangle.nit @@ -76,6 +76,9 @@ print "{configs.length} EGL configs available" for config in configs do var attribs = config.attribs(egl_display) print "* caveats: {attribs.caveat}" + print " conformant to: {attribs.conformant}" + print " size of RGBA: {attribs.red_size} {attribs.green_size} {attribs.blue_size} {attribs.alpha_size}" + print " buffer, depth, stencil: {attribs.buffer_size} {attribs.depth_size} {attribs.stencil_size}" end var config = configs.first