2000-06-05 00:00:00 +00:00
|
|
|
/***
|
|
|
|
*
|
2002-12-23 00:00:00 +00:00
|
|
|
* Copyright (c) 1996-2002, Valve LLC. All rights reserved.
|
2000-06-05 00:00:00 +00:00
|
|
|
*
|
|
|
|
* This product contains software technology licensed from Id
|
|
|
|
* Software, Inc. ("Id Technology"). Id Technology (c) 1996 Id Software, Inc.
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use, distribution, and modification of this source code and/or resulting
|
|
|
|
* object code is restricted to non-commercial enhancements to products from
|
|
|
|
* Valve LLC. All other use, distribution, or modification is prohibited
|
|
|
|
* without written permission from Valve LLC.
|
|
|
|
*
|
|
|
|
****/
|
|
|
|
#if !defined( TRIANGLEAPIH )
|
|
|
|
#define TRIANGLEAPIH
|
2002-12-23 00:00:00 +00:00
|
|
|
#ifdef _WIN32
|
2000-06-05 00:00:00 +00:00
|
|
|
#pragma once
|
2002-12-23 00:00:00 +00:00
|
|
|
#endif
|
2000-06-05 00:00:00 +00:00
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TRI_FRONT = 0,
|
|
|
|
TRI_NONE = 1,
|
|
|
|
} TRICULLSTYLE;
|
|
|
|
|
|
|
|
#define TRI_API_VERSION 1
|
|
|
|
|
|
|
|
#define TRI_TRIANGLES 0
|
|
|
|
#define TRI_TRIANGLE_FAN 1
|
|
|
|
#define TRI_QUADS 2
|
|
|
|
#define TRI_POLYGON 3
|
|
|
|
#define TRI_LINES 4
|
|
|
|
#define TRI_TRIANGLE_STRIP 5
|
|
|
|
#define TRI_QUAD_STRIP 6
|
|
|
|
|
|
|
|
typedef struct triangleapi_s
|
|
|
|
{
|
|
|
|
int version;
|
|
|
|
|
|
|
|
void ( *RenderMode )( int mode );
|
|
|
|
void ( *Begin )( int primitiveCode );
|
|
|
|
void ( *End ) ( void );
|
|
|
|
|
|
|
|
void ( *Color4f ) ( float r, float g, float b, float a );
|
|
|
|
void ( *Color4ub ) ( unsigned char r, unsigned char g, unsigned char b, unsigned char a );
|
|
|
|
void ( *TexCoord2f ) ( float u, float v );
|
|
|
|
void ( *Vertex3fv ) ( float *worldPnt );
|
|
|
|
void ( *Vertex3f ) ( float x, float y, float z );
|
|
|
|
void ( *Brightness ) ( float brightness );
|
|
|
|
void ( *CullFace ) ( TRICULLSTYLE style );
|
|
|
|
int ( *SpriteTexture ) ( struct model_s *pSpriteModel, int frame );
|
|
|
|
int ( *WorldToScreen ) ( float *world, float *screen ); // Returns 1 if it's z clipped
|
2001-08-29 00:00:00 +00:00
|
|
|
void ( *Fog ) ( float flFogColor[3], float flStart, float flEnd, int bOn ); //Works just like GL_FOG, flFogColor is r/g/b.
|
2002-12-23 00:00:00 +00:00
|
|
|
void ( *ScreenToWorld ) ( float *screen, float *world );
|
|
|
|
|
2000-06-05 00:00:00 +00:00
|
|
|
} triangleapi_t;
|
|
|
|
|
2001-08-29 00:00:00 +00:00
|
|
|
#endif // !TRIANGLEAPIH
|