个人原创,欢迎转载,转载请注明原文地址http://blog.csdn.net/bill_man上一篇介绍了QUAD_COMMAND渲染命令,顺带介绍了VAO和VBO,这一篇介绍批处理渲染命令BatchCommand,批处理命令的处理在Render中比较简单else if(commandType == RenderCommand::Type:: BATCH_COMMAND)
{
//将之...
分类:
其他好文 时间:
2014-08-15 21:10:49
阅读次数:
236
在Mac OS中,有非常方便的截屏快捷键:? Command-Shift-3: 对整个屏幕截屏,图片会保存的一个文件中(默认保存的桌面上)? Command-Ctrl-Shift-3: 对整个屏幕截屏,图片被保存到剪贴板(夹纸板)中。? Comman...
分类:
其他好文 时间:
2014-08-15 09:35:48
阅读次数:
215
I find these commands quite helpful — maybe you know them already — if not, here you go:Microsoft Hotfix Installer (.exe)setup.exe /t:C: /cMicrosoft U...
分类:
其他好文 时间:
2014-08-15 04:01:46
阅读次数:
388
301.Which command is used to configure RMAN to perform a compressed backup for every backupexecuted?A. BACKUP AS COMPRESSED BACKUPSET DATABASEB. BACKU...
分类:
其他好文 时间:
2014-08-14 23:22:36
阅读次数:
393
准备文件如下:1.CentOS-6.4-x86_64-bin-DVD1.iso2.jdk-7u67-linux-x64.rpm3.apache-tomcat-7.0.55.tar.gz安装步骤如下:一、安装JDK[root@n1 /]# java -versionbash: java: command not found[root@n1 /]# rpm -ivh /soft/jdk-7u67-li...
分类:
其他好文 时间:
2014-08-14 14:09:08
阅读次数:
254
Symptoms The command "opatch lsinventory" reports the error: OUI-67076:OracleHomeInventory was not able to create a lock file, probably due to a failed OPatch Session. The loaded inventory might not ...
分类:
数据库 时间:
2014-08-14 14:08:18
阅读次数:
398
先来看ThreadPoolExecutor的execute方法,这个方法能体现出一个Task被加入到线程池之后都发生了什么: public void execute(Runnable command) { if (command == null) throw...
分类:
编程语言 时间:
2014-08-14 13:24:48
阅读次数:
262
如何跳转到上一次编辑的位置,即如何跳到上一个光标所在的位置?intellij:Command+Alt+左方向键:上一光标的位置Command+Alt+右方向键:下一光标的位置定位到最后编辑位置 Ctrl?+?Shift?+?Backspaceeclipse中:ALT+左方向键:上一光标的位置ALT+...
分类:
系统相关 时间:
2014-08-14 03:44:17
阅读次数:
378
第一步是下载框架windows下然后 打开yiic.bat默认的是 PHP_COMMAND=php.exe建议修改为PHP_COMMAND=E:\wamp\bin\php\php5.4.16\php.exe (E:\wamp\bin\php\php5.4.16\php.exe)红色的为你php.ex...
分类:
Web程序 时间:
2014-08-13 18:29:37
阅读次数:
250
concurrent包中Executor接口的主要类的关系图如下:Executor接口非常单一,就是执行一个Runnable的命令。public interface Executor { void execute(Runnable command);}ExecutorService接口扩展了E...
分类:
编程语言 时间:
2014-08-13 17:44:56
阅读次数:
220