2010-05-09 13:21:12 -04:00
|
|
|
! Copyright (C) 2010 Anton Gorenko.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2010-05-23 06:05:34 -04:00
|
|
|
USING: alien alien.c-types alien.libraries combinators kernel
|
|
|
|
system vocabs.parser words
|
2010-05-09 13:21:12 -04:00
|
|
|
gir glib gobject gio gmodule gdk gdk.ffi gdk.pixbuf ;
|
|
|
|
|
|
|
|
<<
|
|
|
|
"gdk.gl" {
|
2010-05-23 06:05:34 -04:00
|
|
|
{ [ os winnt? ] [ drop ] }
|
2010-05-09 13:21:12 -04:00
|
|
|
{ [ os macosx? ] [ drop ] }
|
2010-05-23 06:05:34 -04:00
|
|
|
{ [ os unix? ] [ "libgdkglext-x11-1.0.so" cdecl add-library ] }
|
2010-05-09 13:21:12 -04:00
|
|
|
} cond
|
|
|
|
>>
|
|
|
|
|
|
|
|
IN: gdk.gl.ffi
|
|
|
|
|
|
|
|
<< ulong "unsigned long" current-vocab create typedef >>
|
|
|
|
|
|
|
|
IN-GIR: gdk.gl vocab:gdk/gl/GdkGL-1.0.gir
|
|
|
|
|