We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrap poiu text rendering backend into this. At the moment of writing:
(gl:enable :scissor-test) (gl:blend-func-separate :src-alpha :one-minus-src-alpha :zero :one) (gl:scissor 0.0 0.0 (width-of poiu) (height-of poiu)) (dolist (cmd (nreverse commands)) (case (command-type cmd) (:scissor (apply-pretext-scissors cmd poiu)) (:text (render-boxed-text cmd poiu)))) (gl:blend-func :src-alpha :one-minus-src-alpha) (gl:disable :scissor-test)
The text was updated successfully, but these errors were encountered:
Hackish, ad-hoc implementation, but probably would suffice for a trivial stuff.
Sorry, something went wrong.
#67 Add OpenGL state tracking
6ea4a6c
No branches or pull requests
Wrap poiu text rendering backend into this.
At the moment of writing:
The text was updated successfully, but these errors were encountered: