2013-03-12 16:54:12 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// Copyright 2013 Pixar
|
2013-03-12 16:54:12 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "Apache License")
|
|
|
|
// with the following modification; you may not use this file except in
|
|
|
|
// compliance with the Apache License and the following modification to it:
|
|
|
|
// Section 6. Trademarks. is deleted and replaced with:
|
2013-03-12 16:54:12 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// 6. Trademarks. This License does not grant permission to use the trade
|
|
|
|
// names, trademarks, service marks, or product names of the Licensor
|
|
|
|
// and its affiliates, except as required to comply with Section 4(c) of
|
|
|
|
// the License and to reproduce the content of the NOTICE file.
|
2013-03-12 16:54:12 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// You may obtain a copy of the Apache License at
|
2013-03-12 16:54:12 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2013-07-18 21:19:50 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the Apache License with the above modification is
|
|
|
|
// distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
// KIND, either express or implied. See the Apache License for the specific
|
|
|
|
// language governing permissions and limitations under the Apache License.
|
2013-03-12 16:54:12 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#line 58
|
|
|
|
vec4 PTexLookup(vec4 patchCoord,
|
|
|
|
sampler2DArray data,
|
|
|
|
samplerBuffer packings,
|
|
|
|
isamplerBuffer pages)
|
|
|
|
{
|
|
|
|
vec2 uv = patchCoord.xy;
|
|
|
|
int faceID = int(patchCoord.w);
|
|
|
|
int page = texelFetch(pages, faceID).x;
|
|
|
|
vec4 packing = texelFetch(packings, faceID);
|
|
|
|
vec3 coords = vec3( packing.x + uv.x * packing.z,
|
|
|
|
packing.y + uv.y * packing.w,
|
|
|
|
page);
|
|
|
|
|
|
|
|
return texture(data, coords);
|
|
|
|
}
|
|
|
|
|
|
|
|
uniform sampler2DArray textureImage_Data;
|
|
|
|
uniform samplerBuffer textureImage_Packing;
|
|
|
|
uniform isamplerBuffer textureImage_Pages;
|
|
|
|
|
|
|
|
vec4 displacement(vec4 position, vec3 normal, vec4 patchCoord)
|
|
|
|
{
|
|
|
|
float disp = PTexLookup(patchCoord,
|
|
|
|
textureImage_Data,
|
|
|
|
textureImage_Packing,
|
|
|
|
textureImage_Pages).x;
|
|
|
|
return position + 0.01*vec4(disp * normal, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------
|
|
|
|
// Vertex Shader
|
|
|
|
//--------------------------------------------------------------
|
|
|
|
#ifdef VERTEX_SHADER
|
|
|
|
|
|
|
|
layout (location=0) in vec4 position;
|
|
|
|
|
|
|
|
out block {
|
|
|
|
OutputVertex v;
|
2013-06-10 19:53:04 +00:00
|
|
|
} outpt;
|
2013-03-12 16:54:12 +00:00
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
2013-06-10 19:53:04 +00:00
|
|
|
outpt.v.position = ModelViewMatrix * position;
|
2013-03-12 16:54:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//--------------------------------------------------------------
|
|
|
|
// Geometry Shader
|
|
|
|
//--------------------------------------------------------------
|
|
|
|
#ifdef GEOMETRY_SHADER
|
|
|
|
|
|
|
|
layout(triangles) in;
|
|
|
|
|
|
|
|
layout(triangle_strip, max_vertices = 3) out;
|
|
|
|
|
|
|
|
in block {
|
|
|
|
OutputVertex v;
|
2013-06-10 19:53:04 +00:00
|
|
|
} inpt[3];
|
2013-03-12 16:54:12 +00:00
|
|
|
|
|
|
|
out block {
|
|
|
|
OutputVertex v;
|
|
|
|
vec4 depthPosition;
|
2013-06-10 19:53:04 +00:00
|
|
|
} outpt;
|
2013-03-12 16:54:12 +00:00
|
|
|
|
|
|
|
void emit(int index, vec4 position)
|
|
|
|
{
|
2013-06-10 19:53:04 +00:00
|
|
|
vec2 uv = vec2(inpt[index].v.patchCoord.xy);
|
|
|
|
outpt.v.position = ProjectionMatrix * position;
|
|
|
|
outpt.depthPosition = ProjectionWithoutPickMatrix * position;
|
|
|
|
outpt.v.patchCoord = inpt[index].v.patchCoord;
|
2013-03-12 16:54:12 +00:00
|
|
|
gl_Position = vec4(uv*2-vec2(1.0), 0, 1);
|
|
|
|
EmitVertex();
|
|
|
|
}
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
gl_PrimitiveID = gl_PrimitiveIDIn;
|
|
|
|
|
|
|
|
vec4 patchCoord[3];
|
|
|
|
vec4 position[3];
|
|
|
|
|
|
|
|
// patch coords are computed in tessellation shader
|
2013-06-10 19:53:04 +00:00
|
|
|
patchCoord[0] = inpt[0].v.patchCoord;
|
|
|
|
patchCoord[1] = inpt[1].v.patchCoord;
|
|
|
|
patchCoord[2] = inpt[2].v.patchCoord;
|
2013-03-12 16:54:12 +00:00
|
|
|
|
|
|
|
#ifdef USE_PTEX_DISPLACEMENT
|
2013-06-10 19:53:04 +00:00
|
|
|
position[0] = displacement(inpt[0].v.position, inpt[0].v.normal, patchCoord[0]);
|
|
|
|
position[1] = displacement(inpt[1].v.position, inpt[1].v.normal, patchCoord[1]);
|
|
|
|
position[2] = displacement(inpt[2].v.position, inpt[2].v.normal, patchCoord[2]);
|
2013-03-12 16:54:12 +00:00
|
|
|
#else
|
2013-06-10 19:53:04 +00:00
|
|
|
position[0] = inpt[0].v.position;
|
|
|
|
position[1] = inpt[1].v.position;
|
|
|
|
position[2] = inpt[2].v.position;
|
2013-03-12 16:54:12 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
emit(0, position[0]);
|
|
|
|
emit(1, position[1]);
|
|
|
|
emit(2, position[2]);
|
|
|
|
EndPrimitive();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//--------------------------------------------------------------
|
|
|
|
// Fragment Shader
|
|
|
|
//--------------------------------------------------------------
|
|
|
|
#ifdef FRAGMENT_SHADER
|
|
|
|
|
|
|
|
in block {
|
|
|
|
OutputVertex v;
|
|
|
|
vec4 depthPosition;
|
2013-06-10 19:53:04 +00:00
|
|
|
} inpt;
|
2013-03-12 16:54:12 +00:00
|
|
|
|
|
|
|
layout(size1x32) uniform image2DArray outTextureImage;
|
|
|
|
uniform sampler2D paintTexture;
|
|
|
|
uniform sampler2D depthTexture;
|
|
|
|
uniform int imageSize = 256;
|
|
|
|
|
|
|
|
void
|
|
|
|
main()
|
|
|
|
{
|
2013-06-10 19:53:04 +00:00
|
|
|
vec4 p = inpt.v.position;
|
2013-03-12 16:54:12 +00:00
|
|
|
p.xyz /= p.w;
|
|
|
|
|
2013-06-10 19:53:04 +00:00
|
|
|
vec4 wp = inpt.depthPosition;
|
2013-03-12 16:54:12 +00:00
|
|
|
wp.z -= 0.001;
|
|
|
|
wp.xyz /= wp.w;
|
|
|
|
|
|
|
|
vec4 c = texture(paintTexture, p.xy*0.5+0.5);
|
|
|
|
float depth = texture(depthTexture, wp.xy*0.5+0.5).x;
|
|
|
|
if (wp.z*0.5+0.5 >= depth) return;
|
|
|
|
|
2013-06-10 19:53:04 +00:00
|
|
|
ivec3 pos = ivec3(inpt.v.patchCoord.x * imageSize,
|
|
|
|
inpt.v.patchCoord.y * imageSize,
|
|
|
|
int(inpt.v.patchCoord.w));
|
2013-03-12 16:54:12 +00:00
|
|
|
|
|
|
|
vec4 d = imageLoad(outTextureImage, pos);
|
|
|
|
c = c + d;
|
|
|
|
imageStore(outTextureImage, pos, c);
|
|
|
|
discard;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|