Skip to content
Snippets Groups Projects
Commit 39c63231 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Fix jpeglib linking

parent 45496cdc
No related branches found
No related tags found
No related merge requests found
......@@ -9,9 +9,9 @@ add_library( ll::libjpeg INTERFACE IMPORTED )
use_system_binary(libjpeg)
use_prebuilt_binary(libjpeg-turbo)
if (LINUX)
target_link_libraries( ll::libjpeg INTERFACE jpeg)
target_link_libraries( ll::libjpeg INTERFACE ${ARCH_PREBUILT_DIRS_RELEASE}/libjpeg.a)
elseif (DARWIN)
target_link_libraries( ll::libjpeg INTERFACE jpeg)
target_link_libraries( ll::libjpeg INTERFACE ${ARCH_PREBUILT_DIRS_RELEASE}/libjpeg.a)
elseif (WINDOWS)
target_link_libraries( ll::libjpeg INTERFACE
debug ${ARCH_PREBUILT_DIRS_DEBUG}/jpeg.lib
......
......@@ -23,8 +23,7 @@
* $/LicenseInfo$
*/
uniform sampler2D noiseMap;
uniform sampler2D normalMap;
uniform sampler2D noiseMap;
uniform sampler2D depthMap;
uniform float ssao_radius;
......
......@@ -50,7 +50,6 @@ SOFTWARE.
uniform sampler2D normalMap;
uniform sampler2D depthMap;
uniform sampler2D emissiveRect;
uniform sampler2D projectionMap; // rgba
uniform sampler2D brdfLut;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment