fix for bad renames.
parent
38f3450519
commit
02b8a051f0
|
|
@ -27,14 +27,14 @@ HELP: log-gl-errors
|
|||
{ $description "Annotate every OpenGL function to log using " { $link log-gl-error } " if the function results in an error. Use " { $link reset-gl-functions } " to reverse this operation." } ;
|
||||
|
||||
HELP: reset-gl-functions
|
||||
{ $description "Removes any annotations from all OpenGL functions, such as those applied by " { $link gl-errors } " or " { $link log-gl-errors } "." } ;
|
||||
{ $description "Removes any annotations from all OpenGL functions, such as those applied by " { $link throw-gl-errors } " or " { $link log-gl-errors } "." } ;
|
||||
|
||||
{ gl-errors gl-error log-gl-errors log-gl-error clear-gl-error-log reset-gl-functions } related-words
|
||||
{ throw-gl-errors gl-error log-gl-errors log-gl-error clear-gl-error-log reset-gl-functions } related-words
|
||||
|
||||
ARTICLE: "opengl.annotations" "OpenGL error reporting"
|
||||
"The " { $vocab-link "opengl.annotations" } " vocabulary provides some tools for tracking down GL errors:"
|
||||
{ $subsections
|
||||
gl-errors
|
||||
throw-gl-errors
|
||||
log-gl-errors
|
||||
clear-gl-error-log
|
||||
reset-gl-functions
|
||||
|
|
|
|||
|
|
@ -26,8 +26,8 @@ TUPLE: response-error response error ;
|
|||
: check-response ( response -- response )
|
||||
"responseStatus" over at {
|
||||
{ 200 [ ] }
|
||||
{ 400 [ response-error ] }
|
||||
[ drop response-error ]
|
||||
{ 400 [ throw-response-error ] }
|
||||
[ drop throw-response-error ]
|
||||
} case ;
|
||||
|
||||
: query-response>text ( response -- text )
|
||||
|
|
|
|||
|
|
@ -473,7 +473,7 @@ DEFER: <shader-instance>
|
|||
[ ] [ source>> ] [ kind>> gl-shader-kind ] tri <gl-shader>
|
||||
dup gl-shader-ok?
|
||||
[ swap world get \ shader-instance boa window-resource ]
|
||||
[ compile-shader-error ] if ;
|
||||
[ throw-compile-shader-error ] if ;
|
||||
|
||||
: (link-program) ( program shader-instances -- program-instance )
|
||||
'[ _ [ handle>> ] map ]
|
||||
|
|
@ -488,7 +488,7 @@ DEFER: <shader-instance>
|
|||
dup gl-program-ok? [
|
||||
[ swap world get \ program-instance boa |dispose dup verify-feedback-format ]
|
||||
with-destructors window-resource
|
||||
] [ link-program-error ] if ;
|
||||
] [ throw-link-program-error ] if ;
|
||||
|
||||
: link-program ( program -- program-instance )
|
||||
dup shaders>> [ <shader-instance> ] map (link-program) ;
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ TUPLE: zmq-error n string ;
|
|||
zmq_errno dup zmq_strerror zmq-error boa throw ; inline
|
||||
|
||||
: check-zmq-error ( retval -- )
|
||||
[ zmq-error ] unless-zero ; inline
|
||||
[ throw-zmq-error ] unless-zero ; inline
|
||||
|
||||
: zmq-version ( -- version )
|
||||
{ int int int } [ zmq_version ] with-out-parameters 3array ;
|
||||
|
|
@ -62,7 +62,7 @@ TUPLE: zmq-socket underlying ;
|
|||
|
||||
: <zmq-socket> ( context type -- socket )
|
||||
[ underlying>> ] dip zmq_socket
|
||||
dup [ zmq-error ] unless
|
||||
dup [ throw-zmq-error ] unless
|
||||
zmq-socket boa ;
|
||||
|
||||
M: zmq-socket dispose
|
||||
|
|
@ -90,11 +90,11 @@ M: zmq-socket zmq-setopt
|
|||
|
||||
: zmq-sendmsg ( socket msg flags -- )
|
||||
[ [ underlying>> ] bi@ ] dip zmq_sendmsg
|
||||
0 < [ zmq-error ] when ;
|
||||
0 < [ throw-zmq-error ] when ;
|
||||
|
||||
: zmq-recvmsg ( socket msg flags -- )
|
||||
[ [ underlying>> ] bi@ ] dip zmq_recvmsg
|
||||
0 < [ zmq-error ] when ;
|
||||
0 < [ throw-zmq-error ] when ;
|
||||
|
||||
: zmq-send ( socket byte-array flags -- )
|
||||
[ byte-array>zmq-message ] dip
|
||||
|
|
|
|||
Loading…
Reference in New Issue