Lines Matching defs:vec4
11 float4 vec4, vec4_2;
18 vec4 = 5.0f;
19 vec4 = (float4)5.0f;
20 vec4 = (float4)5;
21 vec4 = (float4)vec4_3;
32 vec4 = (float4)vec2; // expected-error {{invalid conversion between ext-vector type 'float4' and 'float2'}}
37 vec4 /= 5.2f;
38 vec4 %= 4; // expected-error {{invalid operands to binary expression ('float4' and 'int')}}
40 ivec4 += vec4; // expected-error {{can't convert between vector values of different size ('int4' and 'float4')}}
41 ivec4 += (int4)vec4;