DH 2012-11-15 01:39:56 +02:00
parent de070bf485
commit a90b5cf37a
1998 changed files with 1034301 additions and 0 deletions

16
rpcs3/Emu/GS/GL/Program.h Normal file
View file

@ -0,0 +1,16 @@
#pragma once
#include "VertexProgram.h"
#include "FragmentProgram.h"
struct Program
{
u32 id;
Program();
bool IsCreated() const;
void Create(const u32 vp, const u32 fp);
void Use();
void SetTex(u32 index);
void Delete();
};