aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Lobodzinski <mark@lunarg.com>2015-06-11 16:23:27 -0600
committerCourtney Goeltzenleuchter <courtney@LunarG.com>2015-06-18 10:22:57 -0600
commit8994cfa9f1e343308d732a33ebf151bd4b548024 (patch)
tree7f0f4cf3542a0290c3a44d4a313c15a1d55130d1
parentf95323f72495b0dd50f942236a58a344eabc4d78 (diff)
downloadusermoji-8994cfa9f1e343308d732a33ebf151bd4b548024.tar.xz
vulkan.h: V99 -- Remove fixed-function point parameters, Bug# 13928
Remove pointSize and pointFadeThreshold from VkDynamicRsStateCreateInfo.
-rw-r--r--demos/cube.c1
-rw-r--r--demos/tri.c1
-rw-r--r--include/vulkan.h2
3 files changed, 0 insertions, 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;