在unity中,着色器编程使用了一列列的HLSL语言变种(也叫作Cg,但是大部分实际上两者都是一样的). 目前,为了在不同平台下保持最好的跨平台性, 取样贴图时,最好使用DX9风格 的HLSL. 着色器编译器 在内部,不同的着色器编译器用来编译shader: Windows & Microsoft 平台(DX11, DX12 and Xbox One) 使用Microsoft的 HLSL编译器(当前为d3dcompiler_47) OpenGL Core,OpenGL ES 3 & Met…
目录 Loads the shader files and makes it usable to DirectX and the GPU 加载着色器文件并使其可用于DirectX和GPU Compile the shader programs into buffers 将着色器程序编译到缓冲区中 D3DCompileFromFile function D3DCompileFromFile函数 Create the shader objects 创建着色器对象 ID3D11Device::Crea…