我正在开发一个基于着色器的地形。使用 VTF 获取顶点着色器中的高度数据。我的问题是当我在顶点着色器中对高度图进行采样时,返回的值总是为零。
Texture2D texture;
SamplerState sampleType;
float height = texture.SampleLevel(sampleType, float4(input.tex, 0, 0), 0);
使用 D3DX11CreateShaderResourceViewFromFile(device, heightmap, NULL, NULL, &texture) 函数从 BMP 文件 (256x256x24bit) 加载纹理,并使用 deviceContext->PSSetShaderResources(0, 1, &texture) 传递给顶点着色器。功能级别为 D3D_FEATURE_LEVEL_10_0,着色器配置文件为 vs_4_0。