~ubuntu-branches/ubuntu/natty/spring/natty

« back to all changes in this revision

Viewing changes to rts/Map/SM3/terrain/Textures.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott Ritchie
  • Date: 2010-09-23 18:56:03 UTC
  • mfrom: (3.1.9 experimental)
  • Revision ID: james.westby@ubuntu.com-20100923185603-st97s5chplo42y7w
Tags: 0.82.5.1+dfsg1-1ubuntu1
* Latest upstream version for online play
* debian/control: Replace (rather than conflict) spring-engine
  - spring-engine will be a dummy package (LP: #612905)
  - also set maintainer to MOTU

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
---------------------------------------------------------------------
3
 
   Terrain Renderer using texture splatting and geomipmapping
4
 
   Copyright (c) 2006 Jelmer Cnossen
5
 
 
6
 
   This software is provided 'as-is', without any express or implied
7
 
   warranty. In no event will the authors be held liable for any
8
 
   damages arising from the use of this software.
9
 
 
10
 
   Permission is granted to anyone to use this software for any
11
 
   purpose, including commercial applications, and to alter it and
12
 
   redistribute it freely, subject to the following restrictions:
13
 
 
14
 
   1. The origin of this software must not be misrepresented; you
15
 
      must not claim that you wrote the original software. If you use
16
 
      this software in a product, an acknowledgment in the product
17
 
      documentation would be appreciated but is not required.
18
 
 
19
 
   2. Altered source versions must be plainly marked as such, and
20
 
      must not be misrepresented as being the original software.
21
 
 
22
 
   3. This notice may not be removed or altered from any source
23
 
      distribution.
24
 
 
25
 
   Jelmer Cnossen
26
 
   j.cnossen at gmail dot com
27
 
---------------------------------------------------------------------
28
 
*/
 
1
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
29
2
 
30
3
#ifndef TERRAIN_TEXTURES_H
31
4
#define TERRAIN_TEXTURES_H
143
116
        void SetTexCoordGen(float *tgv);
144
117
};
145
118
 
146
 
 
147
119
#endif
 
120