Changeset 520 for trunk/src/image
- Timestamp:
- 10/03/16 17:45:46 (9 years ago)
- Location:
- trunk/src/image
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/image/miniz.cc
r487 r520 2668 2668 return tinfl_decompress_mem_to_heap( source_buf, source_buf_len, out_len, parse_header ? TINFL_FLAG_PARSE_ZLIB_HEADER : 0 ); 2669 2669 } 2670 2671 int nv::miniz_compress( unsigned char *pDest, unsigned long *pDest_len, const unsigned char *pSource, unsigned long source_len, int level ) 2672 { 2673 NV_PROFILE( "compress" ); 2674 return mz_compress2( pDest, pDest_len, pSource, source_len, level ); 2675 } 2676 2677 unsigned long nv::miniz_bound( unsigned long source_len ) 2678 { 2679 return mz_compressBound( source_len ); 2680 }
Note: See TracChangeset
for help on using the changeset viewer.