mirror of
https://github.com/emu-russia/pureikyubu.git
synced 2025-04-02 10:42:15 -04:00
10 lines
131 B
C
10 lines
131 B
C
#pragma once
|
|
|
|
typedef struct
|
|
{
|
|
float out[4];
|
|
} TexGenOut;
|
|
|
|
extern TexGenOut tgout[8];
|
|
|
|
void DoTexGen(const Vertex *v);
|