shensunbo Blog

「离开世界之前 一切都是过程」

assimp

下载 对于x86版本,可以直接下载release的版本 使用问题 aiProcess_PreTransformVertices flag cause meshes to merge, need manually perform coordinate transformation aiProcess_ValidateDataStructure will automatica...
人赞过

bazel learn

bazel 基本规则 BUILD 文件: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 // 编译依赖项 cc_library( name = "test"...
人赞过

将qnx编译方式由qcc修改为gcc

qnx.nto.toolchain.cmake, 在这个文件中 1 2 3 set(CMAKE_C_COMPILER ${QNX_HOST}/usr/bin/qcc) set(CMAKE_CXX_COMPILER ${QNX_HOST}/usr/bin/q++) set(CMAKE_ASM_COMPILER ${QNX_HOST}/usr/bin/qcc) c...
人赞过

blender 注意事项

blender在导出fbx的时候,会自动将属性一模一样的材质合并 导出fbx blender中模型的z轴坐标为0,但导出fbx后使用assimp加载,一直是y轴坐标是0。 forward: -Z; Up: Y; 取消勾选Use Space Transform; TODO
人赞过

gcov todo

// GCOVR_EXCL_LINE //GCOVR_EXCL_START //GCOVR_EXCL_STOP
人赞过

english corner organized by me record

20250411 travel experiences 20250418 the book you want to recommend 20250425 good and bad feelings this week
人赞过

delay Record

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69...
人赞过

json.hpp

人赞过

memcpy优化失败

尝试了多种方式,仍然无法明显优化memcpy的拷贝速度,memcpy应该是已经高度优化过的了 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 ...
人赞过

修改gerrit的review意见

直接在网页上修改 使用git修改 git fetch origin [git checkout <change-id>] git add . git commit --amend git push origin HEAD:refs/for/branch
人赞过