diff options
author | David Thompson <dthompson2@worcester.edu> | 2021-10-08 20:44:28 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2021-10-08 20:44:28 -0400 |
commit | 53429f77e3fcfaa4fdc3d95b840b6728b4452f72 (patch) | |
tree | e5766772d1deac156871ce5ad119f8c3ab260243 /data/shaders/phong-frag.glsl | |
parent | c22eda980c51db210bbe73f500e9f3fc3052a5f3 (diff) |
graphics: Fix compatibility issue with cube maps in phong/pbr shaders.
Diffstat (limited to 'data/shaders/phong-frag.glsl')
-rw-r--r-- | data/shaders/phong-frag.glsl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/data/shaders/phong-frag.glsl b/data/shaders/phong-frag.glsl index c1a19c1..2d70fda 100644 --- a/data/shaders/phong-frag.glsl +++ b/data/shaders/phong-frag.glsl @@ -50,6 +50,9 @@ const float GAMMA = 2.2; vec4 texture(sampler2D tex, vec2 coord) { return texture2D(tex, coord); } +vec4 texture(samplerCube tex, vec3 coord) { + return textureCube(tex, coord); +} #endif vec3 gammaCorrect(vec3 color) { @@ -161,7 +164,7 @@ void main() { // Apply image based ambient lighting. float fresnel = pow(1.0 - clamp(dot(viewDir, normal), 0.0, 1.0), 5); float roughness = 1.0 - (material.shininess / 1000.0); - vec3 ambientDiffuse = textureCube(skybox, normal).rgb * diffuseColor; + vec3 ambientDiffuse = texture(skybox, normal).rgb * diffuseColor; vec3 ambientSpecular = textureLod(skybox, reflection, roughness * 7.0).rgb * fresnel; vec3 ambientColor = (ambientDiffuse + ambientSpecular) * ambientOcclusion; color += ambientColor; |