上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 30 下一页
摘要: cmake .. -DCMAKE_INSTALL_PREFIX=D:/path/x64/release cmake --build . --config Release --target install cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_SHAR 阅读全文
posted @ 2022-11-30 09:14 fndefbwefsowpvqfx 阅读(15) 评论(0) 推荐(0) 编辑
摘要: C++ CppCon CppNow Meeting Cpp CppNorth cpponsea ACCU Conference CoreCppIl code::dive Conference cppcast CG GDC Digital Dragons ACMSIGGRAPH The Khronos 阅读全文
posted @ 2022-10-21 16:50 fndefbwefsowpvqfx 阅读(21) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2022.cnblogs.com/blog/859364/202209/859364-20220927174054784-784649902.png) 阅读全文
posted @ 2022-09-27 17:41 fndefbwefsowpvqfx 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 1 Algorithm Data Structure Spatial Partitioning Foundations of Multidimensional and Metric Data Structures- Hanan Samet File Organization and Processi 阅读全文
posted @ 2022-09-07 22:04 fndefbwefsowpvqfx 阅读(77) 评论(0) 推荐(0) 编辑
摘要: more: 肖国栋的i自留地 阅读全文
posted @ 2022-08-26 08:07 fndefbwefsowpvqfx 阅读(17) 评论(0) 推荐(0) 编辑
摘要: Ordered struct node{ int price; int weight; node(int p, int w):price(p), weight(w) {} //Note //1 define as Member function //2 const reference paramet 阅读全文
posted @ 2022-07-30 22:42 fndefbwefsowpvqfx 阅读(50) 评论(0) 推荐(0) 编辑
摘要: choko https://chocolatey.org/install https://github.com/dahlbyk/posh-git/ choco install poshgit choco install oh-my-posh path vscode, termial 都有配置 C:\ 阅读全文
posted @ 2022-07-20 15:02 fndefbwefsowpvqfx 阅读(48) 评论(0) 推荐(0) 编辑
摘要: * * * * * * 阅读全文
posted @ 2022-07-06 11:21 fndefbwefsowpvqfx 阅读(81) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2022.cnblogs.com/blog/859364/202207/859364-20220704160932211-286769266.png) 阅读全文
posted @ 2022-07-04 16:10 fndefbwefsowpvqfx 阅读(8) 评论(0) 推荐(0) 编辑
摘要: What is it about shaders that even potentially makes if statements performance problems? It has to do with how shaders get executed and where GPUs get 阅读全文
posted @ 2022-05-31 10:49 fndefbwefsowpvqfx 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 加密算法 rsa - an old algorithm based on the difficulty of factoring large numbers. A key size of at least 2048 bits is recommended for RSA; 4096 bits is 阅读全文
posted @ 2022-05-22 17:07 fndefbwefsowpvqfx 阅读(52) 评论(0) 推荐(0) 编辑
摘要: nasm -f win64 fact.asm default rel bits 64 segment .text global factorial ; Define constants to refer to the function arguments as offsets from RSP/RB 阅读全文
posted @ 2022-05-19 21:49 fndefbwefsowpvqfx 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 命令行编译.sln MSBuild Sample.sln /t:Clean /p:Configuration=Debug /p:Platform=x64 MSBuild Sample.sln /t:Rebuild /p:Configuration=Debug /p:Platform=x64 MSBu 阅读全文
posted @ 2022-05-12 23:01 fndefbwefsowpvqfx 阅读(26) 评论(0) 推荐(0) 编辑
摘要: A link library is a file containing procedures (subroutines) that have been assembled into machine code. A link library begins as one or more source f 阅读全文
posted @ 2022-05-12 22:59 fndefbwefsowpvqfx 阅读(28) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2022.cnblogs.com/blog/859364/202205/859364-20220512191353547-143969140.png) ![](https://img2022.cnblogs.com/blog/859364/202205/859364-20220512191403713-1740927262.png) ![](https://img20 阅读全文
posted @ 2022-05-12 19:18 fndefbwefsowpvqfx 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 1. 生成构建工具 bootstrap 2. 查看有哪些库需要构建 .\b2 --show-libraries 3. build,指定install lib, include的路径,把不需要的库剔除 .\b2 install --build-dir=./build variant=debug add 阅读全文
posted @ 2022-05-05 16:50 fndefbwefsowpvqfx 阅读(32) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2022.cnblogs.com/blog/859364/202205/859364-20220505102540775-1136589447.png) 阅读全文
posted @ 2022-05-05 10:26 fndefbwefsowpvqfx 阅读(19) 评论(0) 推荐(0) 编辑
摘要: /Gw Enables whole-program global data optimization. /GL Whole program optimization The /Ox compiler option is the same as using the following options 阅读全文
posted @ 2022-04-28 12:30 fndefbwefsowpvqfx 阅读(93) 评论(0) 推荐(0) 编辑
摘要: import bpy import random # Clear all nodes in a mat def clear_material( material ): if material.node_tree: material.node_tree.links.clear() material.n 阅读全文
posted @ 2022-04-26 19:17 fndefbwefsowpvqfx 阅读(29) 评论(0) 推荐(0) 编辑
摘要: import bpy import random # Clear all nodes in a mat def clear_material( material ): if material.node_tree: material.node_tree.links.clear() material.n 阅读全文
posted @ 2022-04-26 19:16 fndefbwefsowpvqfx 阅读(54) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 30 下一页