@@ -107,7 +107,7 @@ struct PushConstant {
107
107
#endif // LAB_TASK_LEVEL >= LAB_TASK_REFLECTIONS
108
108
};
109
109
110
- class HelloTriangleApplication {
110
+ class VulkanRaytracingApplication {
111
111
public:
112
112
void run () {
113
113
initWindow ();
@@ -237,7 +237,7 @@ class HelloTriangleApplication {
237
237
}
238
238
239
239
static void framebufferResizeCallback (GLFWwindow* window, int width, int height) {
240
- auto app = static_cast <HelloTriangleApplication *>(glfwGetWindowUserPointer (window));
240
+ auto app = static_cast <VulkanRaytracingApplication *>(glfwGetWindowUserPointer (window));
241
241
app->framebufferResized = true ;
242
242
}
243
243
@@ -304,7 +304,7 @@ class HelloTriangleApplication {
304
304
}
305
305
306
306
void createInstance () {
307
- constexpr vk::ApplicationInfo appInfo{ .pApplicationName = " Hello Triangle " ,
307
+ constexpr vk::ApplicationInfo appInfo{ .pApplicationName = " Vulkan Tutorial Ray Tracing " ,
308
308
.applicationVersion = VK_MAKE_VERSION ( 1 , 0 , 0 ),
309
309
.pEngineName = " No Engine" ,
310
310
.engineVersion = VK_MAKE_VERSION ( 1 , 0 , 0 ),
@@ -1959,7 +1959,7 @@ class HelloTriangleApplication {
1959
1959
1960
1960
int main () {
1961
1961
try {
1962
- HelloTriangleApplication app;
1962
+ VulkanRaytracingApplication app;
1963
1963
app.run ();
1964
1964
} catch (const std::exception& e) {
1965
1965
std::cerr << e.what () << std::endl;
0 commit comments