2005-02-21から1日間の記事一覧

シェーダ

http://www.daionet.gr.jp/~masa/rthdribl/ http://www001.upp.so-net.ne.jp/y_yutaka/labo/directx/shader_hlsl.html ここのサンプルを試したところ、 私のマシンはハードが対応していないようです

directx9学習(複数モデル表示)

モデル表示位置指定 VOID SetupMatrices(float x) { // Set up world matrix D3DXMATRIXA16 matWorld; D3DXMatrixIdentity(&matWorld); D3DXMatrixTranslation(&matWorld, x, 0.0f, 0.0f); g_pd3dDevice->SetTransform( D3DTS_WORLD, &matWorld ); 複数モデ…