Implemented basic containers and ref pointers

This commit is contained in:
HOEGLER Stefan
2020-02-25 00:45:20 +01:00
parent 4c491a9378
commit a14237d6ce
31 changed files with 1212 additions and 36 deletions
+4 -1
View File
@@ -7,6 +7,7 @@
#include <vulkan/vulkan.h>
#include <glm/vec4.hpp>
#include <GLFW/glfw3.h>
#include "Graphics/Graphics.h"
/////////////////////////////////////////////////////////////
// gps coordinate
@@ -44,7 +45,7 @@ int main() {
// create class instance
const gps_position g(35, 59, 24.567f);
// save data to archive
// save _data to archive
{
boost::archive::text_oarchive oa(ofs);
// write class instance to archive
@@ -65,7 +66,9 @@ int main() {
std::cout << "Hello World! " << std::endl;
VkInstance instance;
glm::vec4 vector(0, 1, 0, 1);
Seele::Graphics& graphics = Seele::Graphics::getInstance();
std::cout << vector.y << std::endl;
std::cout << glfwInit() << std::endl;
return 0;
}