mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-09 18:20:16 +01:00
16 lines
233 B
C
16 lines
233 B
C
#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();
|
|
}; |