mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
Merge branch 'master' of github.com:bkaradzic/bgfx
This commit is contained in:
commit
c7e4e429ef
1 changed files with 7 additions and 1 deletions
|
@ -12,8 +12,14 @@
|
||||||
|
|
||||||
#if BGFX_SHADER_LANGUAGE_HLSL
|
#if BGFX_SHADER_LANGUAGE_HLSL
|
||||||
|
|
||||||
float uintBitsToFloat(uint _x) { return asfloat(_x); }
|
float uintBitsToFloat(uint _x) { return asfloat(_x); }
|
||||||
|
vec2 uintBitsToFloat(uint2 _x) { return asfloat(_x); }
|
||||||
|
vec3 uintBitsToFloat(uint3 _x) { return asfloat(_x); }
|
||||||
|
vec4 uintBitsToFloat(uint4 _x) { return asfloat(_x); }
|
||||||
uint floatBitsToUint(float _x) { return asuint(_x); }
|
uint floatBitsToUint(float _x) { return asuint(_x); }
|
||||||
|
uvec2 floatBitsToUint(vec2 _x) { return asuint(_x); }
|
||||||
|
uvec3 floatBitsToUint(vec3 _x) { return asuint(_x); }
|
||||||
|
uvec4 floatBitsToUint(vec4 _x) { return asuint(_x); }
|
||||||
|
|
||||||
#define SHARED groupshared
|
#define SHARED groupshared
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue