1c18078811
Support Workgroup (threadgroup) variables. Mark if SPIRConstant is used as an array length, since it cannot be specialized. Resolve specialized array length constants. Support passing an array to MSL function. Support emitting GLSL array assignments in MSL via an array copy function. Support for memory and control barriers. Struct packing enhancements, including packing nested structs. Enhancements to replacing illegal MSL variable and function names. Add Compiler::get_entry_point_name_map() function to retrieve entry point renamings. Remove CompilerGLSL::clean_func_name() as obsolete. Fixes to types in bitcast MSL functions. Add Variant::get_id() member function. Add CompilerMSL::Options::msl_version option. Add numerous MSL compute tests.
28 lines
296 B
Plaintext
28 lines
296 B
Plaintext
#version 310 es
|
|
layout(local_size_x = 1) in;
|
|
|
|
layout(std430, binding = 0) buffer SSBO
|
|
{
|
|
int a;
|
|
};
|
|
|
|
void main()
|
|
{
|
|
a += 10;
|
|
a -= 10;
|
|
a *= 10;
|
|
a /= 10;
|
|
a <<= 2;
|
|
a >>= 3;
|
|
a &= 40;
|
|
a ^= 10;
|
|
a %= 40;
|
|
a |= 1;
|
|
|
|
bool c = false;
|
|
bool d = true;
|
|
c = c && d;
|
|
d = d || c;
|
|
a = c && d ? 1 : 0;
|
|
}
|