From fcac72128760fad6ad254c4b0a69cd4d600f028a Mon Sep 17 00:00:00 2001 From: HuYingzhuo Date: Mon, 15 Apr 2019 21:33:00 +0800 Subject: [PATCH] =?UTF-8?q?shader=E5=A2=9E=E5=8A=A0core=E6=A0=87=E8=AE=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- example/Vulkan/FlatColor.frag | 2 +- example/Vulkan/FlatColor.vert | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/example/Vulkan/FlatColor.frag b/example/Vulkan/FlatColor.frag index cf5dd17b..6a19256d 100644 --- a/example/Vulkan/FlatColor.frag +++ b/example/Vulkan/FlatColor.frag @@ -1,4 +1,4 @@ -#version 450 +#version 450 core layout(location = 0) in vec4 FragmentColor; layout(location = 0) out vec4 FragColor; diff --git a/example/Vulkan/FlatColor.vert b/example/Vulkan/FlatColor.vert index cfd3dea4..e6365cfa 100644 --- a/example/Vulkan/FlatColor.vert +++ b/example/Vulkan/FlatColor.vert @@ -1,4 +1,4 @@ -#version 450 +#version 450 core layout(location = 0) in vec2 Vertex; layout(location = 1) in vec3 Color;