Apply startup GL state through renderer GL

This commit is contained in:
2026-06-03 05:41:27 +02:00
parent 692fe08d9f
commit b2335b1656
7 changed files with 159 additions and 19 deletions

View File

@@ -50,6 +50,26 @@ namespace {
return static_cast<GLenum>(pp::renderer::gl::scissor_test_state());
}
void enable_opengl_state(std::uint32_t state) noexcept
{
glEnable(static_cast<GLenum>(state));
}
void disable_opengl_state(std::uint32_t state) noexcept
{
glDisable(static_cast<GLenum>(state));
}
void set_opengl_blend_func(std::uint32_t source_factor, std::uint32_t destination_factor) noexcept
{
glBlendFunc(static_cast<GLenum>(source_factor), static_cast<GLenum>(destination_factor));
}
void set_opengl_blend_equation_separate(std::uint32_t color_equation, std::uint32_t alpha_equation) noexcept
{
glBlendEquationSeparate(static_cast<GLenum>(color_equation), static_cast<GLenum>(alpha_equation));
}
[[nodiscard]] GLint rgba8_internal_format() noexcept
{
return static_cast<GLint>(pp::renderer::gl::rgba8_internal_format());
@@ -389,19 +409,16 @@ void App::init()
// }
//}
const auto initial_state = pp::renderer::gl::panopainter_initial_state();
if (initial_state.depth_test_enabled)
glEnable(static_cast<GLenum>(initial_state.depth_test_state));
else
glDisable(static_cast<GLenum>(initial_state.depth_test_state));
App::I->apply_render_platform_hints();
glBlendFunc(
static_cast<GLenum>(initial_state.source_color_factor),
static_cast<GLenum>(initial_state.destination_color_factor));
glBlendEquationSeparate(
static_cast<GLenum>(initial_state.color_equation),
static_cast<GLenum>(initial_state.alpha_equation));
const auto startup_state_status = pp::renderer::gl::apply_panopainter_initial_state(
pp::renderer::gl::OpenGlStateDispatch {
.enable = enable_opengl_state,
.disable = disable_opengl_state,
.blend_func = set_opengl_blend_func,
.blend_equation_separate = set_opengl_blend_equation_separate,
});
if (!startup_state_status.ok())
LOG("OpenGL startup state failed: %s", startup_state_status.message);
});
int run_counter = Settings::value<Serializer::Integer>("run_counter") + 1;