mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 08:54:13 +00:00
5af5222249
- https://github.com/KhronosGroup/SPIRV-Cross/commit/ 66a407285e36a0f772e3209cb86ded6e3d900f6a
14 lines
283 B
Plaintext
14 lines
283 B
Plaintext
#version 450
|
|
#extension GL_AMD_gcn_shader : require
|
|
#extension GL_ARB_gpu_shader_int64 : require
|
|
|
|
layout (local_size_x = 64) in;
|
|
|
|
void main ()
|
|
{
|
|
float cubeFace = cubeFaceIndexAMD(vec3(0.0));
|
|
vec2 cubeFaceCoord = cubeFaceCoordAMD(vec3(1.0));
|
|
|
|
uint64_t time = timeAMD();
|
|
}
|