diff --git a/src/Application.cpp b/src/Application.cpp index 1c9c409..76f73f7 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -94,15 +94,42 @@ void Application::Launch() // Render ImGui window ImGui::Begin("Julia Set Properties"); + ImGui::AlignTextToFramePadding(); ImGui::SliderInt("Max Iterations", (int*)&props.maxIterations, 10, 1000); ImGui::SliderFloat("Color Threshold", &props.iterationColorCutoff, 10, 1000); ImGui::SliderInt("Texture Width", (int*)&props.textureWidth, 480, 2560); - ImGui::SliderFloat2("c", props.c, -1.5f, 1.5f); + if (ImGui::Button(props.isPolar ? "Polar" : "Cartesian")) + props.isPolar = !props.isPolar; + if (!props.isPolar) + { + ImGui::SliderFloat("c (x)", &props.c[0], -1.5f, 1.5); + ImGui::SliderFloat("c (y)", &props.c[1], -1.5f, 1.5); + } + else + { + ImGui::SliderFloat("c (r)", &props.c[0], 0, 2.0f); + ImGui::SliderFloat("c (phi)", &props.c[1], 0, 3.1415926535f * 2.0f); + } + + ImGui::Separator(); + + // Danger zone + ImGui::PushStyleColor(ImGuiCol_Text, ImVec4(1.0f, 0.1f, 0.1f, 1.0f)); + ImGui::TextWrapped("Clicking the following button will set the compute shader precision to double. Depending on the other parameters this can lead to an extremely expensive workload that will lag the app in the best case, or timeout your GPU in the worst case."); + ImGui::PopStyleColor(); + + ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(1.0f, 0.25f, 0.25f, 1.0f)); + ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImVec4(1.0f, 0.35f, 0.35f, 1.0f)); + ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImVec4(1.0f, 0.1f, 0.1f, 1.0f)); if (ImGui::Button(props.doublePrecision ? "Double Precision" : "Single Precision")) props.doublePrecision = !props.doublePrecision; + ImGui::PopStyleColor(); + ImGui::PopStyleColor(); + ImGui::PopStyleColor(); + ImGui::Separator(); diff --git a/src/Canvas.cpp b/src/Canvas.cpp index 6464e68..bab19ce 100644 --- a/src/Canvas.cpp +++ b/src/Canvas.cpp @@ -26,6 +26,7 @@ Canvas::Canvas() : properties.c[0] = -0.835; properties.c[1] = -0.2321; properties.doublePrecision = false; + properties.isPolar = false; CreateVertexArrayObject(); CreateShaderProgram(); @@ -96,9 +97,21 @@ void Canvas::CalculateJuliaSet() computeShader.Use(); // Set uniforms for shader + float c[2]; + if (!properties.isPolar) + { + c[0] = properties.c[0]; + c[1] = properties.c[1]; + } + else + { + c[0] = properties.c[0] * cosf(properties.c[1]); + c[1] = properties.c[0] * sinf(properties.c[1]); + } + glUniform2f(1, properties.xBounds[0], properties.xBounds[1]); glUniform2f(2, yMin, yMax); - glUniform2f(3, properties.c[0], properties.c[1]); + glUniform2f(3, c[0], c[1]); glUniform1i(4, properties.maxIterations); glUniform1f(5, properties.iterationColorCutoff); diff --git a/src/Canvas.hpp b/src/Canvas.hpp index afad46b..3bdeeb7 100644 --- a/src/Canvas.hpp +++ b/src/Canvas.hpp @@ -13,6 +13,7 @@ struct JuliaProperties uint32_t textureWidth; float c[2]; bool doublePrecision; + bool isPolar; }; struct WorkProperties