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

concentrate on c/c++ related technology

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

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

常用鏈接

留言簿(9)

我參與的團隊

搜索

  •  

最新評論

閱讀排行榜

評論排行榜

samplers: a windows into video memory with associated state defining things like filtering, and texture coordination addressing mode.

 

in DXSDK version 8.0 or earlier, the application can pass human-reable assembly code to D3D library via D3DXAssembleShader and get back a binary representation of the shader which can be passed to Direct3D via CreateVertexShader/CreatePixelShader.

 

in DXSDK version 9 now, the application can pass HLSL shader to to D3DX via D3DXAssembleShader API and gets back a binary representation of the compiled shader,which in turn is passed to Direct3D via CreateVertexShader/CreatePixelShader.

the binary asm code generated is a function only of the compiler target chosen,not the specific graphics device in user's or developer's system.

and it will independent on platforms mostly.

Direct3d runtime itself doesn;t know anything about HLSL., only the binary assemble shader models.HLSL compiler can be updated independent of Direct3D runtime.

 

an application calls D3DX to compile a HLSL shader to binary asm code via D3DXAssembleShader .

one parameter in D3DXAssembleShader defines the specific compile target(assembly language model), which the HLSL compiler use.

 

if an application is doing an HLSL shader compilation at runtime(not offline), the application will examine the capabilities of Direct3D device and select the compiler target to match, if it the algorithm in the HLSL shader is too complex to execute in the selected compiler target, then the compilation will fail.

 

failure of a given HLSL shader to compile for a particular compile target is an indication that the shader is too complex for the compile target.

another common source of compilation failure is exceeding the maximum instruction count of the chosen compile target.

an algorithm expressed in HLSL may require too many instructions to be executed by the compile target.

 

a convenient utility which allows the developers to compile shaders offline is the fxc command line compiler which is provided in the DX SDK 9.0.

 

this utility has a number of convenient options that u can use to not only compile your shaders on the commandline but also generate disassembled code for the specific compile target.

 

scale type

half 16-bit code.

integer operations that go outside the range of integers that can be expressed as floats on these platforms are not guaranteed to function as expected.

 

vector type

declare vector type in this way:

vector. the default dimension is 4.

vector<type, size> .

once defined such a vector, u may access the its individual components by using the array access syntax or using swizzle.

in the swizzle case, the components must come from either {x,y,z,w},or {r,g,b,a},or name space.

ps_2_0 and lower pixel shader donot have native support for arbitrary swizzle.

concise high level code which uses swizzles can result in fairly nasty binary asm when compiling to target.

 

matrix type

 matrix also can be accessed by array notation.

type modifiers

row_major and col_major type modifiers can be used to specify the expected layout of a matrix within the hardware constant store.

row_major indicates that each row of the matrix will be stored in a single constant register.

col_major indicates that each col of the matrix will be stored in a single constant register.

 

storage class modifiers

at global scope, the static storage class modifiers indicate that the variable is only to be accessed by the shader not by the application via API. static storage class in the local scope, means that it only persists between the invocations of declaring the function.

extern modifiers can be used in a global variable to indicate that it can be modified outside the shader via the API.

shared modifier is used to specify that a given global variable is to be shared between effects.

uniform modifier is to have been set externally to the HLSL shader.

 

external float translucency;

const float gloss_bais

static float gloss_scale

float diffuse

diffuse/translucency: can be settable by Set*ShaderConstant, and can be modified by the shader itself.

gloss_bais: can be settable by Set*ShaderConstant, and can not be modified by the shader code.

gloss_scale: can not be settable by Set*ShaderConstant api, and can be modified within the shader code only.

 

constructor

constructors are commonly used when a shader writer wants to temporarially define a quantity with literal values.

or when a shader writer wants to explicitly pack smaller datatypes together.

 

type casting

type casting often happens in order to promote or demote a given variable to match a variable to which it is assigned.

 

type casting   casting behavior

scalar-to-scalar always valid.

scalar-to-vector always valid, replicate the scalar to fill the vector.

scalar-to-matrix always valid, replicate the scalar to fill the matrix.

scalar-to-structure always valid, replicate the scalar to fill the structure.

 

vector-to-scalar always valid, it will select the first component of the vector.

vector-to-vecor always valid, the destination vector must not larger then the source vector.

vector-to-matrix size of the vector must equal to the size of the matrix.

vector-to-structure valid if the structure is not larger than the vector,and all components of the structure is numeric.

 

matrix-to-scalar always valid. it will select the upper-left component of the matrix.

matrix-to-vector the size of the matrix must equal the size of the vector.

matrix-to-matrix the destination matrix must not larger than the source vector.

matrix-to-structure valid if the structure is not larger than the vector, and all components of the structure is numeric.

 

structure-to-scalar the structure should at least contain one element.

structure-to-vector the structure should at least the size of the vector, the first components must be numeric, up to the size.

structure-to-matrix the structure should be at least the size of the matrix, the first components must be numeric, up to the size.

structure-to-object the structure should be contain at least one member,the type of this member must be identical to the type of the object

structure-to-structure the destination must not larger than the source structure.

 

samples: for each different texture map that u plan to sample in a pixel shader, you must declare a sampler.

a HLSL sampler has a very direct mapping to the API concept of a sampler and in turn, to the actual silicon in the graphic processor which is responsible for addressing and filtering textures. a sampler must be defined for every texture map that u plan to access in a given shader, but u may use a given sampler multiple times in a shader.

 

Texture sampling intrinsics

there are four types of textures(1D,2D,3D,and cube map),and four types of load(regular, with derivatives, projective, and biased) with each for 16 combination.

tex1D, tex2D and tex3D and texCube

the texture loading intrinsics which take ddx and ddy parameters compute texture LOD using these explicit derivative, which would typically have been preciously calculated with the ddx and ddy intrinsics.

 

tex*proj intrinsics are used to do projective texture reads, where the texture coordinates used to sample the texture are divided by the last component prior to accessing the texture.

tex*bias intrinsics are used to perform biased texture sampling, where the bias can be computed per pixel.

 

shader input

vertex and pixel shaders have two types of input data , varying and uniform,

the varying input is the data that unique to each execution of the shader. for a vertex shader, the varying data comes from the vertex streams.

the uniform data is constant for multiple executions of a shader.

uniform input

uniform data can be specified by two methods in HLSL.

first : declare global variables and use them within vertex shaders and pixel shaders.

any use of global variable within a shader will result in the addition of the variable to a list of uniform variables required by the shader

second: mark an input parameter of the top-level shader function as uniform.

this marking specifes that the given variable should be added to the list of uniform variables used by the shader.

uniform variables used by the shaders are communicated back to the application via constant table.

the constant table a symbol table which defines how the uniform variables used by the shader must be loaded into the constant register prior to the shader execution.

the constant table contains the constant register location of all uniform variables used by the shaders.

the table also includes the type information and the default value.

the constant table generated by the compiler is stored in a compact binary form.

varying input

varying data is specified by marking the input parameters of the top-level shader function with an input semantics

all top-level shader inputs must either be marked as varying by using semantics or marked with the keyword "uniform" indicating that

the value is constant for the execution of the shader.

if a top-level shader input is not marked with a semantic or uniform keyword, then the shader will fail to compile

the input semantic is a name used to link the given shader to an output of the previous stage of the graphics pipeline.

 

pixel and vertex shaders have different sets of input semantics due to different parts of the graphics pipeline that feed each shader unit.

vertex shader input semantics describe the per vertex information to be loaded from a vertex buffer into a form that can be consumed by the vertex shader.

 

these input semantics directly maps to the combination of the D3DDECLUSAGE enum and UsageIndex that is used to describe vertex data elements in a vertex buffer.

 

pixel shader input semantics describe the information that is provided per pixel by the rasterization unit. the data is interpolating between the outputs of the vertex shader for each vertex of the primitive.

the basic pixel shader input semantics link the color and texture coordinate information to input paramters.

input semantics can be assigned to shader input by two methods. first, append a colon ":", and the input semantics name to the input parameter declaration.  second, define a input structure with input semantics assigned to each element of the structure.

shader output

vertex and pixel shaders provide output data to the subsequent graphics pipeline stage.

output semantics are to specify how data generated by the shader should be linked to the inputs of the stage.

pixel shader outputs are the value provided to alpha blending unit each of the render target or the depth value to be written to the buffer.

 

vertex shader output semantics are used to link the shader both to the pixel shader and the rasterization stage.

POSITION is the output that is the required output from each vertex shader that is consumed by the rasterizer and not exposed to the pixel shader.

TEXCOORDn and COLORn denotes outputs that are made available to the pixel shader post interpolation.

 

pixel shader output semantics bind the output colors of a pixel shader with the correct render target.

the colors output from the pixel shader are linked to the alpha blend stage, which determines how the destination render target will be modified.

 

dcl_position: position, dcl_texture: texture.dcl_normal: normal

def instruction is a free instruction which appears in the actual assembly instruction stream that defines constants that will be used by the ALU operation.

tex1D: a way for the HLSL shader writer to indicate to the compiler that only one component of the texture coordinate needs to be populated, shaving off an assembly instruction in some cases.

 

the compiler is smart enough about removing dead code, but it can not know about values that do not ultimately matter due to circumstance of a given shader.

1 try to use vector and matrics, and also use ints instead of floats.

newer hardware supports static branching and prediction instructions, static looping,dynamic branchings, and dynamic loopings.

and loops are a form of flow control that occurs often in the shader, some hardware allows either static branching or dynamic branchings,

2 static branching is a capability that in a shader that allows for blocks of code to be switched on or off based on the boolean constant.

most of the hardware supports only the static branching.

3 input parameters.

the method in which data is loaded into registers either from a vertex buffer into a vertex shader or from the vertex shader output to the pixel input registers is well-defined in Direct3D-spec.pixel shader input values are always expanded into a vector of four floats.

that means that datatype declaration is more of a hint thatn a specification of how the data is loaded into the shader.

a common optimization used by shader assembly writers is to take advantage of the way in which data is expanded when loaded into registers.

it's very common to need the w component to be set 1.0 when multiplying by the world matrix,but the vertex buffer typically contain only x, y and z components.if the position input parameter is declared float3,then an extra copy instruction to a 1.0 into the w component will be required.

another optimization is to make sure and declare all input parameter with the appropriate type for their usgae in the shader.

it's important to declare the parameter as an ints, to avoid truncation.

precision issue(logp,expp,lit)

logp, expp, and lit can be used as low-precision version of log, exp, and pow

since log, and exp, count 10 instruction slots each and logp and expp only count as one instruction each. it's possible to balloon the size of the generated asm code and potentially run out of instructions,particularly on the vs_1_1 compile target.

accessing these low-precision instruction is accomplished by declaring the output to either cast to or stored into the low precision data type called "half".

a low precision output from an operation informs the compiler that the operation should be performed with low precision possible.

using ps_1_x compile target.

 

posted on 2008-11-27 19:53 jolley 閱讀(1026) 評論(0)  編輯 收藏 引用
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            亚洲精品中文字| 亚洲大片在线| 欧美日韩精品一区二区天天拍小说 | 一区二区三区四区国产精品| 亚洲欧美日韩精品一区二区| 亚洲一区三区电影在线观看| 国产视频观看一区| 久久久欧美精品| 亚洲欧美高清| 日韩一级片网址| 国产精品激情偷乱一区二区∴| 久久精品二区| 一本色道久久综合精品竹菊| 久久亚洲精品中文字幕冲田杏梨 | 亚洲国产色一区| 国产精品盗摄一区二区三区| 欧美aⅴ99久久黑人专区| 新67194成人永久网站| 欧美不卡在线视频| 伊人色综合久久天天| 欧美www在线| 久久久亚洲综合| 久久aⅴ国产欧美74aaa| 亚洲精品国产精品乱码不99按摩| 狠狠色丁香婷婷综合影院 | 99v久久综合狠狠综合久久| 狠狠入ady亚洲精品| 韩国av一区二区三区在线观看| 亚洲黄色片网站| 蜜臀久久99精品久久久久久9| 久久一区亚洲| 亚洲国产精品va在线看黑人| 欧美激情第五页| 亚洲欧洲日产国码二区| 亚洲视频免费观看| 久久久亚洲午夜电影| 欧美日韩国产页| 亚洲欧美久久久| 免费观看30秒视频久久| 欧美日韩国产a| 国产在线成人| av成人动漫| 亚洲综合不卡| 亚洲全部视频| 裸体丰满少妇做受久久99精品| 欧美激情视频一区二区三区免费| 国产精品成人在线观看| 亚洲精选在线| 欧美1区免费| 欧美一区三区三区高中清蜜桃| 欧美成人69av| 在线观看成人一级片| 国产精品天美传媒入口| 国产精品高潮呻吟| 9久re热视频在线精品| 亚洲欧美日韩久久精品| 欧美激情一区三区| 欧美精品国产一区二区| 洋洋av久久久久久久一区| 亚洲免费视频在线观看| 久久久久久久久蜜桃| 亚洲精品一区中文| 欧美激情国产高清| 日韩视频一区| 亚洲免费电影在线观看| 欧美精品电影| 一本一本大道香蕉久在线精品| 欧美激情第一页xxx| 伊人久久久大香线蕉综合直播| 午夜精品久久久久久久| 先锋影音一区二区三区| 在线欧美影院| 这里只有精品丝袜| 亚洲精品资源| 欧美成人官网二区| 亚洲精品一二| 国产精品午夜视频| 欧美激情亚洲国产| 国产精品午夜视频| 亚洲人成小说网站色在线| 欧美性事免费在线观看| 久久一综合视频| 国产精品二区二区三区| 你懂的国产精品永久在线| 欧美手机在线视频| 亚洲高清视频在线| 亚洲福利视频二区| 国产精品三上| 亚洲国产欧洲综合997久久| 国产丝袜一区二区三区| 黑人一区二区三区四区五区| 亚洲经典在线看| 国产亚洲成av人在线观看导航 | 精品99视频| 亚洲美女区一区| 亚洲另类春色国产| 欧美高清在线观看| 亚洲高清视频一区| 亚洲激情视频在线| 牛夜精品久久久久久久99黑人| 久久综合伊人| 亚洲人成在线播放| 欧美裸体一区二区三区| 亚洲精品婷婷| 亚洲激情电影在线| 久久婷婷国产综合尤物精品 | 欧美一区二区三区播放老司机| 国产在线不卡| 欧美国产日韩精品| 理论片一区二区在线| 国产精品久久久久久久第一福利| 亚洲天堂网站在线观看视频| 1769国产精品| 国产一区二区中文| 国产精品夜夜夜| 国产精品嫩草久久久久| 欧美日本在线看| 欧美jizz19性欧美| 久久免费视频网站| 午夜在线成人av| 一区二区免费在线播放| 亚洲国语精品自产拍在线观看| 国产人久久人人人人爽| 亚洲精品韩国| 欧美黄色免费| 国产女精品视频网站免费| 欧美jizz19性欧美| 欧美另类综合| 国产欧美日韩精品专区| 国产在线视频欧美| 亚洲国产精品久久久久| 日韩视频一区二区在线观看 | 国产一区二区三区久久久| 国产精品久久久久久久免费软件| 欧美性做爰猛烈叫床潮| 国产欧美日韩伦理| 亚洲精品人人| 先锋亚洲精品| 免费在线视频一区| 亚洲一区二区三区乱码aⅴ蜜桃女| 亚洲综合电影一区二区三区| 欧美一级视频免费在线观看| 欧美大学生性色视频| 国产乱码精品一区二区三区不卡| 极品少妇一区二区三区| 亚洲一区二区在线| 麻豆成人精品| 99视频国产精品免费观看| 久久久久免费视频| 国产日韩在线一区二区三区| 99精品欧美一区| 性欧美1819性猛交| 亚洲九九精品| 久久综合色综合88| 这里只有精品视频| 欧美网站大全在线观看| 日韩午夜视频在线观看| 亚洲第一成人在线| 欧美一区二视频| 国产精品成人一区二区艾草| 亚洲黄页视频免费观看| 亚洲国产高清视频| 欧美激情精品久久久久| 亚洲国产成人av| 欧美成人日韩| 欧美精品在欧美一区二区少妇| 亚洲级视频在线观看免费1级| 麻豆成人小视频| 欧美sm视频| 在线亚洲欧美| 欧美在线黄色| 亚洲精品一二区| 亚洲最新在线| 狠狠入ady亚洲精品经典电影| 免费国产一区二区| 欧美日本一区二区高清播放视频| 亚洲欧美成人一区二区在线电影| 欧美日韩福利| 欧美日韩一区在线观看视频| 午夜精品美女自拍福到在线| 久久久精品欧美丰满| 亚洲视频免费看| 久久久噜噜噜久久人人看| 亚洲欧洲一区二区天堂久久| 日韩视频欧美视频| 在线观看亚洲视频| 一本色道久久88综合日韩精品| 国内揄拍国内精品久久| 亚洲视频axxx| 午夜精品视频在线观看一区二区| 久久免费99精品久久久久久| 亚洲欧美日韩国产一区二区| 美女被久久久| 欧美99久久| 亚洲国产精品久久精品怡红院| 欧美一级久久久久久久大片| 性欧美精品高清| 国产欧美日韩激情| 香蕉av777xxx色综合一区| 国产精品伦理|