summaryrefslogtreecommitdiffstats
path: root/examples/vulkan/hellovulkantexture/hellovulkantexture.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/vulkan/hellovulkantexture/hellovulkantexture.cpp')
-rw-r--r--examples/vulkan/hellovulkantexture/hellovulkantexture.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/vulkan/hellovulkantexture/hellovulkantexture.cpp b/examples/vulkan/hellovulkantexture/hellovulkantexture.cpp
index ffe1a31442..67ae0ca5dc 100644
--- a/examples/vulkan/hellovulkantexture/hellovulkantexture.cpp
+++ b/examples/vulkan/hellovulkantexture/hellovulkantexture.cpp
@@ -59,7 +59,7 @@
// Vulkan Y is negated in clip space and the near/far plane is at 0/1 instead
// of -1/1. These will be corrected for by an extra transformation when
// calculating the modelview-projection matrix.
-static float vertexData[] = {
+static float vertexData[] = { // Y up, front = CW
// x, y, z, u, v
-1, -1, 0, 0, 1,
-1, 1, 0, 0, 0,