| 296 | } |
| 297 | |
| 298 | static void NullResizeWindow(HContext _context, uint32_t width, uint32_t height) |
| 299 | { |
| 300 | assert(_context); |
| 301 | NullContext* context = (NullContext*) _context; |
| 302 | if (dmPlatform::GetWindowStateParam(context->m_BaseContext.m_Window, WINDOW_STATE_OPENED)) |
| 303 | { |
| 304 | dmPlatform::SetWindowSize(context->m_BaseContext.m_Window, width, height); |
| 305 | } |
| 306 | } |
| 307 | |
| 308 | static void NullGetDefaultTextureFilters(HContext _context, TextureFilter& out_min_filter, TextureFilter& out_mag_filter) |
| 309 | { |
nothing calls this directly
no test coverage detected