mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
b4b4a37b2b
According to Erik @ NVidia the open source NVidia driver will not create a EGLImage from a DMABUF if the target is not GL_TEXTURE_EXTERNAL_OES. This change set converts the dmabuf texture from GL_TEXTURE_2D to GL_TEXTURE_EXTERNAL_OES and at runtime performs a global search & replace on fragment shaders as needed to remain compatible, replacing `sampler2D` with `samplerExternalOES`. Ref: https://github.com/NVIDIA/open-gpu-kernel-modules/discussions/243#discussioncomment-3283415
38 lines
1022 B
C
38 lines
1022 B
C
#if __VERSION__ == 300
|
|
vec4 textureGather(sampler2D tex, vec2 uv, int comp)
|
|
{
|
|
vec2 res = vec2(textureSize(tex, 0));
|
|
ivec2 p = ivec2((uv * res) - 0.5f);
|
|
|
|
// NOTE: we can't use texelFecthOffset because sampler2D may actually be samplerExternalOES
|
|
vec4 c0 = texelFetch(tex, p+ivec2(0,1), 0);
|
|
vec4 c1 = texelFetch(tex, p+ivec2(1,1), 0);
|
|
vec4 c2 = texelFetch(tex, p+ivec2(1,0), 0);
|
|
vec4 c3 = texelFetch(tex, p+ivec2(0,0), 0);
|
|
|
|
return vec4(c0[comp], c1[comp], c2[comp],c3[comp]);
|
|
}
|
|
#elif __VERSION__ < 300
|
|
vec4 textureGather(sampler2D tex, vec2 uv, int comp)
|
|
{
|
|
vec4 c3 = texture(tex, uv);
|
|
return vec4(c3[comp], c3[comp], c3[comp],c3[comp]);
|
|
}
|
|
#endif
|
|
|
|
#if __VERSION__ < 310
|
|
uint bitfieldExtract(uint val, int off, int size)
|
|
{
|
|
uint mask = uint((1 << size) - 1);
|
|
return uint(val >> off) & mask;
|
|
}
|
|
|
|
uint bitfieldInsert(uint a, uint b, int c, int d)
|
|
{
|
|
uint mask = ~(0xffffffffu << d) << c;
|
|
mask = ~mask;
|
|
a &= mask;
|
|
return a | (b << c);
|
|
}
|
|
#endif
|