diff --git a/basis/opengl/gl/extensions/extensions.factor b/basis/opengl/gl/extensions/extensions.factor index 530f3ada6c..327b552fa2 100644 --- a/basis/opengl/gl/extensions/extensions.factor +++ b/basis/opengl/gl/extensions/extensions.factor @@ -7,7 +7,7 @@ ERROR: unknown-gl-platform ; << { { [ os windows? ] [ "opengl.gl.windows" ] } { [ os macosx? ] [ "opengl.gl.macosx" ] } - { [ os unix? ] [ "opengl.gl.unix" ] } + { [ os unix? ] [ "opengl.gl.gtk" ] } [ unknown-gl-platform ] } cond use-vocab >> diff --git a/basis/opengl/gl/gtk/authors.txt b/basis/opengl/gl/gtk/authors.txt new file mode 100644 index 0000000000..4af9fbeb0a --- /dev/null +++ b/basis/opengl/gl/gtk/authors.txt @@ -0,0 +1 @@ +Anton Gorenko diff --git a/basis/opengl/gl/gtk/gtk.factor b/basis/opengl/gl/gtk/gtk.factor new file mode 100644 index 0000000000..fef80313f2 --- /dev/null +++ b/basis/opengl/gl/gtk/gtk.factor @@ -0,0 +1,14 @@ +! Copyright (C) 2010 Anton Gorenko. +! See http://factorcode.org/license.txt for BSD license. +USING: alien alien.strings io.encodings.ascii +gdk.gl gdk.gl.ffi ; +IN: opengl.gl.gtk + +: gl-function-context ( -- context ) + gdk_gl_context_get_current ; inline + +: gl-function-address ( name -- address ) + ascii string>alien gdk_gl_get_proc_address ; inline + +: gl-function-calling-convention ( -- str ) cdecl ; inline +