Files
ppsspp/ext/etcpack
Lioncash 366de9f248 Fix a another memory leak in etctool.
imgdec = (unsigned char*) malloc(expandedwidth*expandedheight*3);
is called before the if statement "if((f=fopen(dstfile,"wb")))"

If the file 'f' failed in the if statement, it would never be freed (since "free(imgdec)" was within that if block.
2013-02-02 13:18:23 -05:00
..
2012-03-24 23:39:19 +01:00
2012-03-24 23:39:19 +01:00
2012-03-24 23:39:19 +01:00
2012-03-24 23:39:19 +01:00
2012-07-18 12:03:51 +02:00
2012-03-24 23:39:19 +01:00
2012-03-24 23:39:19 +01:00
2012-03-24 23:39:19 +01:00
2012-03-24 23:39:19 +01:00

This folder contains code adapted from etcpack by ERICSSON ///.

The license comments have been left at the top of each file, but some code may have moved around.

See LICENSE.TXT for details. It says that use of the code is limited to applications using the
code to compress textures for use with a Khronos-derived API. This game engine only supports
OpenGL ES 2.0, which certainly qualifies, so there is no issue there.