Ignore:
Timestamp:
02/24/16 18:47:54 (9 years ago)
Author:
epyon
Message:
  • mass update once again...
File:
1 edited

Legend:

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

    r484 r486  
    665665}
    666666
     667
    667668static int stbi__unpremultiply_on_load = 0;
    668669static int stbi__de_iphone_flag = 0;
    669670
     671/*
    670672static void stbi_set_unpremultiply_on_load( int flag_true_if_should_unpremultiply )
    671673{
     
    677679        stbi__de_iphone_flag = flag_true_if_should_convert;
    678680}
     681*/
    679682
    680683static void stbi__de_iphone( stbi__png *z )
     
    10211024}
    10221025
     1026bool nv::png_loader::test( stream& str )
     1027{
     1028        stbi__context s( &stbi__callbacks, (void *)&str );
     1029        return stbi__png_test( &s ) != 0;
     1030}
     1031
    10231032image_data* nv::png_loader::load( stream& s )
    10241033{
Note: See TracChangeset for help on using the changeset viewer.