mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Metallic-Roughness shading model Graphic3d_TOSM_PBR has been implemented. New materials descriptors Graphic3d_PBRMaterial have been added to Graphic3d_MaterialAspect. PBR shading model requires OpenGL 3.0+ or OpenGL ES 3.0+ hardware. Environment cubemap is expected to be provided for realistic look of metallic materials. occLight_IsHeadlight() now returns bool instead of int. Avoid using lowp for enumerations to workaround occLight_IsHeadlight() ignorance on Adreno 308 caused by some GLSL optimizator bugs. OpenGl_Texture::EstimatedDataSize() - fixed estimation for Cubemap textures. OpenGl_Sampler::applySamplerParams() - fixed uninitialized GL_TEXTURE_WRAP_R in case of GL_TEXTURE_CUBE_MAP target.
21 lines
873 B
GLSL
21 lines
873 B
GLSL
//! Calculates Cook-Torrance BRDF.
|
|
vec3 occPBRCookTorrance (in vec3 theView,
|
|
in vec3 theLight,
|
|
in vec3 theNormal,
|
|
in vec3 theBaseColor,
|
|
in float theMetallic,
|
|
in float theRoughness,
|
|
in float theIOR)
|
|
{
|
|
vec3 aHalf = normalize (theView + theLight);
|
|
float aCosV = max(dot(theView, theNormal), 0.0);
|
|
float aCosL = max(dot(theLight, theNormal), 0.0);
|
|
float aCosH = max(dot(aHalf, theNormal), 0.0);
|
|
float aCosVH = max(dot(aHalf, theView), 0.0);
|
|
vec3 aCookTorrance = occPBRDistribution (aCosH, theRoughness)
|
|
* occPBRGeometry (aCosV, aCosL, theRoughness)
|
|
* occPBRFresnel (theBaseColor, theMetallic, theIOR, aCosVH);
|
|
aCookTorrance /= 4.0;
|
|
return aCookTorrance;
|
|
}
|