Home
last modified time | relevance | path

Searched refs:rasterDesc (Results 1 – 3 of 3) sorted by relevance

/external/angle/src/libANGLE/renderer/d3d/d3d11/
DPixelTransfer11.cpp57 D3D11_RASTERIZER_DESC rasterDesc; in loadResources() local
58 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 …]
DRenderStateCache.cpp192 D3D11_RASTERIZER_DESC rasterDesc; in getRasterizerState() local
193 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 …]
DBlit11.cpp638 D3D11_RASTERIZER_DESC rasterDesc; in initResources() local
639 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 …]