config.h   config.h 
skipping to change at line 52 skipping to change at line 52
#define ILUT_USE_SDL 1 #define ILUT_USE_SDL 1
/* #undef ILUT_USE_WIN32 */ /* #undef ILUT_USE_WIN32 */
/* Define if you have the <dlfcn.h> header file. */ /* Define if you have the <dlfcn.h> header file. */
#define HAVE_DLFCN_H 1 #define HAVE_DLFCN_H 1
/* Name of package */ /* Name of package */
#define PACKAGE "DevIL" #define PACKAGE "DevIL"
/* Version number of package */ /* Version number of package */
#define VERSION "1.5.5" #define VERSION "1.5.6"
/* Define if your processor stores words with the most significant byte fir st /* Define if your processor stores words with the most significant byte fir st
(like Motorola and SPARC, unlike Intel and VAX). */ (like Motorola and SPARC, unlike Intel and VAX). */
/* #undef WORDS_BIGENDIAN */ /* #undef WORDS_BIGENDIAN */
/* Define if the X Window System is missing or not being used. */ /* Define if the X Window System is missing or not being used. */
/* #undef X_DISPLAY_MISSING */ /* #undef X_DISPLAY_MISSING */
#endif /* __CONFIG_H__ */ #endif /* __CONFIG_H__ */
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added


 il.h   il.h 
//------------------------------------------------------------------------- ---- //------------------------------------------------------------------------- ----
// //
// ImageLib Sources // ImageLib Sources
// Copyright (C) 2000-2002 by Denton Woods // Copyright (C) 2000-2002 by Denton Woods
// Last modified: 06/08/2002 <--Y2K Compliant! =] // Last modified: 06/11/2002 <--Y2K Compliant! =]
// //
// Filename: il/il.h // Filename: il/il.h
// //
// Description: The main include file for DevIL // Description: The main include file for DevIL
// //
//------------------------------------------------------------------------- ---- //------------------------------------------------------------------------- ----
#ifndef __il_h_ #ifndef __il_h_
#ifndef __IL_H__ #ifndef __IL_H__
skipping to change at line 156 skipping to change at line 156
#define IL_UNSIGNED_INT 0x14 05 #define IL_UNSIGNED_INT 0x14 05
#define IL_FLOAT 0x14 06 #define IL_FLOAT 0x14 06
#define IL_DOUBLE 0x14 0A #define IL_DOUBLE 0x14 0A
#define IL_VENDOR 0x1F 00 #define IL_VENDOR 0x1F 00
// //
// IL-specific #define's // IL-specific #define's
// //
#define IL_VERSION_1_5_5 1 #define IL_VERSION_1_5_6 1
#define IL_VERSION 155 #define IL_VERSION 156
// Attribute Bits // Attribute Bits
#define IL_ORIGIN_BIT 0x00000001 #define IL_ORIGIN_BIT 0x00000001
#define IL_FILE_BIT 0x00 000002 #define IL_FILE_BIT 0x00 000002
#define IL_PAL_BIT 0x00 000004 #define IL_PAL_BIT 0x00 000004
#define IL_FORMAT_BIT 0x00000008 #define IL_FORMAT_BIT 0x00000008
#define IL_TYPE_BIT 0x00 000010 #define IL_TYPE_BIT 0x00 000010
#define IL_COMPRESS_BIT 0x00 000020 #define IL_COMPRESS_BIT 0x00 000020
#define IL_LOADFAIL_BIT 0x00 000040 #define IL_LOADFAIL_BIT 0x00 000040
#define IL_FORMAT_SPECIFIC_BIT 0x00000080 #define IL_FORMAT_SPECIFIC_BIT 0x00000080
 End of changes. 2 change blocks. 
3 lines changed or deleted 3 lines changed or added


 ilu.h   ilu.h 
//------------------------------------------------------------------------- ---- //------------------------------------------------------------------------- ----
// //
// ImageLib Utility Sources // ImageLib Utility Sources
// Copyright (C) 2000-2002 by Denton Woods // Copyright (C) 2000-2002 by Denton Woods
// Last modified: 06/08/2002 <--Y2K Compliant! =] // Last modified: 06/11/2002 <--Y2K Compliant! =]
// //
// Filename: il/ilu.h // Filename: il/ilu.h
// //
// Description: The main include file for ILU // Description: The main include file for ILU
// //
//------------------------------------------------------------------------- ---- //------------------------------------------------------------------------- ----
#ifndef __ilu_h_ #ifndef __ilu_h_
#ifndef __ILU_H__ #ifndef __ILU_H__
skipping to change at line 39 skipping to change at line 39
#ifdef IL_DEBUG #ifdef IL_DEBUG
#pragma comment(lib, "ilu-d.lib") #pragma comment(lib, "ilu-d.lib")
#else #else
#pragma comment(lib, "ilu.lib") #pragma comment(lib, "ilu.lib")
#endif//_DEBUG #endif//_DEBUG
#endif//_ILU_BUILD_LIBRARY #endif//_ILU_BUILD_LIBRARY
#endif//_MSC_VER #endif//_MSC_VER
#endif//IL_STATIC_LIB #endif//IL_STATIC_LIB
#endif//_WIN32 #endif//_WIN32
#define ILU_VERSION_1_5_5 1 #define ILU_VERSION_1_5_6 1
#define ILU_VERSION 155 #define ILU_VERSION 156
#define ILU_FILTER 0x26 00 #define ILU_FILTER 0x26 00
#define ILU_NEAREST 0x26 01 #define ILU_NEAREST 0x26 01
#define ILU_LINEAR 0x26 02 #define ILU_LINEAR 0x26 02
#define ILU_BILINEAR 0x2603 #define ILU_BILINEAR 0x2603
#define ILU_SCALE_BOX 0x2604 #define ILU_SCALE_BOX 0x2604
#define ILU_SCALE_TRIANGLE 0x2605 #define ILU_SCALE_TRIANGLE 0x2605
#define ILU_SCALE_BELL 0x2606 #define ILU_SCALE_BELL 0x2606
#define ILU_SCALE_BSPLINE 0x2607 #define ILU_SCALE_BSPLINE 0x2607
#define ILU_SCALE_LANCZOS3 0x2608 #define ILU_SCALE_LANCZOS3 0x2608
 End of changes. 2 change blocks. 
3 lines changed or deleted 3 lines changed or added


 ilut.h   ilut.h 
//------------------------------------------------------------------------- ---- //------------------------------------------------------------------------- ----
// //
// ImageLib Utility Toolkit Sources // ImageLib Utility Toolkit Sources
// Copyright (C) 2000-2002 by Denton Woods // Copyright (C) 2000-2002 by Denton Woods
// Last modified: 06/08/2002 <--Y2K Compliant! =] // Last modified: 06/11/2002 <--Y2K Compliant! =]
// //
// Filename: il/ilut.h // Filename: il/ilut.h
// //
// Description: The main include file for ILUT // Description: The main include file for ILUT
// //
//------------------------------------------------------------------------- ---- //------------------------------------------------------------------------- ----
#ifndef __ilut_h_ #ifndef __ilut_h_
#ifndef __ILUT_H__ #ifndef __ILUT_H__
skipping to change at line 40 skipping to change at line 40
#ifdef IL_DEBUG #ifdef IL_DEBUG
#pragma comment(lib, "ilut-d.lib") #pragma comment(lib, "ilut-d.lib")
#else #else
#pragma comment(lib, "ilut.lib") #pragma comment(lib, "ilut.lib")
#endif//_DEBUG #endif//_DEBUG
#endif//_ILUT_BUILD_LIBRARY #endif//_ILUT_BUILD_LIBRARY
#endif//_MSC_VER #endif//_MSC_VER
#endif//IL_STATIC_LIB #endif//IL_STATIC_LIB
#endif//_WIN32 #endif//_WIN32
#define ILUT_VERSION_1_5_5 1 #define ILUT_VERSION_1_5_6 1
#define ILUT_VERSION 155 #define ILUT_VERSION 156
// Attribute Bits // Attribute Bits
#define ILUT_OPENGL_BIT 0x00 000001 #define ILUT_OPENGL_BIT 0x00 000001
#define ILUT_D3D_BIT 0x00000002 #define ILUT_D3D_BIT 0x00000002
#define ILUT_ALL_ATTRIB_BITS 0x000FFFFF #define ILUT_ALL_ATTRIB_BITS 0x000FFFFF
// Error Types // Error Types
#define ILUT_INVALID_ENUM 0x0501 #define ILUT_INVALID_ENUM 0x0501
#define ILUT_OUT_OF_MEMORY 0x0502 #define ILUT_OUT_OF_MEMORY 0x0502
#define ILUT_INVALID_VALUE 0x0505 #define ILUT_INVALID_VALUE 0x0505
 End of changes. 2 change blocks. 
3 lines changed or deleted 3 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/