diff --git a/ReadMe.md b/ReadMe.md index 18576e3..dcc37bd 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -10,6 +10,22 @@ 3. 支持模型的PBR材质渲染 4. 使用基于IBL的环境光照 +#### 展示 + +展示使用录制的GIF并转换为animated webp,存在**画质损失**,仅供参考 + +详细效果建议在[版本发布](https://gitea.inksoul.top/inksoul/plumageRender/releases)中下载源代码.zip(包含模型和shader) + +基本效果: + +![](https://lychee.inksoul.top/uploads/original/89/da/d86494fba46e10636a4fd66fe004.webp) + +--- + +动画: + +![](https://lychee.inksoul.top/uploads/original/39/56/ec512b70f1da4cf0771bcc38a6b9.webp) + #### 下一步计划(等待研究生考试结束) 1. 引入spdlog日志库,细化日志(正在做) diff --git a/data/Visually Lossless Content and Motion Adaptive Shading in Games.pdf b/data/Visually Lossless Content and Motion Adaptive Shading in Games.pdf deleted file mode 100644 index 0e9f1af..0000000 Binary files a/data/Visually Lossless Content and Motion Adaptive Shading in Games.pdf and /dev/null differ diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 5c07d5b..52e88ec 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,7 +1,7 @@ # Function for building single homework function(buildHomework HOMEWORK_NAME) SET(HOMEWORK_FOLDER ${CMAKE_CURRENT_SOURCE_DIR}/${HOMEWORK_NAME}) - message(STATUS "Generating project file for homework in ${HOMEWORK_FOLDER}") + message(STATUS "Generating project file in ${HOMEWORK_FOLDER}") # Main file(GLOB SOURCE *.cpp ${BASE_HEADERS} ${HOMEWORK_FOLDER}/*.cpp) SET(MAIN_CPP ${HOMEWORK_FOLDER}/${HOMEWORK_NAME}.cpp ) diff --git a/src/render/render.cpp b/src/render/render.cpp index c949dc4..0f1d233 100644 --- a/src/render/render.cpp +++ b/src/render/render.cpp @@ -220,7 +220,7 @@ PlumageRender::PlumageRender() const std::string assetpath = getAssetPath(); if (_access(assetpath.c_str(),0) != 0) { - std::string msg = "Could not locate asset path in \"" + assetpath + "\".\nMake sure binary is run from correct relative directory!"; + std::string msg = "Could not locate asset path in \"" + assetpath + "\".\nMake sure binary is running from correct relative directory!"; std::cerr << msg << std::endl; system("pause"); //exit(-1);