~ubuntu-branches/ubuntu/hoary/devil/hoary

« back to all changes in this revision

Viewing changes to src-ILU/include/ilu_mipmap.h

  • Committer: Bazaar Package Importer
  • Author(s): Marcelo E. Magallon
  • Date: 2005-01-03 19:57:42 UTC
  • Revision ID: james.westby@ubuntu.com-20050103195742-4ipkplcwygu3irv0
Tags: upstream-1.6.7
ImportĀ upstreamĀ versionĀ 1.6.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//-----------------------------------------------------------------------------
 
2
//
 
3
// ImageLib Utility Sources
 
4
// Copyright (C) 2000-2002 by Denton Woods
 
5
// Last modified: 08/11/2001 <--Y2K Compliant! =]
 
6
//
 
7
// Filename: src-ILU/include/ilu_manip.h
 
8
//
 
9
// Description: Generates mipmaps for the current image
 
10
//
 
11
//-----------------------------------------------------------------------------
 
12
 
 
13
 
 
14
#ifndef MIPMAP_H
 
15
#define MIPMAP_H
 
16
 
 
17
#include "ilu_internal.h"
 
18
 
 
19
ILboolean       iBuild1DMipmaps_(ILuint Width);
 
20
ILboolean       iBuild1DMipmapsVertical_(ILuint Height);
 
21
ILboolean       iBuild2DMipmaps_(ILuint Width, ILuint Height);
 
22
ILboolean       iBuild3DMipmapsVertical_(ILuint Height, ILuint Depth);
 
23
ILboolean       iBuild3DMipmapsHorizontal_(ILuint Width, ILuint Depth);
 
24
ILboolean       iBuild3DMipmaps_(ILuint Width, ILuint Height, ILuint Depth);
 
25
 
 
26
ILimage         *CurMipMap = NULL;  // 8-11-2001
 
27
 
 
28
#endif//MIPMAP_H