OpenGL: Difference between revisions

Content added Content deleted
No edit summary
m (→‎{{header|Raku}}: change a function call signature and add additional output)
Line 2,435: Line 2,435:
sub glfwTerminate() is native($lib) {*}
sub glfwTerminate() is native($lib) {*}
sub glfwMakeContextCurrent(Window) is native($lib) {*}
sub glfwMakeContextCurrent(Window) is native($lib) {*}
# sub glfwSetWindowShouldClose(Window, int32(Bool)) is native($lib) {*}
sub glfwSetWindowShouldClose(Window, int32) is native($lib) {*}
sub glfwWindowShouldClose(Window --> int32) is native($lib) {*}
sub glfwWindowShouldClose(Window --> int32) is native($lib) {*}
sub glfwSwapBuffers(Window) is native($lib) {*}
sub glfwSwapBuffers(Window) is native($lib) {*}
Line 2,513: Line 2,513:


See screen cap: [https://github.com/thundergnat/rc/blob/master/img/OpenGL-Triangle-perl6.png OpenGL-Triangle-perl6.png] (Offsite PNG image.)
See screen cap: [https://github.com/thundergnat/rc/blob/master/img/OpenGL-Triangle-perl6.png OpenGL-Triangle-perl6.png] (Offsite PNG image.)

Additional Output: [https://drive.google.com/file/d/1J_QqfWZeg39Qmkek1mrjhqLD1ekwaMCk/view (Offsite Media file) ]


=={{header|Ring}}==
=={{header|Ring}}==