1. 13 4月, 2015 5 次提交
  2. 12 4月, 2015 1 次提交
  3. 29 3月, 2015 1 次提交
  4. 23 2月, 2015 1 次提交
  5. 20 2月, 2015 1 次提交
    • J
      Avoid GCC sign-compare warning. · a60912f1
      Joseph Thomson 提交于
      GCC 4.7 gave the warning "signed and unsigned type in conditional
      expression" because the ternary operator mixes signed and unsigned
      integers. Fixed by casting to unsigned inside the "if" branch instead
      of casting the result of the entire conditional.
      a60912f1
  6. 17 2月, 2015 1 次提交
    • F
      stb_image: NEON and SSE2 SIMD detection fixes. · 4b0c6f66
      Fabian Giesen 提交于
      This fixes two things. First, the logic to disable SSE2 on
      GCC unless "-msse2" was not specific enough, and ended up
      disabling SIMD support on NEON targets entirely. Shuffle
      the detection logic around to make that bit x86-specific.
      
      Second, 32-bit MinGW assumes 16-byte aligned stacks, but this is
      not in the Windows ABI and hence DLLs and callbacks don't
      necessarily provide it. This caused a crash.
      
      This can be fixed by providing the right command-line option,
      which we have no control over. As a compromise, disable the SSE2
      path on MinGW unless a specific #define explained in the comments
      is set. That way, we default to safe (never-crashing) behavior
      unless the user explicitly signals they know what they're doing.
      4b0c6f66
  7. 06 2月, 2015 1 次提交
  8. 19 1月, 2015 1 次提交
  9. 18 1月, 2015 3 次提交
  10. 12 1月, 2015 2 次提交
  11. 30 12月, 2014 1 次提交
  12. 26 12月, 2014 1 次提交
  13. 25 12月, 2014 1 次提交
  14. 24 12月, 2014 6 次提交
  15. 23 12月, 2014 1 次提交
    • S
      Put progressive JPEG AC decode logic back the way I wrote it originally (I... · 5b53d20c
      Sean Barrett 提交于
      Put progressive JPEG AC decode logic back the way I wrote it originally (I changed it to match jpgd when I was trying to figure out why it didn't work);
      add STBI__ prefixes to internal SCAN_ enum;
      strip unused function arguments for progressive funcs;
      tweak release notes;
      forget to git commit frequently so these would all be in their own commits;
      5b53d20c
  16. 22 12月, 2014 2 次提交
  17. 21 12月, 2014 3 次提交
  18. 20 12月, 2014 4 次提交
  19. 19 12月, 2014 3 次提交
  20. 18 12月, 2014 1 次提交