diff --git a/attachments/38_ray_tracing.cpp b/attachments/38_ray_tracing.cpp index 0c4b6f3e..c925c618 100644 --- a/attachments/38_ray_tracing.cpp +++ b/attachments/38_ray_tracing.cpp @@ -108,7 +108,7 @@ struct PushConstant { #endif // LAB_TASK_LEVEL >= LAB_TASK_REFLECTIONS }; -class HelloTriangleApplication { +class VulkanRaytracingApplication { public: void run() { initWindow(); @@ -238,7 +238,7 @@ class HelloTriangleApplication { } static void framebufferResizeCallback(GLFWwindow* window, int width, int height) { - auto app = static_cast(glfwGetWindowUserPointer(window)); + auto app = static_cast(glfwGetWindowUserPointer(window)); app->framebufferResized = true; } @@ -305,7 +305,7 @@ class HelloTriangleApplication { } void createInstance() { - constexpr vk::ApplicationInfo appInfo{ .pApplicationName = "Hello Triangle", + constexpr vk::ApplicationInfo appInfo{ .pApplicationName = "Vulkan Tutorial Ray Tracing", .applicationVersion = VK_MAKE_VERSION( 1, 0, 0 ), .pEngineName = "No Engine", .engineVersion = VK_MAKE_VERSION( 1, 0, 0 ), @@ -1960,7 +1960,7 @@ class HelloTriangleApplication { int main() { try { - HelloTriangleApplication app; + VulkanRaytracingApplication app; app.run(); } catch (const std::exception& e) { std::cerr << e.what() << std::endl;