25 lines
1.2 KiB
Diff
25 lines
1.2 KiB
Diff
From 320047d9ecd5f3df37d0f28893017e88e374fdc2 Mon Sep 17 00:00:00 2001
|
|
From: Alexey Pavlov <alexpux@gmail.com>
|
|
Date: Thu, 2 Feb 2017 09:36:35 +0300
|
|
Subject: [PATCH 1/6] Add missing export function.
|
|
|
|
---
|
|
DevIL/include/IL/il.h | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/DevIL/include/IL/il.h b/DevIL/include/IL/il.h
|
|
index d3bf65db..6aacb3bb 100644
|
|
--- a/DevIL/include/IL/il.h
|
|
+++ b/DevIL/include/IL/il.h
|
|
@@ -625,6 +625,7 @@ ILAPI void ILAPIENTRY ilShutDown(void);
|
|
ILAPI ILboolean ILAPIENTRY ilSurfaceToDxtcData(ILenum Format);
|
|
ILAPI ILboolean ILAPIENTRY ilTexImage(ILuint Width, ILuint Height, ILuint Depth, ILubyte NumChannels, ILenum Format, ILenum Type, void *Data);
|
|
ILAPI ILboolean ILAPIENTRY ilTexImageDxtc(ILint w, ILint h, ILint d, ILenum DxtFormat, const ILubyte* data);
|
|
+ILAPI ILboolean ILAPIENTRY ilTexImageSurface(ILuint Width, ILuint Height, ILuint Depth, ILubyte NumChannels, ILenum Format, ILenum Type, void *Data);
|
|
ILAPI ILenum ILAPIENTRY ilTypeFromExt(ILconst_string FileName);
|
|
ILAPI ILboolean ILAPIENTRY ilTypeFunc(ILenum Mode);
|
|
ILAPI ILboolean ILAPIENTRY ilLoadData(ILconst_string FileName, ILuint Width, ILuint Height, ILuint Depth, ILubyte Bpp);
|
|
--
|
|
2.11.0
|
|
|