diff options
author | Omni <omniscient.oce@gmail.com> | 2024-06-24 00:59:51 +1000 |
---|---|---|
committer | Omni <omniscient.oce@gmail.com> | 2024-06-24 00:59:51 +1000 |
commit | 564a656b1e0bf2d2cec0f35898a860ace384f616 (patch) | |
tree | f4c5db0d7b15d8453733d2755abe504f4628a1a3 | |
parent | 053bd85c6747a82a5db6b0437055dec948786b1d (diff) |
use diff. textures
-rw-r--r-- | examples/shadow_maps/ex_shadow_maps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/shadow_maps/ex_shadow_maps.c b/examples/shadow_maps/ex_shadow_maps.c index c61996a..e918d67 100644 --- a/examples/shadow_maps/ex_shadow_maps.c +++ b/examples/shadow_maps/ex_shadow_maps.c @@ -110,7 +110,7 @@ int main() { texture_data tex_data = texture_data_load("assets/textures/texture.jpg", false); texture_handle texture = texture_data_upload(tex_data, true); texture_handle white_tex = - texture_data_upload(texture_data_load("assets/textures/white1x1.png", false), true); + texture_data_upload(texture_data_load("assets/models/obj/cube/container.jpg", false), true); // END TEMP |