Fix typo in OpenGL init
parent
d9977d36f8
commit
3f4907c304
|
@ -13,7 +13,6 @@
|
||||||
+ io:
|
+ io:
|
||||||
|
|
||||||
- httpd fep
|
- httpd fep
|
||||||
- httpd timeouts too quickly?
|
|
||||||
- stream server can hang because of exception handler limitations
|
- stream server can hang because of exception handler limitations
|
||||||
- better i/o scheduler
|
- better i/o scheduler
|
||||||
- out of memory error when printing global namespace
|
- out of memory error when printing global namespace
|
||||||
|
@ -22,8 +21,14 @@
|
||||||
|
|
||||||
+ ui/help:
|
+ ui/help:
|
||||||
|
|
||||||
- finish x11 backend
|
- x11:
|
||||||
- sometimes clicks come through twice
|
- dealloc glx context, call xfree, etc
|
||||||
|
- input methods
|
||||||
|
- cocoa:
|
||||||
|
- global menu bar with useful commands
|
||||||
|
- make the launchpad a palette
|
||||||
|
- expired aliens in view hash
|
||||||
|
- don't multiplex in the event loop if there is no pending i/o
|
||||||
- hand is broken by design
|
- hand is broken by design
|
||||||
- speed up ideas:
|
- speed up ideas:
|
||||||
- only do clipping for certain gadgets
|
- only do clipping for certain gadgets
|
||||||
|
@ -33,7 +38,6 @@
|
||||||
- saving the image should save window configuration
|
- saving the image should save window configuration
|
||||||
- menu drag retarget broken
|
- menu drag retarget broken
|
||||||
- incremental layout flicker
|
- incremental layout flicker
|
||||||
- expired aliens in view hash
|
|
||||||
- changelog in the UI
|
- changelog in the UI
|
||||||
- make the UI look better, something like this:
|
- make the UI look better, something like this:
|
||||||
http://twb.ath.cx/~twb/darcs/OBSOLETE/factor/final.html
|
http://twb.ath.cx/~twb/darcs/OBSOLETE/factor/final.html
|
||||||
|
@ -48,7 +52,8 @@
|
||||||
- better line spacing in ui and html
|
- better line spacing in ui and html
|
||||||
- tabular formatting - for inspector and changes
|
- tabular formatting - for inspector and changes
|
||||||
- grid layout
|
- grid layout
|
||||||
- don't multiplex in the event loop if there is no pending i/o
|
- variable width word wrap
|
||||||
|
- fix top level window positioning
|
||||||
|
|
||||||
+ compiler/ffi:
|
+ compiler/ffi:
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ USING: alien kernel ;
|
||||||
windows? [
|
windows? [
|
||||||
"gl" "opengl32.dll" "stdcall" add-library
|
"gl" "opengl32.dll" "stdcall" add-library
|
||||||
"glu" "glu32.dll" "stdcall" add-library
|
"glu" "glu32.dll" "stdcall" add-library
|
||||||
]
|
] when
|
||||||
|
|
||||||
TYPEDEF: uint GLenum
|
TYPEDEF: uint GLenum
|
||||||
TYPEDEF: uchar GLboolean
|
TYPEDEF: uchar GLboolean
|
||||||
|
|
Loading…
Reference in New Issue