vk/vulkan.h: Remove client-settable pointSize from DynamicRsState

This commit is contained in:
Jason Ekstrand 2015-07-07 12:35:32 -07:00
parent 245583075c
commit 1fb859e4b2
2 changed files with 1 additions and 8 deletions

View File

@ -1637,8 +1637,6 @@ typedef struct {
float depthBias;
float depthBiasClamp;
float slopeScaledDepthBias;
float pointSize;
float pointFadeThreshold;
float lineWidth;
} VkDynamicRsStateCreateInfo;

View File

@ -2031,15 +2031,10 @@ VkResult anv_CreateDynamicRasterState(
if (state == NULL)
return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
/* Missing these:
* float pointFadeThreshold;
* // optional (GL45) - Size of point fade threshold
*/
struct GEN8_3DSTATE_SF sf = {
GEN8_3DSTATE_SF_header,
.LineWidth = pCreateInfo->lineWidth,
.PointWidth = pCreateInfo->pointSize,
.PointWidth = 1.0,
};
GEN8_3DSTATE_SF_pack(NULL, state->state_sf, &sf);