Matus Chochlik

Results 119 comments of Matus Chochlik

Thanks for the feedback. It seems that the recent changes did break GLES support. I'll have a look at it (probably) tomorrow.

Thanks for your kind words! I haven't forgotten about this, but at the moment I'm mostly working on getting static reflection into the C++ standard, plus I've changed my job...

Thanks for the offer, you could do some testing. At the moment I don't have the android NDK installed, but I've made some changes to the `oglplu2` repository to add...

I did some changes to the build system. Could you try them?

Thanks for the feedback. It seems that I'll really have to install the NDK or something again. You can try to compile your app though even without compiling the oglplus...

Something like this already is on the "TODO list", but I have to thing it through. There already is a wrapper for the ARB_debug_output extensions in OGLplus and it is...

Ah, yes, You need to define two PP macros: #define OGLPLUS_CHECK(X) glGetError(); #defne OGLPLUS_VERIFY(X) glGetError(); .. to call GetError without throwing, or ... #define OGLPLUS_CHECK(X) #defne OGLPLUS_VERIFY(X) to do nothing...

Strange, does this happen with the examples (I've just checked and I get no such error here) or with your application ? If it is your app. do you #include...

What version of GLEW are you using. b.t.w. doing the following in oglplus/extension.hpp should remove the error (I'll have to investigate why it is doing this): 42:- (GL_ ## VENDOR...

There also might be another problem, namely that OGLPLUS_USE_GLCOREARB_H or OGLPLUS_USE_GL3_H are defined as a nonzero integer (for example in oglplus/site_config.hpp generated by cmake) if this is the case then...