mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-02 14:40:40 +00:00
- more Polymer leftover.
This commit is contained in:
parent
c7fca86cf5
commit
709dac7c37
1 changed files with 0 additions and 31 deletions
|
@ -48,40 +48,12 @@ typedef struct
|
||||||
|
|
||||||
MIRROR mirror[16];
|
MIRROR mirror[16];
|
||||||
|
|
||||||
#ifdef POLYMER
|
|
||||||
void PolymerRORCallback(int16_t sectnum, int16_t wallnum, int8_t rorstat, int16_t* msectnum, int32_t* gx, int32_t* gy, int32_t* gz)
|
|
||||||
{
|
|
||||||
UNREFERENCED_PARAMETER(wallnum);
|
|
||||||
int nMirror;
|
|
||||||
switch (rorstat)
|
|
||||||
{
|
|
||||||
case 1:
|
|
||||||
nMirror = sector[sectnum].ceilingpicnum-4080;
|
|
||||||
*msectnum = mirror[nMirror].at4;
|
|
||||||
*gx += mirror[nMirror].at8;
|
|
||||||
*gy += mirror[nMirror].atc;
|
|
||||||
*gz += mirror[nMirror].at10;
|
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
nMirror = sector[sectnum].floorpicnum-4080;
|
|
||||||
*msectnum = mirror[nMirror].at4;
|
|
||||||
*gx += mirror[nMirror].at8;
|
|
||||||
*gy += mirror[nMirror].atc;
|
|
||||||
*gz += mirror[nMirror].at10;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
void InitMirrors(void)
|
void InitMirrors(void)
|
||||||
{
|
{
|
||||||
|
|
||||||
#ifdef USE_OPENGL
|
#ifdef USE_OPENGL
|
||||||
r_rortexture = 4080;
|
r_rortexture = 4080;
|
||||||
r_rortexturerange = 16;
|
r_rortexturerange = 16;
|
||||||
#ifdef POLYMER
|
|
||||||
polymer_setrorcallback(PolymerRORCallback);
|
|
||||||
#endif // POLYMER
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
mirrorcnt = 0;
|
mirrorcnt = 0;
|
||||||
|
@ -489,9 +461,6 @@ void MirrorLoadSave::Load(void)
|
||||||
#ifdef USE_OPENGL
|
#ifdef USE_OPENGL
|
||||||
r_rortexture = 4080;
|
r_rortexture = 4080;
|
||||||
r_rortexturerange = 16;
|
r_rortexturerange = 16;
|
||||||
#ifdef POLYMER
|
|
||||||
polymer_setrorcallback(PolymerRORCallback);
|
|
||||||
#endif // POLYMER
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
Read(&mirrorcnt,sizeof(mirrorcnt));
|
Read(&mirrorcnt,sizeof(mirrorcnt));
|
||||||
|
|
Loading…
Reference in a new issue