Max Argus
Max Argus
One question to glad2, am I doing this right? ```gladLoadGLSimple(GLADsimpleloadproc())``` Edit: In case yes, what speaks against: ``` GLAPI int gladLoadGL(); GLAPI int gladLoadGLProc(GLADsimpleloadproc load); GLAPI int gladLoadGLProcUsr(GLADloadproc load, void*...
...So if I call gladLoadGLInternalLoader I don’t have to call gladLoadGLSimple?
ProTip: When calling the glad executable add `--loader` The loader function names have also changed: `gladLoadEGLInternalLoader` -> `gladLoaderLoadEGL` `gladLoadGLInternalLoader` -> `gladLoaderLoadGL`
@Dav1dde ~~I just spent a while figuring out that `gladLoaderLoadGL()` was failing on certain machines because it didn't find the `libGL.so.1` file. It would be nice to have more informative...
@Dav1dde: It looks like the problem wasn't with `dlopen`. So when a colleague in another department tries to run the following code(link below) he gets errors when calling `gladLoaderLoadGL`. This...
It looks like the error occurs in the function `gladLoadGLUserPtr` on the line `glGetString(GL_VERSION) == NULL`. We tried get an error message by calling `glGetError` but this did not produce...
But I'm creating a context and making it current https://gist.github.com/BlGene/b78e237efb65086de3ef9e8aafdbef02#file-egl_gl2-cpp-L156 Edit: I did a check and I'm not getting error messages during context creation or making it current. Could there...
@Dav1dde: Looks like this solved it. Thanks! My test file is located here in case you want to include it. (no build script) https://github.com/BlGene/glad/tree/glad2-egl-example By the way, I'm still for...
Has anyone been able to, or interested in, compiling opencl convolutions to fpgas ( using the alters Sdk). There was the somewhat similar neuflow project but I haven't heard from...
@soumith @hughperkins I don't have anything concrete. I did a bit of research and came up with the following. I haven't read the papers in detail but from what I...