kiselgra
kiselgra
Thanks a bunch! Fixed this issue on my early 2020 HP EliteBook x360 1030
I think we should consider adding a few convenience macros to glslgen. Maybe something like that: ``` (defmacro glsl-version (v) `(comment (format nil "#version ~a~%" ,v) :prefix "")) ``` and...
Yes, the suggested code was just an example, if we add something along those lines then we should aim for it to be generally applicable :) Adding the qualifiers should...
Hi, in this case you'll have to substitute your values before the code is evaluated. Otherwise the symbols in the declaration will be used verbatim as identifiers. Trying to stay...
Hi, I just added some code to adapt the gl.xml specification. All enums should now be available, both via, e.g., GL_TEXTURE_2D and (I think more conveniently, and similar to cl-opengl)...
Hi, thanks for putting this up here! One open point that I take away from this: make sure we have the correct binary name for ccl (or make it configurable)....
Hi, yes, your solution using comment is the way we do things like this. :) I usually prefer to have a separate source file for stuff like that, but if...
@lispbub Do you have a better solution than the above? Do you think we should add this stand-alone, or maybe in support of another target, `ocl-gen`? :)
Cool! How about extending this so that it is possible to define strings containing ocl programs in c++ or cuda source? I.e. how about changing the generator for a subform?...
Cool, looks good :) IIRC ocl ist more like C, not C++, so I thought we derive it from cgen, not cxxgen. Otherwise we drag a lot of invalid syntax...