摘要:
template < typename TO, typename FROM > inline TO union_cast( FROM value ) { union { FROM from; TO to; } convert; convert.from = value; return convert 阅读全文
摘要:
Link to StackOverflow: Why does the C++ map type argument require an empty constructor when using [] by Nick Bolton? Q: Not a major issue, just annoyi 阅读全文
摘要:
Entitas Learning Document You can find Entitas project in there "Entitas for Unity Github" There are a short, simple introduction for new in Entitas F 阅读全文
摘要:
Compiler Error C2719 'parameter': formal parameter with __declspec(align(' ')) won't be aligned The align __declspec modifier is not permitted on func 阅读全文
摘要:
[TOC] Loads the shader files and makes it usable to DirectX and the GPU 加载着色器文件并使其可用于DirectX和GPU Now we will start with one of the more important func 阅读全文