diff options
author | Mark Janes <mark.a.janes@intel.com> | 2017-10-24 13:00:31 -0700 |
---|---|---|
committer | Mark Janes <mark.a.janes@intel.com> | 2017-11-27 11:24:28 -0800 |
commit | 696c1701df1c4c34eea9280767a77dd9185ae0f0 (patch) | |
tree | 57e52a626048369a0def17c7a84bd41e5fe00205 /retrace | |
parent | abf1804890ab25b00289834b60cd8d74c2a83c98 (diff) |
State: Support GL_BLEND
Diffstat (limited to 'retrace')
-rw-r--r-- | retrace/daemon/glframe_retrace_render.cpp | 87 |
1 files changed, 83 insertions, 4 deletions
diff --git a/retrace/daemon/glframe_retrace_render.cpp b/retrace/daemon/glframe_retrace_render.cpp index 5b2f3427..0b65508e 100644 --- a/retrace/daemon/glframe_retrace_render.cpp +++ b/retrace/daemon/glframe_retrace_render.cpp @@ -184,6 +184,7 @@ void RetraceRender::StateOverride::saveState() { for (auto i : m_overrides) { if (m_saved_state.find(i.first) != m_saved_state.end()) + // we have already saved the state continue; switch (glretrace::state_name_to_enum(i.first.name)) { case GL_CULL_FACE: @@ -199,6 +200,24 @@ RetraceRender::StateOverride::saveState() { m_saved_state[i.first] = cull; break; } + case GL_BLEND: + m_saved_state[i.first] = GlFunctions::IsEnabled(GL_BLEND); + assert(GL::GetError() == GL_NO_ERROR); + break; + case GL_BLEND_SRC: { + GLint s; + GlFunctions::GetIntegerv(GL_BLEND_SRC, &s); + assert(GL::GetError() == GL_NO_ERROR); + m_saved_state[i.first] = s; + break; + } + case GL_BLEND_DST: { + GLint s; + GlFunctions::GetIntegerv(GL_BLEND_DST, &s); + assert(GL::GetError() == GL_NO_ERROR); + m_saved_state[i.first] = s; + break; + } case GL_INVALID_ENUM: default: assert(false); @@ -222,18 +241,43 @@ RetraceRender::StateOverride::enact_state(const KeyMap &m) const { GL::GetError(); for (auto i : m) { switch (glretrace::state_name_to_enum(i.first.name)) { - case GL_CULL_FACE: + case GL_CULL_FACE: { if (i.second) GlFunctions::Enable(GL_CULL_FACE); else GlFunctions::Disable(GL_CULL_FACE); assert(GL::GetError() == GL_NO_ERROR); break; + } case GL_CULL_FACE_MODE: { GlFunctions::CullFace(i.second); assert(GL::GetError() == GL_NO_ERROR); break; } + case GL_BLEND: { + if (i.second) + GlFunctions::Enable(GL_BLEND); + else + GlFunctions::Disable(GL_BLEND); + assert(GL::GetError() == GL_NO_ERROR); + break; + } + case GL_BLEND_SRC: { + GLint dst; + GlFunctions::GetIntegerv(GL_BLEND_DST, &dst); + assert(GL::GetError() == GL_NO_ERROR); + GlFunctions::BlendFunc(i.second, dst); + assert(GL::GetError() == GL_NO_ERROR); + break; + } + case GL_BLEND_DST: { + GLint src; + GlFunctions::GetIntegerv(GL_BLEND_DST, &src); + assert(GL::GetError() == GL_NO_ERROR); + GlFunctions::BlendFunc(src, i.second); + assert(GL::GetError() == GL_NO_ERROR); + break; + } case GL_INVALID_ENUM: default: assert(false); @@ -547,12 +591,11 @@ RetraceRender::onState(SelectionId selId, GLenum e = GL::GetError(); if (e == GL_NO_ERROR) { callback->onState(selId, experimentCount, renderId, - StateKey("Rendering", "Cull State", "CULL_FACE"), + StateKey("Rendering", "Cull State", "GL_CULL_FACE"), cull_enabled ? "true" : "false"); } } { - GL::GetError(); GLint cull; GlFunctions::GetIntegerv(GL_CULL_FACE_MODE, &cull); GLenum e = GL::GetError(); @@ -561,7 +604,43 @@ RetraceRender::onState(SelectionId selId, if (cull_str.size() > 0) { callback->onState(selId, experimentCount, renderId, StateKey("Rendering", "Cull State", - "CULL_FACE_MODE"), cull_str); + "GL_CULL_FACE_MODE"), cull_str); + } + } + } + { + GL::GetError(); + GLboolean enabled = GlFunctions::IsEnabled(GL_BLEND); + GLenum e = GL::GetError(); + if (e == GL_NO_ERROR) { + callback->onState(selId, experimentCount, renderId, + StateKey("Rendering", "Blend State", "GL_BLEND"), + enabled ? "true" : "false"); + } + } + { + GLint s; + GlFunctions::GetIntegerv(GL_BLEND_SRC, &s); + GLenum e = GL::GetError(); + if (e == GL_NO_ERROR) { + const std::string state_str = state_enum_to_name(s); + if (state_str.size() > 0) { + callback->onState(selId, experimentCount, renderId, + StateKey("Rendering", "Blend State", + "GL_BLEND_SRC"), state_str); + } + } + } + { + GLint s; + GlFunctions::GetIntegerv(GL_BLEND_DST, &s); + GLenum e = GL::GetError(); + if (e == GL_NO_ERROR) { + const std::string state_str = state_enum_to_name(s); + if (state_str.size() > 0) { + callback->onState(selId, experimentCount, renderId, + StateKey("Rendering", "Blend State", + "GL_BLEND_DST"), state_str); } } } |