lua_RenderStateDepthFunction.h 392 B

123456789101112131415
  1. #ifndef LUA_RENDERSTATEDEPTHFUNCTION_H_
  2. #define LUA_RENDERSTATEDEPTHFUNCTION_H_
  3. #include "RenderState.h"
  4. namespace gameplay
  5. {
  6. // Lua bindings for enum conversion functions for RenderState::DepthFunction.
  7. RenderState::DepthFunction lua_enumFromString_RenderStateDepthFunction(const char* s);
  8. const char* lua_stringFromEnum_RenderStateDepthFunction(RenderState::DepthFunction e);
  9. }
  10. #endif