File: 100samplerExternal.frag

package info (click to toggle)
glslang 16.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 51,720 kB
  • sloc: cpp: 92,305; yacc: 4,320; sh: 603; python: 305; ansic: 94; javascript: 74; makefile: 17
file content (41 lines) | stat: -rw-r--r-- 1,286 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#version 100

#extension GL_OES_EGL_image_external : enable

uniform samplerExternalOES sExt;
precision mediump samplerExternalOES;
uniform samplerExternalOES mediumExt;
uniform highp samplerExternalOES highExt;

void main()
{
    texture2D(sExt, vec2(0.2));
    texture2D(mediumExt, vec2(0.2));
    texture2D(highExt, vec2(0.2));
    texture2DProj(sExt, vec3(0.3));
    texture2DProj(sExt, vec4(0.3));

    int lod = 0;
    highp float bias = 0.01;
    textureSize(sExt, lod);  // ERROR
    texture(sExt, vec2(0.2));  // ERROR
    texture(sExt, vec2(0.2), bias);  // ERROR
    textureProj(sExt, vec3(0.2));  // ERROR
    textureProj(sExt, vec3(0.2), bias);  // ERROR
    textureProj(sExt, vec4(0.2));  // ERROR
    textureProj(sExt, vec4(0.2), bias);  // ERROR
    texelFetch(sExt, ivec2(4), lod);  // ERROR

    texture3D(sExt, vec3(0.3));  // ERROR
    texture2DProjLod(sExt, vec3(0.3), 0.3);  // ERROR
    texture(sExt, vec3(0.3));  // ERROR
    textureProjLod(sExt, vec3(0.3), 0.3);  // ERROR
}

#extension GL_OES_EGL_image_external : disable

#extension GL_OES_EGL_image_external_essl3 : enable
uniform samplerExternalOES badExt;  // ERROR
#extension GL_OES_EGL_image_external_essl3 : disable

uniform samplerExternalOES badExt;  // ERROR