Baggers
Baggers
AH! we could emit `define-vari-function` instead of `defun-g`. This solves this and the other bug :)
of course then we need a way to compile vari functions, but it's a place to start :)
AH! we could emit `define-vari-function` instead of `defun-g`. This solves this and the other bug :)
of course then we need a way to compile vari functions, but it's a place to start :)
Phew, id be scared to build my study on such a beta project! But no theres nothing I really need, im on holiday and been working on [Varjo](https://github.com/cbaggers/varjo/commits?author=cbaggers&since=2018-02-28T23:00:00Z&until=2018-03-25T22:00:00Z) a lot...
The problem with this is that the test compile is used to identify implicit uniforms. We still might be able to do this for lambda-g as it handles its compilation...
Ah, I missed them as I hadnt added them to the doc-gen list of packages. Done that and regenerated. Now going [here](http://techsnuffle.com/cepl/api.html) and searching for `'No docstring provided'` shows all...
Thanks @tsili this is the correct fix. Sorry for the mistake, this will be out in the next release Also your project sounds very cool, I hope CEPL works enough...
See here https://www.khronos.org/opengl/wiki/Vertex_Rendering#Causes_of_rendering_failure for why we need the vao
as a concrete example here is the state touched by nanovg ``` ;; glUseProgram(prog) ;; glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA) ;; glEnable(GL_CULL_FACE) ;; glCullFace(GL_BACK) ;; glFrontFace(GL_CCW) ;; glEnable(GL_BLEND) ;; glDisable(GL_DEPTH_TEST) ;; glDisable(GL_SCISSOR_TEST) ;;...