Files
FC1/RenderDll/XRenderOGL/NVParse/ps1.0_program.h
romkazvo 34d6c5d489 123
2023-08-07 19:29:24 +08:00

22 lines
290 B
C++

#ifndef _PS10_PROGRAM_H
#define _PS10_PROGRAM_H
namespace ps10
{
struct constdef
{
string reg;
float r,g,b,a;
};
void invoke(std::vector<constdef> * c,
std::list<std::vector<string> > * a,
std::list<std::vector<string> > * b);
bool init_extensions();
}
#endif