Searched refs:rasterDesc (Results 1 – 3 of 3) sorted by relevance
57 D3D11_RASTERIZER_DESC rasterDesc; in loadResources() local58 rasterDesc.FillMode = D3D11_FILL_SOLID; in loadResources()59 rasterDesc.CullMode = D3D11_CULL_NONE; in loadResources()60 rasterDesc.FrontCounterClockwise = FALSE; in loadResources()61 rasterDesc.DepthBias = 0; in loadResources()62 rasterDesc.SlopeScaledDepthBias = 0.0f; in loadResources()63 rasterDesc.DepthBiasClamp = 0.0f; in loadResources()64 rasterDesc.DepthClipEnable = TRUE; in loadResources()65 rasterDesc.ScissorEnable = FALSE; in loadResources()66 rasterDesc.MultisampleEnable = FALSE; in loadResources()[all …]
192 D3D11_RASTERIZER_DESC rasterDesc; in getRasterizerState() local193 rasterDesc.FillMode = D3D11_FILL_SOLID; in getRasterizerState()194 rasterDesc.CullMode = cullMode; in getRasterizerState()195 rasterDesc.FrontCounterClockwise = (rasterState.frontFace == GL_CCW) ? FALSE : TRUE; in getRasterizerState()196 rasterDesc.DepthBiasClamp = 0.0f; // MSDN documentation of DepthBiasClamp implies a value of in getRasterizerState()198 rasterDesc.DepthClipEnable = TRUE; in getRasterizerState()199 rasterDesc.ScissorEnable = scissorEnabled ? TRUE : FALSE; in getRasterizerState()200 rasterDesc.MultisampleEnable = rasterState.multiSample; in getRasterizerState()201 rasterDesc.AntialiasedLineEnable = FALSE; in getRasterizerState()205 rasterDesc.SlopeScaledDepthBias = rasterState.polygonOffsetFactor; in getRasterizerState()[all …]
638 D3D11_RASTERIZER_DESC rasterDesc; in initResources() local639 rasterDesc.FillMode = D3D11_FILL_SOLID; in initResources()640 rasterDesc.CullMode = D3D11_CULL_NONE; in initResources()641 rasterDesc.FrontCounterClockwise = FALSE; in initResources()642 rasterDesc.DepthBias = 0; in initResources()643 rasterDesc.SlopeScaledDepthBias = 0.0f; in initResources()644 rasterDesc.DepthBiasClamp = 0.0f; in initResources()645 rasterDesc.DepthClipEnable = TRUE; in initResources()646 rasterDesc.MultisampleEnable = FALSE; in initResources()647 rasterDesc.AntialiasedLineEnable = FALSE; in initResources()[all …]