This commit is contained in:
romkazvo
2023-08-07 19:29:24 +08:00
commit 34d6c5d489
4832 changed files with 1389451 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#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