Changeset 785333b in opengl-game for vulkan-game.cpp


Ignore:
Timestamp:
Dec 5, 2019, 4:08:17 PM (5 years ago)
Author:
Dmitry Portnoy <dmitry.portnoy@…>
Branches:
feature/imgui-sdl, master, points-test
Children:
2b40f48
Parents:
055750a
Message:

Setup debug environment for ship shader lighting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vulkan-game.cpp

    r055750a r785333b  
    268268   // TODO: With the normals, indexing basically becomes pointless since no vertices will have exactly
    269269   // the same data. Add an option to make some pipelines not use indexing
     270   /*
    270271   shipPipeline.addObject(addVertexNormals<ShipVertex>({
    271272         //back
     
    495496         135, 136, 137,
    496497      }, commandPool, graphicsQueue);
     498   */
     499
     500   // z-range is 0 to 1, with +1 pointing into the screen
     501   shipPipeline.addObject(addVertexNormals<ShipVertex>({
     502         {{  0.5f,  -0.5f,   0.5f}, {0.0f, 0.6f, 0.0f}},
     503         {{ -0.5f,  -0.5f,   0.5f}, {0.0f, 0.6f, 0.0f}},
     504         {{ -0.5f,   0.5f,   0.5f}, {0.0f, 0.6f, 0.0f}},
     505         {{  0.5f,  -0.5f,   0.5f}, {0.0f, 0.6f, 0.0f}},
     506         {{ -0.5f,   0.5f,   0.5f}, {0.0f, 0.6f, 0.0f}},
     507         {{  0.5f,   0.5f,   0.5f}, {0.0f, 0.6f, 0.0f}},
     508
     509         {{  0.3f,  -0.3f,   0.3f}, {0.0f, 0.0f, 0.7f}},
     510         {{ -0.3f,  -0.3f,   0.3f}, {0.0f, 0.0f, 0.7f}},
     511         {{ -0.3f,   0.3f,   0.3f}, {0.0f, 0.0f, 0.7f}},
     512         {{  0.3f,  -0.3f,   0.3f}, {0.0f, 0.0f, 0.7f}},
     513         {{ -0.3f,   0.3f,   0.3f}, {0.0f, 0.0f, 0.7f}},
     514         {{  0.3f,   0.3f,   0.3f}, {0.0f, 0.0f, 0.7f}},
     515   }), {
     516         0,   1,   2,   3,   4,   5,
     517         6,   7,   8,   9,   10,   11,
     518   }, commandPool, graphicsQueue);
    497519
    498520   shipPipeline.createDescriptorSetLayout();
Note: See TracChangeset for help on using the changeset viewer.