UnloadTexture did not set texture id to NULL.

This commit is contained in:
jussi
2023-05-09 23:48:09 +03:00
parent 429a9dff96
commit 1e58f551bb
5 changed files with 5 additions and 5 deletions

View File

@@ -67,6 +67,7 @@ Detailed changes:
- FIXED: Vector3RotateByAxisAngle was not connected.
- FIXED: uluaGetBoundingBoxIndex was looking for numbers instead of tables.
- ADDED: IsTextureReady
- FIXED: UnloadTexture did not set texture id to NULL.
------------------------------------------------------------------------
Release: ReiLua version 0.4.0 Using Raylib 4.2

View File

@@ -1,4 +1,5 @@
Current {
* Review GenMeshCustom indices.
}
Backlog {

View File

@@ -1251,7 +1251,6 @@ int lcoreSetShaderValueTexture( lua_State *L ) {
lua_pushboolean( L, false );
return 1;
}
// SetShaderValueTexture( *state->shaders[ shaderId ], locIndex, *state->textures[ textureId ] );
SetShaderValueTexture( *state->shaders[ shaderId ], locIndex, *texturesGetSourceTexture( textureId ) );
lua_pushboolean( L, true );

View File

@@ -122,13 +122,13 @@ void stateFree() {
for ( int i = 0; i < state->imageCount; ++i ) {
if ( state->images[i] != NULL ) {
UnloadImage( *state->images[i] );
free( state->images[i] );
// free( state->images[i] );
}
}
for ( int i = 0; i < state->textureCount; ++i ) {
if ( state->textures[i] != NULL ) {
texturesFreeTexture(i);
free( state->textures[i] );
// free( state->textures[i] );
}
}
for ( int i = 0; i < state->fontCount; ++i ) {

View File

@@ -111,6 +111,7 @@ void texturesFreeTexture( size_t id ) {
UnloadRenderTexture( state->textures[id]->renderTexture );
break;
}
state->textures[id] = NULL;
}
}
/*
@@ -1746,9 +1747,7 @@ int ltexturesUnloadTexture( lua_State *L ) {
lua_pushboolean( L, false );
return 1;
}
// UnloadTexture( *state->textures[ id ] );
texturesFreeTexture( texId );
// state->textures[ id ] = NULL;
lua_pushboolean( L, true );
return 1;