mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 10:11:57 +03:00
Avoid unnecessary version_get_uniform() calls
This commit is contained in:
@@ -30,13 +30,13 @@ protected:
|
||||
R"<!>(
|
||||
precision highp float;
|
||||
precision highp int;
|
||||
|
||||
/* clang-format on */
|
||||
layout(location = 0) in highp vec3 vertex;
|
||||
|
||||
out highp vec4 position_interp;
|
||||
|
||||
void main() {
|
||||
position_interp = vec4(vertex.x,1,0,1);
|
||||
position_interp = vec4(vertex.x, 1, 0, 1);
|
||||
}
|
||||
|
||||
)<!>"
|
||||
|
||||
Reference in New Issue
Block a user