Changeset 7d2b0b9 in opengl-game for vulkan-game.cpp
- Timestamp:
- Oct 3, 2019, 3:44:55 AM (5 years ago)
- Branches:
- feature/imgui-sdl, master, points-test
- Children:
- 3de31cf
- Parents:
- 4d84c72
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vulkan-game.cpp
r4d84c72 r7d2b0b9 105 105 createRenderPass(); 106 106 createCommandPool(); 107 108 graphicsPipelines.push_back(GraphicsPipeline_Vulkan(device)); 109 graphicsPipelines.back().createPipeline("shaders/scene-vert.spv", "shaders/scene-frag.spv"); 110 111 graphicsPipelines.push_back(GraphicsPipeline_Vulkan(device)); 112 graphicsPipelines.back().createPipeline("shaders/overlay-vert.spv", "shaders/overlay-frag.spv"); 113 114 cout << "Created " << graphicsPipelines.size() << " graphics pipelines" << endl; 107 115 } 108 116
Note:
See TracChangeset
for help on using the changeset viewer.