增加下一步工作计划说明

This commit is contained in:
hyzboy 2019-05-05 01:28:01 +08:00
parent 977ee1327c
commit 2833bde9b8
4 changed files with 21 additions and 2 deletions

1
3rdpty/dl_yaml_cpp.sh Normal file
View File

@ -0,0 +1 @@
git clone https://github.com/jbeder/yaml-cpp.git

View File

@ -58,3 +58,4 @@ SET(ULRE ULRE.Base
${Vulkan_LIBRARY})
add_subdirectory(example)
add_executable(WIP WIP.cpp)

16
WIP.cpp Normal file
View File

@ -0,0 +1,16 @@
2019.05.05 00:27
Mesh类Renderable类不同
Mesh类提供原始的缓冲区数据与图元类型
Renderable提供可供Vulkan使用的缓冲区类型MESH的数据
使mesh就可以合并到一个Renderable中VBO
SceneNode提供当前节点的变换矩阵mesh
1.使yaml保存pipeline信息
2.scene数据文件
scene主体依然使用yaml描述
mesh,使

View File

@ -9,8 +9,9 @@ class VertexBuffer;
class IndexBuffer;
/**
* <br>
* Mesh信息
* <br>
* Mesh信息API使用的VBO数据MESH数据的集合</p>
* 使mesh就可以合并到一个Renderable中VBO
*/
class Renderable
{