Details
-
Sub-task
-
Resolution: Fixed
-
P3: Somewhat important
-
Kubuntu 14.10 Qt5 from git, qt creator from git. Builded with linux-clang-libc++.
-
9fd5a94f8 (master)
Description
GlSL seems doesn't know about ubo. For example:
#version 330 core in vec4 pos; out vec4 fcolor; uniform test_ubo { float mouse[2]; mat4 mvp; vec4 color; }; void main(void) { gl_Position = mvp*pos; // Syntax check writes that mvp was not declarated in this scope ... }