mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-13 21:50:06 +00:00
bec8359bf7
Constant qualified parameter types were not being correctly added to the DebugTypeFunction instruction. Fix #3095.
15 lines
170 B
Plaintext
15 lines
170 B
Plaintext
#version 450
|
|
|
|
void function(
|
|
const float f,
|
|
const vec2 f2,
|
|
const vec3 f3,
|
|
const vec4 f4)
|
|
{
|
|
}
|
|
|
|
void main()
|
|
{
|
|
function(0, vec2(0), vec3(0), vec4(0));
|
|
}
|