Changeset b8777b7 in opengl-game for vulkan-game.hpp
- Timestamp:
- Nov 16, 2019, 8:38:22 PM (5 years ago)
- Branches:
- feature/imgui-sdl, master, points-test
- Children:
- 5a0242e
- Parents:
- cd487fb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vulkan-game.hpp
rcd487fb rb8777b7 15 15 #endif 16 16 17 // TODO: Figure out if these structs should be defined in the VulkanGame class 18 19 struct Vertex { 17 struct ModelVertex { 20 18 glm::vec3 pos; 21 19 glm::vec3 color; … … 40 38 GameGui* gui; 41 39 42 vector<GraphicsPipeline_Vulkan> graphicsPipelines; 40 GraphicsPipeline_Vulkan<ModelVertex> modelPipeline; 41 GraphicsPipeline_Vulkan<OverlayVertex> overlayPipeline; 43 42 44 43 SDL_version sdlVersion;
Note:
See TracChangeset
for help on using the changeset viewer.