代码改变世界

随笔档案-2012年8月7日

Direct3D 9学习笔记(5)颜色

2012-08-07 22:42 by Clingingboy, 398 阅读, 收藏,
摘要: 一.三个宏 // D3DCOLOR is equivalent to D3DFMT_A8R8G8B8#ifndef D3DCOLOR_DEFINEDtypedef DWORD D3DCOLOR;#define D3DCOLOR_DEFINED#endif// maps unsigned 8 bits/channel to D3DCOLOR#define D3DCOLOR_ARGB(a... 阅读全文

Direct3D 9学习笔记(4)基本顶点绘制呈现

2012-08-07 14:08 by Clingingboy, 821 阅读, 收藏,
摘要: http://www.cnblogs.com/Clingingboy/archive/2012/07/27/2611752.html 接上 六.绘制准备工作 为绘制流水线提供数据 Device->SetStreamSource(0, Triangle, 0, sizeof(Vertex));Device->SetFVF(Vertex::FVF);七.绘制图形bool Display... 阅读全文