Update some internal names
This commit is contained in:
parent
47ad14f028
commit
8d7cbb27c7
2
Makefile
2
Makefile
@ -4,7 +4,7 @@ DEBUGFLAGS=-DDEBUG
|
|||||||
SRC=$(shell find . -name *.cpp)
|
SRC=$(shell find . -name *.cpp)
|
||||||
OBJ=$(SRC:%.cpp=%.o)
|
OBJ=$(SRC:%.cpp=%.o)
|
||||||
|
|
||||||
BIN=build/placeholderengine
|
BIN=build/agnosiaengine
|
||||||
|
|
||||||
|
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
|
@ -63,7 +63,7 @@ private:
|
|||||||
appInfo.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO; // Tell vulkan that appInfo is a Application Info structure
|
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.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.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.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
|
appInfo.apiVersion = VK_API_VERSION_1_0; // Tell vulkan what the highest API version we will allow this program to run on
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user