zoukankan      html  css  js  c++  java
  • texCUBE() to CubemapSampler.Sample()

    update dx9 to dx11

    refers to   CUBEMAP sampler

    texCUBE(CubeMpaSampler,normal)

    maybe change to 

    CubemapSampler.Sample(CubeMapSamplerState,???)

    ??? 这里需要一个 三维向量 

    我写normal.xyz

    but the sample result seems a pyramid

    http://msdn.microsoft.com/en-us/library/windows/desktop/ff476122%28v=vs.85%29.aspx

    technique syntax

    struct SKYMAP_VS_OUTPUT	//output structure for skymap vertex shader
    {
    	float4 Pos : SV_POSITION;
    	float3 texCoord : TEXCOORD;
    };
    
    

    Here is our skymaps VS. As you can see, we are taking in normal values for each vertex still, this is because we are going to be using the same input layout for all our geometry (so we don't have to do more code). However, we will not be using the normals. And in fact, we did not define texture coordinates for our vertices either. This is because the texture coordinates will be defined by our vertices position. We can use our vertices position as a vector, describing the texel in our texturecube to color the pixel with. You can see how we do that with the line output.texCoord = inPos;. Also, notice when we are defining the output position, we take the values .xyww instead of .xyzw. This is because w is equal to 1.0f. We want to make sure our skymap is always the furthest object in our scene, so we want to set our z value to 1.0f too, which is what w is. Remember, 1.0f is the furthest value from the screen.

    http://www.braynzarsoft.net/index.php?p=D3D11CUBEMAP

    eyepositon 的semantic问题引起

  • 相关阅读:
    (find) nyoj5-Binary String Matching
    (replace find)nyoj113-字符串替换
    (去重 sort)nyoj8-一种排序
    (模拟 打好基础) nyoj1363-计划日
    一种颜色怎么搭配
    动态识别类型
    swift与OC混合编程
    IOS动画效果
    NSAlert
    NSButton文本颜色设置和Action两种状态行为
  • 原文地址:https://www.cnblogs.com/minggoddess/p/3799704.html
Copyright © 2011-2022 走看看