| 530 | return CheckTableValue<int>(L, index, name, default_value); |
| 531 | } |
| 532 | static float CheckTableNumber(lua_State* L, int index, const char* name, float default_value) |
| 533 | { |
| 534 | return CheckTableValue<float>(L, index, name, default_value); |
| 535 | } |
| 536 | |
| 537 | static inline bool IsTextureFormatSupported(dmGraphics::TextureType type) |
| 538 | { |