mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-25 00:11:13 +00:00
- silence debug diagnostics for non-test builds
This commit is contained in:
parent
d7d5da93f6
commit
ef3ade08d3
2 changed files with 5 additions and 2 deletions
|
@ -392,8 +392,9 @@ int32_t Anim_Play(const char *fn)
|
||||||
} while (timerGetTicks() < nextframetime);
|
} while (timerGetTicks() < nextframetime);
|
||||||
} while (running);
|
} while (running);
|
||||||
GLInterface.EnableNonTransparent255(false);
|
GLInterface.EnableNonTransparent255(false);
|
||||||
|
#ifdef DEBUGGINGAIDS
|
||||||
animvpx_print_stats(&codec);
|
animvpx_print_stats(&codec);
|
||||||
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
animvpx_restore_glstate();
|
animvpx_restore_glstate();
|
||||||
|
|
|
@ -423,7 +423,9 @@ int32_t Anim_Play(const char *fn)
|
||||||
} while (running);
|
} while (running);
|
||||||
GLInterface.EnableNonTransparent255(false);
|
GLInterface.EnableNonTransparent255(false);
|
||||||
|
|
||||||
animvpx_print_stats(&codec);
|
#ifdef DEBUGGINGAIDS
|
||||||
|
animvpx_print_stats(&codec);
|
||||||
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
animvpx_restore_glstate();
|
animvpx_restore_glstate();
|
||||||
|
|
Loading…
Reference in a new issue