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

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>
            亚洲国产裸拍裸体视频在线观看乱了中文 | 亚洲婷婷综合久久一本伊一区| 欧美成年网站| 蜜臀久久久99精品久久久久久| 亚洲精品久久久久久久久| 国产精品久久综合| 亚洲三级网站| 一区二区三区四区蜜桃| 国产精品一区二区在线| 久久只精品国产| 欧美激情一区二区久久久| 亚洲欧美日韩第一区| 久久成人久久爱| 亚洲精品久久久久| 亚洲已满18点击进入久久| 在线观看福利一区| 日韩网站在线| 亚洲电影观看| 亚洲在线日韩| 亚洲精品字幕| 欧美一级久久久| 一区二区激情小说| 久久精品久久99精品久久| 一区二区冒白浆视频| 久久精品72免费观看| 一区二区电影免费观看| 欧美中在线观看| 日韩午夜中文字幕| 欧美在线综合| 亚洲综合久久久久| 你懂的视频欧美| 久久久99精品免费观看不卡| 欧美日韩国产不卡| 欧美顶级大胆免费视频| 国产一区二区黄| 一区二区三区免费网站| 91久久夜色精品国产九色| 午夜日本精品| 亚洲网站啪啪| 欧美看片网站| 欧美高潮视频| 在线观看视频免费一区二区三区| 亚洲女与黑人做爰| 亚洲一区二区三区免费观看| 欧美风情在线观看| 欧美黄色成人网| 樱桃成人精品视频在线播放| 欧美亚洲一区二区三区| 亚洲专区欧美专区| 欧美性jizz18性欧美| 91久久精品一区| 亚洲黄色免费网站| 蜜桃av一区| 欧美成人一品| 亚洲国产高清一区| 老鸭窝91久久精品色噜噜导演| 久久精品国产在热久久 | 猫咪成人在线观看| 欧美不卡在线视频| 在线观看欧美日本| 老司机午夜精品视频| 欧美成人午夜免费视在线看片| 一区二区三区在线视频播放 | 亚洲精品影视| 亚洲视频大全| 国产精品你懂的在线欣赏| 中文精品视频一区二区在线观看| 亚洲一区视频| 久久亚洲视频| 亚洲国产精品黑人久久久| 久久综合999| 欧美大片在线观看| 亚洲免费av电影| 欧美日韩国产一区精品一区 | 在线一区二区三区做爰视频网站| 亚洲图片欧美日产| 国产日韩av一区二区| 欧美在线观看www| 欧美二区在线看| 一区二区三区 在线观看视频| 欧美性猛交视频| 欧美一区二区三区男人的天堂| 久久在精品线影院精品国产| 亚洲国产精品久久久久婷婷884 | 在线亚洲自拍| 国产欧美一区二区三区视频| 久久久久久久成人| 亚洲精品影院在线观看| 久久大逼视频| 亚洲日韩欧美视频| 国产麻豆精品久久一二三| 久久久亚洲欧洲日产国码αv | 久久精品一区二区三区四区| 亚洲国产成人在线播放| 欧美视频免费在线| 久久久久欧美精品| 一区二区三区高清不卡| 久久精品视频导航| 99成人精品| 禁断一区二区三区在线| 欧美日韩一区高清| 久久精品免费电影| 亚洲最快最全在线视频| 老司机免费视频久久| 亚洲网站视频福利| 亚洲国产精品久久久久婷婷884 | 精品动漫一区| 国产精品久久久久久久久久久久 | 欧美日韩一区自拍| 久久婷婷久久一区二区三区| 一区二区三区精品久久久| 免费在线亚洲| 久久精品男女| 亚洲一区二区三区影院| 亚洲人精品午夜| 国产午夜精品在线观看| 欧美亚男人的天堂| 欧美激情小视频| 久久亚洲综合色| 欧美在线观看网址综合| 亚洲一区二区三区中文字幕在线| 亚洲欧洲日本在线| 欧美激情精品久久久久久久变态 | 久久久另类综合| 羞羞色国产精品| 日韩特黄影片| 99精品视频免费全部在线| 欧美激情国产高清| 欧美福利小视频| 美女视频黄免费的久久| 久久激情综合| 欧美一区二区三区四区在线| 亚洲视频精选| 亚洲私拍自拍| 亚洲一区二区在线免费观看| 亚洲天堂av在线免费| 一片黄亚洲嫩模| 99日韩精品| 亚洲国产成人在线| 在线观看视频日韩| 亚洲国产裸拍裸体视频在线观看乱了| 极品尤物久久久av免费看| 影音先锋久久| 最新国产拍偷乱拍精品| 亚洲精品乱码久久久久久蜜桃91| 亚洲三级视频在线观看| 在线视频欧美日韩| 亚洲一区二区精品| 欧美一进一出视频| 久久色在线播放| 欧美成人视屏| 亚洲精品资源| 亚洲与欧洲av电影| 久久高清免费观看| 免费成人高清视频| 欧美日韩一区在线观看视频| 欧美视频一区二区三区| 国产欧美日本一区二区三区| 国产一级一区二区| 亚洲国产99精品国自产| 日韩视频一区二区三区在线播放| 中文亚洲欧美| 久久狠狠一本精品综合网| 美女亚洲精品| 99re在线精品| 欧美一区午夜精品| 欧美国产激情| 国产精品一区二区你懂得| 1769国内精品视频在线播放| 日韩一级视频免费观看在线| 午夜精品久久久久影视 | 亚洲综合色网站| 久久久久国产精品人| 亚洲国产成人av| 亚洲一区二区三区四区在线观看 | 国产精品99久久久久久有的能看| 午夜精品久久久久久| 欧美成人按摩| 亚洲一级影院| 米奇777超碰欧美日韩亚洲| 国产精品v欧美精品v日韩| 激情成人在线视频| 亚洲午夜高清视频| 欧美 亚欧 日韩视频在线| 在线综合+亚洲+欧美中文字幕| 久久尤物视频| 国产精品亚洲综合久久| 亚洲日本电影| 久久久人成影片一区二区三区| av成人毛片| 欧美va天堂va视频va在线| 国产午夜精品福利| 亚洲一区二区三区成人在线视频精品 | 在线看无码的免费网站| 欧美亚洲网站| 99re在线精品| 欧美激情欧美激情在线五月| 国产在线成人| 欧美在线一级va免费观看| 99re6热只有精品免费观看|