mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-06 03:18:14 +00:00
rlUpdateTexture(): Corrected issue
This commit is contained in:
@@ -2208,7 +2208,7 @@ void rlUpdateTexture(unsigned int id, int offsetX, int offsetY, int width, int h
|
|||||||
|
|
||||||
if ((glInternalFormat != -1) && (format < COMPRESSED_DXT1_RGB))
|
if ((glInternalFormat != -1) && (format < COMPRESSED_DXT1_RGB))
|
||||||
{
|
{
|
||||||
glTexSubImage2D(GL_TEXTURE_2D, 0, offsetY, offsetY, width, height, glFormat, glType, (unsigned char *)data);
|
glTexSubImage2D(GL_TEXTURE_2D, 0, offsetX, offsetY, width, height, glFormat, glType, (unsigned char *)data);
|
||||||
}
|
}
|
||||||
else TRACELOG(LOG_WARNING, "TEXTURE: [ID %i] Failed to update for current texture format (%i)", id, format);
|
else TRACELOG(LOG_WARNING, "TEXTURE: [ID %i] Failed to update for current texture format (%i)", id, format);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user