上一页 1 2 3 4 5 6 7 8 ··· 11 下一页

2017年4月6日

shader 的含义

摘要: 原文 Shaders are the modern way of doing 3D graphics. In a way you could claim that this is a step back as most of the 3D functionality that was provide 阅读全文

posted @ 2017-04-06 14:46 齐文宣 阅读(311) 评论(0) 推荐(0)

调试console程序时,设置argc and argv

摘要: Result is : 阅读全文

posted @ 2017-04-06 13:04 齐文宣 阅读(253) 评论(0) 推荐(0)

2016年1月21日

构造函数 explicit 关键字的作用, from stackoverflow

摘要: In C++, the compiler is allowed to make one implicit conversion to resolve the parameters to a function. What this means is that the compiler can use ... 阅读全文

posted @ 2016-01-21 20:52 齐文宣 阅读(192) 评论(0) 推荐(0)

2016年1月15日

windows 系统 安装 net-snmp 并成功运行命令的步骤

摘要: 1 : 64位机器, 下载 net-snmp-5.5.0-2.x64.exe , 安装2 : 控制面板, services ----> 找到 snmp services , property ---->security ,手动添加 community : public --- READ ONLY3 ... 阅读全文

posted @ 2016-01-15 20:08 齐文宣 阅读(3177) 评论(0) 推荐(0)

2015年12月29日

CTBCAFBridge hpp 和 cpp 文件分析

摘要: hpp 文件typedef class CTBCAFBridge *PCTBCAFBridge;class TBCAF_API CTBCAFBridge : public CTBCAFCallFlow{public:/*----------------------------------------... 阅读全文

posted @ 2015-12-29 10:30 齐文宣 阅读(315) 评论(0) 推荐(0)

2015年11月30日

如何编译调试 ogre tutorial 程序 . 1.8.1 版本

摘要: 基类 : BaseApplication.h/*-----------------------------------------------------------------------------Filename: BaseApplication.h-------------------... 阅读全文

posted @ 2015-11-30 10:38 齐文宣 阅读(488) 评论(0) 推荐(0)

2015年11月27日

windows 8 编译 Ogre 1.8.1 的方法

摘要: 1 : 在网站下载名为 : ogre_src_v1-8-1.exe 的7z文件2 : 下载这个 dependencies 文件, 注意不要下载 precompile 的Dependencies Source Repository with CMake build system 29 Septembe... 阅读全文

posted @ 2015-11-27 16:47 齐文宣 阅读(228) 评论(0) 推荐(0)

2015年5月14日

在 TB1 机器上编译并调试 TB 自带sample的方法

摘要: 1 : VS 2012 打开dsp项目文件2 : 选择release编译 , 在 项目property -----> c++ ------> preprocessor 加 _XKEYCHECK_H3 : Linker ----> Input 改为kernel32.libuser32.libgdi32... 阅读全文

posted @ 2015-05-14 13:02 齐文宣 阅读(414) 评论(0) 推荐(0)

2015年5月11日

C++编译错误 fatal error C1189: #error : The C++ Standard Library forbids macroizing keywords. Enable warning

摘要: 解决方法 :属性--配置属性-c/c++-预处理器 添加_XKEYCHECK_H 阅读全文

posted @ 2015-05-11 16:43 齐文宣 阅读(6762) 评论(0) 推荐(0)

2015年4月28日

c++生成随机数

摘要: #include #include #include void main(){ int min = 10; int max = 30; srand ( time(NULL) ); int output = min + (rand() % (int)(max - min + ... 阅读全文

posted @ 2015-04-28 09:11 齐文宣 阅读(180) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 7 8 ··· 11 下一页

导航