From 8994cfa9f1e343308d732a33ebf151bd4b548024 Mon Sep 17 00:00:00 2001 From: Mark Lobodzinski Date: Thu, 11 Jun 2015 16:23:27 -0600 Subject: vulkan.h: V99 -- Remove fixed-function point parameters, Bug# 13928 Remove pointSize and pointFadeThreshold from VkDynamicRsStateCreateInfo. --- demos/cube.c | 1 - demos/tri.c | 1 - include/vulkan.h | 2 -- 3 files changed, 4 deletions(-) diff --git a/demos/cube.c b/demos/cube.c index 5c93b933..737745a7 100644 --- a/demos/cube.c +++ b/demos/cube.c @@ -1453,7 +1453,6 @@ static void demo_prepare_dynamic_states(struct demo *demo) memset(&raster, 0, sizeof(raster)); raster.sType = VK_STRUCTURE_TYPE_DYNAMIC_RS_STATE_CREATE_INFO; - raster.pointSize = 1.0; raster.lineWidth = 1.0; memset(&color_blend, 0, sizeof(color_blend)); diff --git a/demos/tri.c b/demos/tri.c index 4728d7cd..6e7a44cc 100644 --- a/demos/tri.c +++ b/demos/tri.c @@ -1075,7 +1075,6 @@ static void demo_prepare_dynamic_states(struct demo *demo) memset(&raster, 0, sizeof(raster)); raster.sType = VK_STRUCTURE_TYPE_DYNAMIC_RS_STATE_CREATE_INFO; - raster.pointSize = 1.0; raster.lineWidth = 1.0; memset(&color_blend, 0, sizeof(color_blend)); diff --git a/include/vulkan.h b/include/vulkan.h index 3aa7411c..6ea3001c 100644 --- a/include/vulkan.h +++ b/include/vulkan.h @@ -1891,8 +1891,6 @@ typedef struct VkDynamicRsStateCreateInfo_ float depthBias; float depthBiasClamp; float slopeScaledDepthBias; - float pointSize; // optional (GL45) - Size of points - float pointFadeThreshold; // optional (GL45) - Size of point fade threshold float lineWidth; // optional (GL45) - Width of lines } VkDynamicRsStateCreateInfo; -- cgit v1.2.3