2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-03 11:09:40 -04:00

Unload panorama texture in SkyboxDemo

This commit is contained in:
ChrisDill 2023-09-17 13:31:10 +01:00
parent 49871bcd8b
commit e9220c14df

View File

@ -93,6 +93,7 @@ public class SkyboxDemo
PixelFormat.PIXELFORMAT_UNCOMPRESSED_R8G8B8A8 PixelFormat.PIXELFORMAT_UNCOMPRESSED_R8G8B8A8
); );
SetMaterialTexture(ref skybox, 0, MaterialMapIndex.MATERIAL_MAP_CUBEMAP, ref cubemap); SetMaterialTexture(ref skybox, 0, MaterialMapIndex.MATERIAL_MAP_CUBEMAP, ref cubemap);
UnloadTexture(panorama);
} }
else else
{ {
@ -136,6 +137,7 @@ public class SkyboxDemo
PixelFormat.PIXELFORMAT_UNCOMPRESSED_R8G8B8A8 PixelFormat.PIXELFORMAT_UNCOMPRESSED_R8G8B8A8
); );
SetMaterialTexture(ref skybox, 0, MaterialMapIndex.MATERIAL_MAP_CUBEMAP, ref cubemap); SetMaterialTexture(ref skybox, 0, MaterialMapIndex.MATERIAL_MAP_CUBEMAP, ref cubemap);
UnloadTexture(panorama);
} }
else else
{ {