mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +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.
12 lines
364 B
Plaintext
12 lines
364 B
Plaintext
source $env(CSF_OCCTSamplesPath)/tcl/materials.tcl
|
|
vlight -change 0 -intensity 5
|
|
vrenderparams -shadingModel PBR -msaa 0
|
|
vdump $imagedir/${casename}_default.png
|
|
|
|
set aCubeMap [locate_data_file Circus_CubeMap_V.png]
|
|
vbackground -cubemap $aCubeMap
|
|
vdump $imagedir/${casename}_env.png
|
|
|
|
vbackground -cubemap $aCubeMap -invertedz
|
|
vdump $imagedir/${casename}_env_iz.png
|