瀏覽代碼

Fix documentation error

Jonas Karlsson 10 年之前
父節點
當前提交
22dd50f256
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      stb_image_write.h

+ 1 - 1
stb_image_write.h

@@ -34,7 +34,7 @@ USAGE:
      int stbi_write_png(char const *filename, int w, int h, int comp, const void *data, int stride_in_bytes);
      int stbi_write_bmp(char const *filename, int w, int h, int comp, const void *data);
      int stbi_write_tga(char const *filename, int w, int h, int comp, const void *data);
-     int stbi_write_hdr(char const *filename, int w, int h, int comp, const void *data);
+     int stbi_write_hdr(char const *filename, int w, int h, int comp, const float *data);
 
    There are also four equivalent functions that use an arbitrary write function. You are
    expected to open/close your file-equivalent before and after calling these: