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

concentrate on c/c++ related technology

plan,refactor,daily-build, self-discipline,

  C++博客 :: 首頁 :: 聯(lián)系 :: 聚合  :: 管理
  37 Posts :: 1 Stories :: 12 Comments :: 0 Trackbacks

常用鏈接

留言簿(9)

我參與的團(tuán)隊(duì)

搜索

  •  

最新評論

閱讀排行榜

評論排行榜

only one vertex shader can be active at one time.
every vertex shader- driven program must run the following steps:
1) check for vertex shader support by checking the D3DCAPS8:VertexShaderVersion field.
D3DVS_VERSION(X,Y) shader x.y.
if(pCaps->VertexShaderVersion < D3DVS_VERSION(1,1))
{
return E_FAIL;
}
here to judge whether the vertex shader is suited for shader1.1.
the vertex shader version is in the D3DCAPS8 structure.
2) declaration of the vertex shader with D3DVSD_* macros, to map vertex buffers streams to input registers.
you must declare a vertex shader before using it,
SetStreamSource: bind a vertex buffer to a device data stream. D3DVSD_STREAM.
D3DVSD_REG:bind a single vertex register to a vertex element/property from vertex stream.
3) setting the vertex constant register with SetVertexShaderConstant.
you fill the vertex shader constant registers with SetVertexShaderConstant, and  get the vertex shader constant registers with GetVertexShaderConstant.
D3DVSD_CONSTANT: used in vertex shader declaration, and it can only be used once.
SetVertexShaderConstant: it can be used in every DrawPrimitive* calls.
4) compile previously written vertex shader with D3DXAssembleShader*.
different instructions include:
add  dest src1 src2  add src1 and src2 together.
dp3  dest src1 src2 dest.x = dest.y = dest.z = dest.w = (src1.x * src2.x ) + (src1.y * src2.y) + (src1.z* src2.z)
dp4  dest src1 src2 dest.w =  (src1.x * src2.x ) + (src1.y * src2.y) + (src1.z* src2.z) +(src1.w* src2.w) and dest.x dest.y, dest.z is not used.
dst dest src1 src2  dest.x = 1; dest.y = src1.y * src2.y;dest.z = src1.z;dest.w = src2.w; it is useful to calculate standard attentuation.
expp dest, src.w float tmp = (float)pow(2, w); WORD tmpd = *(DWORD*)&tmp & 0xffffff00; dest.z = *(float*)&tmpd;
lit dest, src

Calculates lighting coefficients from two dot products and a power.
---------------------------------------------
To calculate the lighting coefficients, set up the registers as shown:

src.x = N*L ; The dot product between normal and direction to light
src.y = N*H ; The dot product between normal and half vector
src.z = ignored ; This value is ignored
src.w = specular power ; The value must be between ?28.0 and 128.0
logp dest src.w 
 float tmp = (float)(log(v)/log(2)); 
 DWORD tmpd = *(DWORD*)&tmp & 0xffffff00; 
 dest.z = *(float*)&tmpd;
mad dest src1 src2 src3 dest = (src1 * src2) + src3
max dest src1 src2 dest = (src1 >= src2)?src1:src2
min dest src1 src2 dest = (src1 < src2)?src1:src2
mov dest, src move
mul dest, src1, src2  set dest to the component by component product of src1 and src2
nop nothing
rcp dest, src.w
if(src.w == 1.0f)
{
  dest.x = dest.y = dest.z = dest.w = 1.0f;
}
else if(src.w == 0)
{
  dest.x = dest.y = dest.z = dest.w = PLUS_INFINITY();
}
else
{
  dest.x = dest.y = dest.z = m_dest.w = 1.0f/src.w;
}
rsq dest, src

reciprocal square root of src
(much more useful than straight 'square root'):

float v = ABSF(src.w);
if(v == 1.0f)
{
  dest.x = dest.y = dest.z = dest.w = 1.0f;
}
else if(v == 0)
{
  dest.x = dest.y = dest.z = dest.w = PLUS_INFINITY();
}
else
{
  v = (float)(1.0f / sqrt(v));
  dest.x = dest.y = dest.z = dest.w = v;
}
sge dest, src1, src2 dest = (src1 >=src2) ? 1 : 0
slt dest, src1, src2 dest = (src1 <src2) ? 1 : 0

The Vertex Shader ALU is a multi-threaded vector processor that operates on quad-float data. It consists of two functional units. The SIMD Vector Unit is responsible for the mov, mul, add, mad, dp3, dp4, dst, min, max, slt and sge instructions. The Special Function Unit is responsible for the rcp, rsq, log, exp and lit instructions.

rsq is used in normalizing vectors to be used in lighting equations.
The exponential instruction expp can be used for fog effects, procedural noise generation.
A log function can be the inverse of a exponential function, means it undoes the operation of the exponential function.

The lit instruction deals by default with directional lights. It calculates the diffuse & specular factors with clamping based on N * L and N * H and the specular power. There is no attenuation involved, but you can use an attenuation level separately with the result of lit by using the dst instruction. This is useful for constructing attenuation factors for point and spot lights.

The min and max instructions allow for clamping and absolute value computation.
Using the Input Registers

The 16 input registers can be accessed by using their names v0 to v15. Typical values provided to the input vertex registers are:

  • Position(x,y,z,w)
  • Diffuse color (r,g,b,a) -> 0.0 to +1.0
  • Specular color (r,g,b,a) -> 0.0 to +1.0
  • Up to 8 Texture coordinates (each as s, t, r, q or u, v , w, q) but normally 4 or 6, dependent on hardware support
  • Fog (f,*,*,*) -> value used in fog equation
  • Point size (p,*,*,*)

The input registers are read-only. Each instruction may access only one vertex input register. unspecified components of the input registers default to 0.0 for the .x, .y, .z and 1.0 for the components w.

all data in an input register remains persistent throughout the vertex shader execution and even longer. that means they retain their data longer than the life-time of a vertex shader, so it is possible to re-use the data of the input registers in the next vertex shader.

Using the Constant Registers

Typical uses for the constant registers include:

  • Matrix data: quad-floats are typically one row of a 4x4 matrix
  • Light characteristics, (position, attenuation etc)
  • Current time
  • Vertex interpolation data
  • Procedural data

the constant registers are read-only from the perspective of the vertex shader, whereas the application can read and write into the constant registers.they can be reused just as input registers.
this allows an application to avoid making redundant SetVertexShaderConstant() calls.
Using the Address Register
you access the address registers with a0 to an(more than one address register should be available in vertex shader versions higher than 1.1)
Using the Temporary Registers
you can access 12 temporary registers using r0 to r11.
each temporary register has single write and triple read access. therefore an instruction could have the same temporary register as a source three times, vertex shaders can not read a value from a temporary register before writing to it. if you try to read a temporary register that was not filled with a value, the API will give you an error messge while creating the vertex shader(CreateVertexShader)
Using the Output Registers
there are up to 13 write-only output registers that can be accessed using the following register names. they are defined as the inputs to the rasterizer and the name of each registers is preceded by a lower case 'o'. the output registers are named to suggest their use by pixel shaders.
every vertex shader must write at least to one component of oPos, or you will get an error message by the assembler.
swizzling and masking
if you use the input, constant and temporary registers as source registers, you can swizzle the .x, .y, .z and .w values independently of each other.
if you use the output and temporary registers as destination registers you can use the .x, .y, .z and .w values as write-masks.
component modifier description
R.[x].[y].[z].[w]     Destination mask
R.xwzy                  source swizzle
- R                        source negation 
Guidelines for writing the vertex shaders
the most important restrictions you should remember when writing vertex shaders are the following:
they must write to at least one component of the output register oPos.
there is a 128 instruction limit
every instruction may souce no more than one constant register,e.g, add r0, c4,c3 will fail.
every instruction may souce no more than one input register, e.g. add r0,v1,v2 will fail.
there are no c-like conditional statements, but you can mimic an instruction of the form r0 = (r1 >= r2) ? r3 : r4 with the sge instruction.
all iterated values transferred out of the vertex shader are clamped to [0..1]
several ways to optimize vertex shaders:
when setting vertex shader constant data, try to set all data in one SetVertexShaderConstant call.
pause and think about using a mov instruction, you may be able to avoid it.
choose instructions that perform multiple operations over instructions that perform single operations.
collapse(remove complex instructions like m4x4 or m3x3 instructions)vertex shaders before thinking about optimizations.
a rule of thumb for load-balancing between the cpu/gpu: many calculations in shaders can be pulled outside and reformulated per-object instead of per-vertex and put into constant    registers. if you are doing some calculation which is per object rather than per vertex, then do it on the cpu and upload it on the vertex shader as a constant, rather than doing it on the GPU.
one of the most interesting methods to optimize methods to optimize your applications bandwidth usage, is the usage of the compressed vertex data.
Compiling a Vertex Shader
Direct3D uses byte-codes, whereas OpenGL implementations parses a string. therefore the Direct3D developer needs to assemble the vertex shader source with an assembler.this might help you find bugs earlier in your development cycle and it also reduces load-time.
three different ways to compile a vertex shader:
write the vertex shader source into a separate ASCII file for example test.vsh and compile it with vertex shader assembler into a binary file, for example test.vso. this file will be opened and read at game start up. this way, not every person will be able to read and modify your vertex shader source.
write the vertex shader source into a separate ASCII file or as a char string into you *.cpp file and compile it "on the fly" while the application starts up with the D3DXAssembleShader*() functions.
write the vertex shader source in an effects file and open this effect file when the application starts up.the vertex shader can be compiled by reading the effect files with D3DXCreateEffectFromFile. it is also possible to pre-compile an effects file. this way, most of the handling of vertex shaders is simplified and handled by the effect file functions.
 
5) Creating a vertex shader handle with CreateVertexShader.
the CreateVertexShader function is used to create and validate a vertex shader.
6) setting a vertex shader with SetVertexShader for a specific object.
you set a vertex shader for a specific object by using SetVertexShader before the DrawPrimitive() call of this object.
vertex shaders are executed with SetVertexShader as many times as there are vertices,.
7) delete a vertex shader with DeleteVertexShader().
when the game shuts down or when the device is changed, the resources taken by the vertex shader must be released. this must be done by calling DeleteVertexShader with the vertex shader handle.

Point light source.
a point light source has color and position within a scene, but no single direction. all light rays originate from one point and illuminate equally in all directions. the intensity of the rays will remain constant regardless of their distance from the point source unless a falloff value is explicitly stated. a point light is useful to simulate light bulb.

to get a wider range of effects a decent attenuation equation is used:
funcAttenuation = 1/A0 + A1 * dL + A2 * dL * dL

posted on 2008-12-09 11:18 jolley 閱讀(544) 評論(0)  編輯 收藏 引用

只有注冊用戶登錄后才能發(fā)表評論。
網(wǎng)站導(dǎo)航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            日韩一级片网址| 欧美在线观看www| 亚洲乱码国产乱码精品精天堂| 老司机精品导航| 亚洲日本理论电影| 久久精品国产一区二区电影| 亚洲精品视频二区| 亚洲欧洲三级电影| 亚洲国产高清在线| 亚洲欧洲在线一区| 亚洲午夜精品国产| 亚洲视频一区| 性色av一区二区三区在线观看 | 亚洲婷婷在线| 日韩一区二区电影网| 欧美中文字幕在线视频| 午夜精品国产更新| 国产精品成人免费视频| 亚洲国产激情| 久久精品在线免费观看| 一本色道久久综合亚洲精品高清| 亚洲一品av免费观看| 欧美与黑人午夜性猛交久久久| 日韩视频在线观看国产| 一区二区成人精品| 久久精品一二三区| 欧美日韩三级| 国内精品久久久久影院优| 亚洲久久视频| 欧美 日韩 国产 一区| 亚洲视频 欧洲视频| 午夜精品免费视频| 欧美日韩国产综合久久| 精品动漫3d一区二区三区免费| 亚洲一区二区精品在线| 91久久久一线二线三线品牌| 欧美成人精品高清在线播放| 亚洲一区二区免费在线| 欧美xx69| 亚洲激情女人| 模特精品在线| 鲁大师成人一区二区三区| 亚洲二区视频在线| 一区二区三区精品视频| 一本色道久久| 欧美日韩在线第一页| 亚洲美女免费精品视频在线观看| 久久夜色精品国产亚洲aⅴ| 亚洲福利视频网站| 久久综合狠狠综合久久激情| 欧美寡妇偷汉性猛交| 亚洲蜜桃精久久久久久久| 免费精品视频| 亚洲国产日韩精品| 亚洲全黄一级网站| 久久综合九九| 一区二区日韩免费看| 99精品视频免费观看视频| 国产日韩欧美亚洲一区| 亚洲国产成人在线| 欧美专区中文字幕| 亚洲欧美激情视频在线观看一区二区三区| 新狼窝色av性久久久久久| 亚洲日本欧美天堂| 老司机午夜精品视频在线观看| 欧美午夜精品一区| 日韩一级在线观看| 久久精品一区二区三区四区| 亚洲片在线观看| 亚洲视频在线免费观看| 午夜电影亚洲| 国产精品综合av一区二区国产馆| 国内精品一区二区三区| 久久爱另类一区二区小说| 香蕉免费一区二区三区在线观看| 久久精品免费| 亚洲美女精品久久| 欧美午夜剧场| 最近看过的日韩成人| 在线成人欧美| 久久久久欧美精品| 久久久精品国产99久久精品芒果| 欧美精品一区二区久久婷婷| 久久av一区二区| 91久久精品美女高潮| 久久综合中文| 久久免费视频在线| 国产一区在线免费观看| 久久se精品一区二区| 亚洲激情网址| 亚洲国产精品va在看黑人| 国产精品久久7| 亚洲系列中文字幕| 欧美人与性动交α欧美精品济南到| 一区二区三区欧美日韩| 久久久久久久999| 激情成人综合| 蜜臀久久99精品久久久久久9| 在线视频亚洲| 久久精品亚洲精品| 亚洲欧洲在线看| 欧美精品在线观看一区二区| 亚洲精品国产精品国自产在线| 亚洲校园激情| 在线精品观看| 国产乱码精品一区二区三| 两个人的视频www国产精品| 欧美成人午夜| 欧美在线视频全部完| 亚洲精品四区| 亚洲一区二区视频在线观看| 亚洲精品在线免费| 国产亚洲二区| 亚洲视频一区二区在线观看| 久久一区二区视频| 欧美在线啊v一区| 久久国产福利国产秒拍| 99精品视频免费观看视频| 一区二区三区视频观看| 久久国产精品亚洲va麻豆| 亚洲在线成人| 亚洲日本乱码在线观看| 欧美国产欧美综合| 久久天堂av综合合色| 久久久久久9| 久久婷婷一区| 欧美高清不卡| 亚洲一区在线观看免费观看电影高清| 99精品99久久久久久宅男| 国产精品99久久99久久久二8| 在线性视频日韩欧美| 亚洲男人的天堂在线| 久久久久久久综合色一本| 亚洲一区二区三区涩| 美日韩免费视频| 欧美日韩视频在线第一区| 国产欧美日韩精品在线| 亚洲国产日韩欧美| 亚洲欧美国产不卡| 国产精品毛片| 一区二区三区欧美日韩| 欧美在线黄色| 日韩一区二区免费高清| 久久gogo国模裸体人体| 欧美激情成人在线视频| 久久久久久久久一区二区| 欧美成人性生活| 国产精品日产欧美久久久久| 伊大人香蕉综合8在线视| 亚洲天堂偷拍| 亚洲深夜福利在线| 欧美在线观看一区| 久久亚洲精品一区二区| 日韩午夜在线观看视频| 久久精品免费电影| 欧美久久综合| 亚洲男人第一网站| 欧美激情综合色| 欧美中文在线视频| 国产欧美精品久久| 中日韩在线视频| 一区二区三区回区在观看免费视频| 久久久久久久久久久成人| 国产在线日韩| 久久久久久一区二区三区| 亚洲欧美韩国| 91久久精品美女| 日韩视频免费在线观看| 欧美日韩精品在线| 中文亚洲免费| 女同一区二区| 国产精品va在线| 久久久久久久久岛国免费| 欧美专区第一页| 亚洲国产成人精品久久久国产成人一区| 亚洲夜间福利| 欧美国产一区二区| 午夜精品www| 美女日韩在线中文字幕| 亚洲毛片在线观看.| 欧美国产日韩一区二区| 国产麻豆综合| 亚洲另类一区二区| 国产一区二区欧美日韩| 日韩午夜中文字幕| 欧美一级视频免费在线观看| 亚洲午夜一区| 欧美国产激情| 你懂的网址国产 欧美| 欧美三级电影一区| 欧美一区二区三区在线观看视频 | 免费在线欧美视频| 一区二区三区欧美在线| 欧美日韩一区二区三区四区在线观看| 免费在线欧美黄色| 久久精品99无色码中文字幕| 欧美日韩国产色综合一二三四| 欧美大片免费看| 国产欧美精品一区二区色综合| 亚洲国产精品视频一区|