Remove Android nanort overlay

This commit is contained in:
2026-06-12 20:23:23 +02:00
parent 876d19f481
commit 648404eec6
8 changed files with 49 additions and 37 deletions

View File

@@ -29,6 +29,12 @@ inline std::uint32_t query_opengl_error() noexcept
return static_cast<std::uint32_t>(glGetError());
}
#if defined(__ANDROID__)
inline bool has_opengl_debug_message_callback() noexcept
{
return false;
}
#else
inline bool has_opengl_debug_message_callback() noexcept
{
return glDebugMessageCallback != nullptr;
@@ -38,6 +44,7 @@ inline void install_opengl_debug_message_callback(GLDEBUGPROC callback, const vo
{
glDebugMessageCallback(callback, user_param);
}
#endif
inline pp::renderer::gl::OpenGlRuntimeInfoDispatch runtime_info_dispatch() noexcept
{