Fixing load errors
parent
0202c35d2a
commit
145e6428ba
|
|
@ -7,7 +7,6 @@ quotations sequences specialized-arrays stack-checker
|
||||||
stack-checker.errors system threads tools.test words
|
stack-checker.errors system threads tools.test words
|
||||||
alien.complex concurrency.promises ;
|
alien.complex concurrency.promises ;
|
||||||
FROM: alien.c-types => float short ;
|
FROM: alien.c-types => float short ;
|
||||||
FROM: alien.private => fastcall ;
|
|
||||||
SPECIALIZED-ARRAY: float
|
SPECIALIZED-ARRAY: float
|
||||||
SPECIALIZED-ARRAY: char
|
SPECIALIZED-ARRAY: char
|
||||||
IN: compiler.tests.alien
|
IN: compiler.tests.alien
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
USING: kernel x11.glx ;
|
USING: alien kernel x11.glx ;
|
||||||
IN: opengl.gl.unix
|
IN: opengl.gl.unix
|
||||||
|
|
||||||
: gl-function-context ( -- context ) glXGetCurrentContext ; inline
|
: gl-function-context ( -- context ) glXGetCurrentContext ; inline
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
USING: alien.c-types alien.syntax kernel windows.types ;
|
USING: alien alien.c-types alien.syntax kernel windows.types ;
|
||||||
IN: opengl.gl.windows
|
IN: opengl.gl.windows
|
||||||
|
|
||||||
LIBRARY: gl
|
LIBRARY: gl
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@ alien.syntax compiler definitions math libc eval
|
||||||
debugger parser io io.backend system alien.accessors
|
debugger parser io io.backend system alien.accessors
|
||||||
alien.libraries alien.c-types quotations kernel
|
alien.libraries alien.c-types quotations kernel
|
||||||
sequences ;
|
sequences ;
|
||||||
FROM: alien.private => fastcall ;
|
|
||||||
IN: alien
|
IN: alien
|
||||||
|
|
||||||
HELP: cdecl
|
HELP: cdecl
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
! Copyright (C) 2010 Erik Charlebois
|
! Copyright (C) 2010 Erik Charlebois
|
||||||
! See http:// factorcode.org/license.txt for BSD license.
|
! See http:// factorcode.org/license.txt for BSD license.
|
||||||
USING: accessors alien.c-types alien.syntax classes.struct combinators
|
USING: accessors alien alien.c-types alien.libraries
|
||||||
combinators.short-circuit kernel math math.order sequences
|
alien.syntax classes.struct combinators combinators.short-circuit
|
||||||
typed specialized-arrays locals system alien.libraries ;
|
kernel math math.order sequences typed specialized-arrays locals
|
||||||
|
system ;
|
||||||
SPECIALIZED-ARRAY: void*
|
SPECIALIZED-ARRAY: void*
|
||||||
IN: chipmunk.ffi
|
IN: chipmunk.ffi
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue