Merge pull request #1093 from Areloch/ForestWindDefoFeatureFix

Adds the hlsl and glsl wind deformation shader feature implementation code back into the cmake logic
This commit is contained in:
Brian Roberts 2023-09-18 06:32:46 -05:00 committed by GitHub
commit d074b58699
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -130,6 +130,12 @@ torqueAddSourceDirectories("module")
# Handle forest
torqueAddSourceDirectories("forest" "forest/ts")
if(TORQUE_OPENGL)
torqueAddSourceDirectories("forest" "forest/glsl")
endif(TORQUE_OPENGL)
if(TORQUE_D3D11)
torqueAddSourceDirectories("forest" "forest/hlsl")
endif(TORQUE_OPENGL)
# Handle shadergen
torqueAddSourceDirectories("shaderGen")