Skip to content
Snippets Groups Projects

Add lerp alpha helpers to transform

Merged Jonathan Kunstwald requested to merge feature/extend-pipeline-viewer into develop
2 files
+ 13
0
Compare changes
  • Side-by-side
  • Inline
Files
2
#pragma once
#if __cplusplus >= 201703L
#define GLOW_WARN_UNUSED [[nodiscard]]
#else
#ifdef GLOW_COMPILER_MSVC
#define GLOW_WARN_UNUSED
#else
#define GLOW_WARN_UNUSED __attribute__((warn_unused_result))
#endif
#endif
Loading