Francesco Zoffoli
Francesco Zoffoli
Is it there a list of TODOs, simple issues, or an initial suggestion for contributing? I'd like to familiarize with D, and at the same time make WA 4 come...
I started implementing a VBO that also uses a IBO for drawing a mesh. I'm unsure if it is better (or you prefer) to have 1)a single object that work...
Gles2
Added a getBitmapTextureFormat() to BuildableBitmapTextureAtlas and a TransformationUtils in order to perform some operations on transformations without "polluting" too much the original class with methods not-so-often used methods and without...
http://code.google.com/p/android/issues/detail?id=9953 This error happens because glGetShaderiv with GL_INFO_LOG_LENGTH always returns 0. The empty string makes almost impossible to fix the errors in the shaders (you just are notified of the...
I'm proposing to make the following compile ```c++ namespace user { struct A {}; template void PrintTo(const T& t, std::ostream* os) { ... } } testing::PrintToString(user::A{}); ``` which currently fails...
Enable PrintTo template overloads to be defined by the user A user cannot define a template for PrintTo which just takes the type directly. This is because gtest already defines...