forked from mirrors/0ad
11900f8b38
This was SVN commit r1297.
22 lines
316 B
C++
Executable File
22 lines
316 B
C++
Executable File
#ifndef __H_VERTEXPROGRAM_H__
|
|
#define __H_VERTEXPROGRAM_H__
|
|
|
|
#include "ogl.h"
|
|
|
|
class CProgramManager;
|
|
|
|
class CVertexProgram
|
|
{
|
|
friend class CProgramManager;
|
|
public:
|
|
CVertexProgram(const char *file);
|
|
~CVertexProgram();
|
|
|
|
bool IsValid();
|
|
private:
|
|
void Bind();
|
|
void Load(const char *file);
|
|
};
|
|
|
|
#endif
|