青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

天行健 君子當自強而不息

高級著色語言HLSL入門(2)

16.2 編譯HLSL 著色器

16.2.1 常量表

每個著色器有一個常量表,用來保存它的變量。D3DX庫通過ID3DXConstantTable接口,提供給應用程序訪問著色器的常量表。通過這個接口我們能夠在應用程序中設置著色器源代碼中的變量。

我們現在描述ID3DXConstantTable接口的方法列表的實現,全部的列表請查閱Direct3D文檔。

16.2.1.1 取得常量句柄

為了在應用程序中設置著色器中的一個特定變量,需要有一種方法去引用它,我們能夠在應用程序中用D3DXHANDLE引用一個在著色器中的變量,下面的方法返回一個著色器中的變量的D3DXHANDLE,使用時,需要傳遞一個變量的名字作為參數:

D3DXHANDLE ID3DXConstantTable::GetConstantByName(

     D3DXHANDLE hConstant, // scope of constant

     LPCSTR pName          // name of constant

);

Hconstant——我們要取得的父結構中變量句柄的D3DXHANDLE標識。例如,如果我們想獲得一個特定數據結構中單一數據成員的句柄,我們可以傳遞結構實例的句柄。如果我們獲得一個頂級變量的句柄,給這個參數設為NULL。

PName——我們想獲得的句柄的著色器代碼中的變量的名字。

Gets a constant by looking up its name.

D3DXHANDLE GetConstantByName(
D3DXHANDLE hConstant,
LPCSTR pName
);

Parameters

hConstant
[in] Unique identifier to the parent data structure. If the constant is a top-level parameter (there is no parent data structure), use NULL.
pName
[in] Name of the constant.

Return Values

Returns a unique identifier to the constant.

例如,如果在著色器中變量的名字為ViewProjMatrix,并且這是頂級變量,我們這么寫:

// 取得著色器中ViewProjMatrix變量的句柄

D3DXHANDLE h0;

h0 = ConstTable->GetConstantByName(0, "ViewProjMatrix");

 

16.2.1.2 設置常量

一旦應用程序有了一個D3DXHANDLE,要引用著色器代碼中的具體變量,我們可以在應用程序中使用ID3DXConstantTable::SetXXX方法設置變量。如果我們想設置一個向量數組類型的變量,方法名是SetVectorArray。

ID3DXConstantTable::SetXXX的一般語法是:

HRESULT ID3DXConstantTable::SetXXX(

     LPDIRECT3DDEVICE9 pDevice,

     D3DXHANDLE hConstant,

     XXX value

);

PDevice:常量表所關聯的設備的指針。

HConstant:我們正在設置的變量句柄的引用。

Value:我們要把變量設置成的值,XXX是我們設置的要替換的變量類型名,對于有些類型(bool, int, float),傳遞變量值的COPY,另外一些類型(vectors, matrices, structures),傳遞值的指針。

 

下面的列表描述了我們能用ID3DXConstantTable接口設置的類型列表。這里假定我們有一個有效的設備,和一個有效句柄。

SetBool—Used to set a Boolean value. Sample call:

bool b = true;

ConstTable->SetBool(Device, handle, b);

Sets a Boolean value.

HRESULT SetBool(
LPDIRECT3DDEVICE9 pDevice,
D3DXHANDLE hConstant,
BOOL b
);

Parameters

pDevice
[in] Pointer to an IDirect3DDevice9 interface, representing the device associated with the constant table.
hConstant
[in] Unique identifier to the constant. See D3DXHANDLE.
b
[in] Boolean value.

Return Values

If the method succeeds, the return value is D3D_OK. If the method fails, the return value can be D3DERR_INVALIDCALL.


SetBoolArray—Used to set a Boolean array. Sample call:

bool b[3] = {true, false, true};

ConstTable->SetBoolArray(Device, handle, b, 3);

Sets an array of Boolean values.

HRESULT SetBoolArray(
LPDIRECT3DDEVICE9 pDevice,
D3DXHANDLE hConstant,
CONST BOOL* pB,
UINT Count
);

Parameters

pDevice
[in] Pointer to an IDirect3DDevice9 interface, representing the device associated with the constant table.
hConstant
[in] Unique identifier to the array of constants. See D3DXHANDLE.
pB
[in] Array of Boolean values.
Count
[in] Number of Boolean values in the array.

Return Values

If the method succeeds, the return value is D3D_OK. If the method fails, the return value can be D3DERR_INVALIDCALL.


SetFloat—Used to set a float. Sample call:

float f = 3.14f;

ConstTable->SetFloat(Device, handle, f);

 

Sets a floating-point number.

HRESULT SetFloat(
LPDIRECT3DDEVICE9 pDevice,
D3DXHANDLE hConstant,
FLOAT f
);

Parameters

pDevice
[in] Pointer to an IDirect3DDevice9 interface, representing the device associated with the constant table.
hConstant
[in] Unique identifier to the constant. See D3DXHANDLE.
f
[in] Floating-point number.

Return Values

If the method succeeds, the return value is D3D_OK. If the method fails, the return value can be D3DERR_INVALIDCALL.


SetFloatArray—Used to set a float array. Sample call:

float f[2] = {1.0f, 2.0f};

ConstTable->SetFloatArray(Device, handle, f, 2);

Sets an array of floating-point numbers.

HRESULT SetFloatArray(
LPDIRECT3DDEVICE9 pDevice,
D3DXHANDLE hConstant,
CONST FLOAT* pf,
UINT Count
);

Parameters

pDevice
[in] Pointer to an IDirect3DDevice9 interface, representing the device associated with the constant table.
hConstant
[in] Unique identifier to the array of constants. See D3DXHANDLE.
pf
[in] Array of floating-point numbers.
Count
[in] Number of floating-point values in the array.

Return Values

If the method succeeds, the return value is D3D_OK. If the method fails, the return value can be D3DERR_INVALIDCALL.


SetInt—Used to set an integer. Sample call:

int x = 4;

ConstTable->SetInt(Device, handle, x);

Sets an integer value.

HRESULT SetInt(
LPDIRECT3DDEVICE9 pDevice,
D3DXHANDLE hConstant,
INT n
);

Parameters

pDevice
[in] Pointer to an IDirect3DDevice9 interface, representing the device associated with the constant table.
hConstant
[in] Unique identifier to the constant. See D3DXHANDLE.
n
[in] Integer.

Return Values

If the method succeeds, the return value is D3D_OK. If the method fails, the return value can be D3DERR_INVALIDCALL.

 

SetMatrix—Used to set a 4 × 4 matrix. Sample call:

D3DXMATRIX M(…);

ConstTable->SetMatrix(Device, handle, &M);

Sets a nontransposed matrix.

HRESULT SetMatrix(
LPDIRECT3DDEVICE9 pDevice,
D3DXHANDLE hConstant,
CONST D3DXMATRIX* pMatrix
);

Parameters

pDevice
[in] Pointer to an IDirect3DDevice9 interface, representing the device associated with the constant table.
hConstant
[in] Unique identifier to the matrix of constants. See D3DXHANDLE.
pMatrix
[in] Pointer to a nontransposed matrix. See D3DXMATRIX.

Return Values

If the method succeeds, the return value is D3D_OK. If the method fails, the return value can be D3DERR_INVALIDCALL.


SetMatrixArray—Used to set a 4 × 4 matrix array. Sample call:

D3DXMATRIX M[4];

// ...Initialize matrices

ConstTable->SetMatrixArray(Device, handle, M, 4);

Sets an array of nontransposed matrices.

HRESULT SetMatrixArray(
LPDIRECT3DDEVICE9 pDevice,
D3DXHANDLE hConstant,
CONST D3DXMATRIX* pMatrix,
UINT Count
);

Parameters

pDevice
[in] Pointer to an IDirect3DDevice9 interface, representing the device associated with the constant table.
hConstant
[in] Unique identifier to the array of constant matrices.
pMatrix
[in] Array of nontransposed matrices.
Count
[in] Number of matrices in the array.

Return Values

If the method succeeds, the return value is D3D_OK. If the method fails, the return value can be D3DERR_INVALIDCALL.


SetMatrixPointerArray—Used to set an array of 4 × 4 matrix pointers. Sample call:

D3DXMATRIX* M[4];

// ...Allocate and initialize matrix pointers

ConstTable->SetMatrixPointerArray(Device, handle, M, 4);

Sets an array of pointers to nontransposed matrices.

HRESULT SetMatrixPointerArray(
LPDIRECT3DDEVICE9 pDevice,
D3DXHANDLE hConstant,
CONST D3DXMATRIX ** ppMatrix,
UINT Count
);

Parameters

pDevice
[in] Pointer to an IDirect3DDevice9 interface, representing the device associated with the constant table.
hConstant
[in] Unique identifier to an array of constant matrices.
ppMatrix
[in] Array of pointers to nontransposed matrices.
Count
[in] Number of matrices in the array.

Return Values

If the method succeeds, the return value is D3D_OK. If the method fails, the return value can be D3DERR_INVALIDCALL.

Remarks

A nontransposed matrix contains row-major data; that is, each vector is contained in a row.


posted on 2008-04-05 16:18 lovedday 閱讀(3837) 評論(4)  編輯 收藏 引用

評論

# re: 高級著色語言HLSL入門(2)[未登錄] 2009-01-08 16:51 sam

寫得不錯,但有個問題,如果傳大數據到像素作色器好像不行。

如一個float[12][256].的數據。好像ps_2_0只能設置最大30個成員的數組。有什么方法定義大常量數據嗎?  回復  更多評論   

# re: 高級著色語言HLSL入門(2)[未登錄] 2009-01-08 16:53 sam

QQ:36046869  回復  更多評論   

# re: 高級著色語言HLSL入門(2) 2009-02-02 11:37 笑笑

QQ:490861526  回復  更多評論   

# re: 高級著色語言HLSL入門(2) 2010-11-18 15:36 oppo

受教了~ 多謝天兄~  回復  更多評論   

公告

導航

統計

常用鏈接

隨筆分類(178)

3D游戲編程相關鏈接

搜索

最新評論

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            久久久人成影片一区二区三区观看| 在线观看成人一级片| 久久不射电影网| 亚洲一区二区免费在线| 亚洲作爱视频| 亚洲一区在线直播| 欧美综合国产精品久久丁香| 久久亚洲精品中文字幕冲田杏梨 | 亚洲麻豆视频| 一本不卡影院| 欧美一区三区三区高中清蜜桃| 亚洲国产一区二区视频| 一区二区日韩精品| 一本色道久久综合狠狠躁篇的优点 | 日韩亚洲国产欧美| 亚洲一区二区三区精品视频| 亚洲欧美成人一区二区在线电影| 欧美亚洲网站| 欧美黑人多人双交| 在线综合亚洲| 美女主播精品视频一二三四| 国产精品成人一区二区三区夜夜夜| 国产午夜精品久久久久久久| 日韩视频免费观看高清在线视频 | 日韩亚洲欧美成人| 新67194成人永久网站| 免费在线观看成人av| 99re成人精品视频| 久久久久九九九| 欧美日韩色综合| 在线观看国产精品网站| 在线亚洲免费| 米奇777在线欧美播放| 中文av一区特黄| 欧美69wwwcom| 国内精品视频一区| 亚洲一区二区免费看| 欧美高清视频一二三区| 亚洲欧美日韩一区| 欧美精品久久久久久| 狠狠色噜噜狠狠色综合久 | 午夜在线不卡| 日韩午夜精品视频| 欧美11—12娇小xxxx| 黑人巨大精品欧美黑白配亚洲| 中文日韩在线| 亚洲精品免费一区二区三区| 亚洲欧美乱综合| 欧美性猛交一区二区三区精品| 亚洲黄页视频免费观看| 久久亚洲一区二区三区四区| 亚洲制服av| 国产视频观看一区| 性一交一乱一区二区洋洋av| av成人免费| 欧美日韩综合| 国产一级久久| 欧美成人中文| 国产精品豆花视频| 99视频有精品| 91久久亚洲| 欧美日韩国产影片| 一区二区高清在线| 日韩午夜免费| 欧美亚洲不卡| 午夜亚洲性色福利视频| 亚洲欧美成人网| 国产无遮挡一区二区三区毛片日本| 亚洲无玛一区| 亚洲影院一区| 狠狠色丁香婷婷综合| 欧美成人资源| 欧美激情在线观看| 亚洲欧美国产日韩天堂区| 亚洲欧美成人一区二区在线电影 | 国产欧美日韩一区二区三区在线观看| 亚洲午夜精品久久| 午夜精品视频在线观看| 韩国亚洲精品| 欧美激情一区二区三区在线视频观看| 欧美成人免费观看| 亚洲无玛一区| 久久精品久久99精品久久| 亚洲成人在线视频播放| 亚洲日本va午夜在线电影 | 国产精品国产三级国产a| 欧美一站二站| 久久久久欧美精品| 一本色道久久88亚洲综合88| 亚洲欧美日韩国产精品 | 日韩午夜电影在线观看| 国产精品99久久久久久久久久久久 | 亚洲欧洲一区二区三区久久| 欧美日韩一区二区三区四区在线观看| 亚洲欧美在线aaa| 久久综合给合| 性欧美video另类hd性玩具| 久久久久九九视频| 亚洲免费在线观看| 毛片精品免费在线观看| 欧美伊人精品成人久久综合97 | 久热精品在线视频| 一区二区三区毛片| 久久久久久91香蕉国产| 亚洲欧美影院| 欧美日韩国产页| 欧美国产精品v| 国产日韩欧美在线一区| 亚洲伦理自拍| 欧美 日韩 国产在线 | 91久久中文字幕| 国产日韩精品在线| 亚洲精品日韩综合观看成人91| 国内久久视频| 欧美一区二区网站| 一区二区三区欧美日韩| 久久久在线视频| 欧美在线观看网址综合| 欧美日韩无遮挡| 亚洲国产精品123| 激情视频亚洲| 欧美亚洲免费高清在线观看| 亚洲欧美乱综合| 欧美日韩亚洲一区二| 欧美激情五月| 亚洲欧洲在线视频| 免费中文字幕日韩欧美| 狂野欧美激情性xxxx| 国产在线一区二区三区四区 | 亚洲一区二区毛片| 亚洲香蕉伊综合在人在线视看| 欧美成人a∨高清免费观看| 欧美1区免费| **性色生活片久久毛片| 午夜精品久久久| 亚欧成人精品| 国产午夜精品一区二区三区视频 | 欧美精品系列| 亚洲国语精品自产拍在线观看| 亚洲国产精品久久久久婷婷884| 欧美一区三区三区高中清蜜桃| 久久av二区| 国产在线日韩| 久久综合给合久久狠狠狠97色69| 美国十次成人| 亚洲电影免费观看高清完整版在线| 久久精品国产一区二区三| 久久午夜av| 亚洲人成在线观看一区二区| 久热精品视频在线观看一区| 亚洲黄色视屏| 亚洲一区二区三区在线看| 国产精品户外野外| 性欧美在线看片a免费观看| 久久中文字幕导航| 亚洲风情亚aⅴ在线发布| 欧美成人首页| 亚洲一区二区三区免费观看 | 亚洲福利视频网站| 亚洲精品黄网在线观看| 欧美日韩国内| 亚洲欧美国产精品va在线观看| 久久精品欧美| 最新国产精品拍自在线播放| 欧美日韩美女| 久久成人免费| 亚洲精品在线视频| 久久久国产精品一区| 亚洲欧洲美洲综合色网| 亚洲天堂免费观看| 亚洲三级电影全部在线观看高清| 麻豆av一区二区三区| 一区二区精品在线观看| 久久久久久欧美| 亚洲伦理久久| 国产日韩成人精品| 欧美顶级艳妇交换群宴| 亚洲影院污污.| 亚洲国产精品日韩| 欧美资源在线观看| 亚洲精品免费一区二区三区| 国产精品嫩草影院av蜜臀| 久久久水蜜桃| 亚洲一区久久久| 欧美激情一区二区三区蜜桃视频| 亚洲欧美日韩一区| 亚洲黄色免费| 精品av久久707| 国产精品久久国产愉拍| 欧美成年网站| 久久婷婷久久| 久久福利毛片| 99re6热只有精品免费观看| 欧美亚洲在线播放| 日韩网站在线观看| 国产午夜精品视频| 国产精品国色综合久久| 欧美啪啪一区| 蜜桃精品一区二区三区| 久久精品国产第一区二区三区最新章节 |