From adb85bb8b4f6d4745c59e28a2fcad1075e38e6cd Mon Sep 17 00:00:00 2001 From: Bogdan Devichev Date: Mon, 6 Apr 2015 11:01:14 +0900 Subject: [PATCH] evas-3d: parallax-occlusion example is fixed. Summary: wrong pathes to resources are fixed Reviewers: cedric, Hermet, raster, Sergeant_Whitespace Reviewed By: Sergeant_Whitespace Subscribers: Sergeant_Whitespace, Ievgen, cedric Differential Revision: https://phab.enlightenment.org/D2235 --- unsorted/evas/evas-3d-parallax-occlusion.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/unsorted/evas/evas-3d-parallax-occlusion.c b/unsorted/evas/evas-3d-parallax-occlusion.c index 60af0d18..76640cda 100644 --- a/unsorted/evas/evas-3d-parallax-occlusion.c +++ b/unsorted/evas/evas-3d-parallax-occlusion.c @@ -26,10 +26,10 @@ #define WIDTH 400 #define HEIGHT 400 -static const char *rock_diffuse = PACKAGE_EXAMPLES_DIR EVAS_MODEL_FOLDER "rocks.jpg"; -static const char *rock_n_and_height_map = PACKAGE_EXAMPLES_DIR EVAS_IMAGE_FOLDER "rocks_NM_height.tga"; -static const char *wood_diffuse = PACKAGE_EXAMPLES_DIR EVAS_MODEL_FOLDER "wood.jpg"; -static const char *wood_n_and_height_map = PACKAGE_EXAMPLES_DIR EVAS_IMAGE_FOLDER "four_NM_height.tga"; +static const char *rock_diffuse = PACKAGE_EXAMPLES_DIR EVAS_IMAGE_FOLDER "/rocks.jpg"; +static const char *rock_n_and_height_map = PACKAGE_EXAMPLES_DIR EVAS_IMAGE_FOLDER "/rocks_NM_height.tga"; +static const char *wood_diffuse = PACKAGE_EXAMPLES_DIR EVAS_IMAGE_FOLDER "/wood.jpg"; +static const char *wood_n_and_height_map = PACKAGE_EXAMPLES_DIR EVAS_IMAGE_FOLDER "/four_NM_height.tga"; typedef struct _Scene_Data {