diff --git a/Makefile b/Makefile index 8c88b21..c06b349 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ DEBUGFLAGS=-DDEBUG SRC=$(shell find . -name *.cpp) OBJ=$(SRC:%.cpp=%.o) -BIN=build/placeholderengine +BIN=build/agnosiaengine .PHONY: all diff --git a/README.md b/README.md index 9f7da82..f0ac7e2 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# PlaceholderNameEngine +# Agnosia Engine ## Goals diff --git a/src/main.cpp b/src/main.cpp index cb246ce..66c7dfd 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -17,7 +17,7 @@ class TriangleTestApplication { const uint32_t WIDTH = 800; const uint32_t HEIGHT = 600; - #ifdef DEBUG + #ifdef DEBUG const bool enableValidationLayers = true; #else const bool enableValidationLayers = false; @@ -63,7 +63,7 @@ private: appInfo.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO; // Tell vulkan that appInfo is a Application Info structure appInfo.pApplicationName = "Triangle Test"; // Give the struct a name to use appInfo.applicationVersion = VK_MAKE_VERSION(1,0,0); // Create a Major Minor Patch version number for the application! - appInfo.pEngineName = "No Engine"; // Give an internal name for the engine running + appInfo.pEngineName = "Agnosia Engine"; // Give an internal name for the engine running appInfo.engineVersion = VK_MAKE_VERSION(1,0,0); // Similar to the App version, give vulkan an *engine* version appInfo.apiVersion = VK_API_VERSION_1_0; // Tell vulkan what the highest API version we will allow this program to run on