Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-10-04 05:12:38 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-10-04 05:14:58 +0300
commit3c3669894f9d8b9e079605aee1a84796532fbe5b (patch)
tree9ef96d44e9337ea481bba2f5132a179cf38ace72 /source/blender/imbuf
parent6e48a51af7925e84988cb83f986a7d5d415a2ae2 (diff)
Cleanup: use system includes
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/jpeg.c5
-rw-r--r--source/blender/imbuf/intern/png.c2
-rw-r--r--source/blender/imbuf/intern/tiff.c2
3 files changed, 5 insertions, 4 deletions
diff --git a/source/blender/imbuf/intern/jpeg.c b/source/blender/imbuf/intern/jpeg.c
index 48b5b0c34db..c3a07d7face 100644
--- a/source/blender/imbuf/intern/jpeg.c
+++ b/source/blender/imbuf/intern/jpeg.c
@@ -40,8 +40,9 @@
#include "IMB_imbuf_types.h"
#include "IMB_metadata.h"
#include "imbuf.h"
-#include "jerror.h"
-#include "jpeglib.h"
+
+#include <jerror.h>
+#include <jpeglib.h>
#include "IMB_colormanagement.h"
#include "IMB_colormanagement_intern.h"
diff --git a/source/blender/imbuf/intern/png.c b/source/blender/imbuf/intern/png.c
index 399fd487065..26f0f11a001 100644
--- a/source/blender/imbuf/intern/png.c
+++ b/source/blender/imbuf/intern/png.c
@@ -23,7 +23,7 @@
* \todo Save floats as 16 bits per channel, currently readonly.
*/
-#include "png.h"
+#include <png.h>
#include "BLI_fileops.h"
#include "BLI_math.h"
diff --git a/source/blender/imbuf/intern/tiff.c b/source/blender/imbuf/intern/tiff.c
index d9e1db27ef0..3625d7d1af2 100644
--- a/source/blender/imbuf/intern/tiff.c
+++ b/source/blender/imbuf/intern/tiff.c
@@ -52,7 +52,7 @@
#include "IMB_colormanagement.h"
#include "IMB_colormanagement_intern.h"
-#include "tiffio.h"
+#include <tiffio.h>
#ifdef WIN32
# include "utfconv.h"