remove lineWidth from RasterizerState
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
acefc530fd
commit
4bba0f99f9
|
@ -486,7 +486,6 @@ typedef struct Refresh_RasterizerState
|
||||||
float depthBiasConstantFactor;
|
float depthBiasConstantFactor;
|
||||||
float depthBiasClamp;
|
float depthBiasClamp;
|
||||||
float depthBiasSlopeFactor;
|
float depthBiasSlopeFactor;
|
||||||
float lineWidth;
|
|
||||||
} Refresh_RasterizerState;
|
} Refresh_RasterizerState;
|
||||||
|
|
||||||
typedef struct Refresh_MultisampleState
|
typedef struct Refresh_MultisampleState
|
||||||
|
|
|
@ -5848,8 +5848,7 @@ static Refresh_GraphicsPipeline* VULKAN_CreateGraphicsPipeline(
|
||||||
pipelineCreateInfo->rasterizerState.depthBiasClamp;
|
pipelineCreateInfo->rasterizerState.depthBiasClamp;
|
||||||
rasterizationStateCreateInfo.depthBiasSlopeFactor =
|
rasterizationStateCreateInfo.depthBiasSlopeFactor =
|
||||||
pipelineCreateInfo->rasterizerState.depthBiasSlopeFactor;
|
pipelineCreateInfo->rasterizerState.depthBiasSlopeFactor;
|
||||||
rasterizationStateCreateInfo.lineWidth =
|
rasterizationStateCreateInfo.lineWidth = 1.0f;
|
||||||
pipelineCreateInfo->rasterizerState.lineWidth;
|
|
||||||
|
|
||||||
/* Multisample */
|
/* Multisample */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue