blob: 28c4527a26a6a8911b6e526a9317b24f1b5cf802 (
plain)
1
2
3
4
5
6
7
8
|
#version 100
precision highp float;
vec4 texture2D (sampler2D sampler, vec2 coord, float bias);
vec4 texture2DProj (sampler2D sampler, vec3 coord, float bias);
vec4 texture2DProj (sampler2D sampler, vec4 coord, float bias);
vec4 textureCube (samplerCube sampler, vec3 coord, float bias);
|