Ignore:
Timestamp:
10/03/16 17:45:46 (9 years ago)
Author:
epyon
Message:
  • ecs updates
  • animation updates
  • ragdoll manager
  • lua has own random engine
  • several minor fixes
  • particle engine/particle group
  • shitload of other stuff
  • bullet world
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/image/miniz.cc

    r487 r520  
    26682668        return tinfl_decompress_mem_to_heap( source_buf, source_buf_len, out_len, parse_header ? TINFL_FLAG_PARSE_ZLIB_HEADER : 0 );
    26692669}
     2670
     2671int 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
     2677unsigned 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.