From: Jason Ekstrand Date: Tue, 7 Jul 2015 19:35:32 +0000 (-0700) Subject: vk/vulkan.h: Remove client-settable pointSize from DynamicRsState X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1fb859e4b279a95ad8f3f3c00dc3597e8acb6f5b;p=mesa.git vk/vulkan.h: Remove client-settable pointSize from DynamicRsState --- diff --git a/include/vulkan/vulkan.h b/include/vulkan/vulkan.h index a150f0f875e..e2f5fd08195 100644 --- a/include/vulkan/vulkan.h +++ b/include/vulkan/vulkan.h @@ -1637,8 +1637,6 @@ typedef struct { float depthBias; float depthBiasClamp; float slopeScaledDepthBias; - float pointSize; - float pointFadeThreshold; float lineWidth; } VkDynamicRsStateCreateInfo; diff --git a/src/vulkan/device.c b/src/vulkan/device.c index 5237f2d6f82..60d6910577e 100644 --- a/src/vulkan/device.c +++ b/src/vulkan/device.c @@ -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);