Fix - vktRobustnessBufferAccessTests.cpp does not compile on VS 2013
authorMarcin Kańtoch <marcin.kantoch@amd.com>
Mon, 3 Apr 2017 12:28:29 +0000 (14:28 +0200)
committerPyry Haulos <phaulos@google.com>
Mon, 3 Apr 2017 17:21:18 +0000 (13:21 -0400)
Changed declaration of IndicesBuffer struct from

struct IndicesBuffer
{
int32_t inIndex;
int32_t outIndex;
};

to

struct IndicesBuffer
{
deInt32 inIndex;
deInt32 outIndex;
};

Affected files: vktRobustnessVertexAccessTests.cpp
Affected tests: dEQP-VK.robustness.buffer_access.*

Change-Id: I9c0b9ca274548bad1d4572fdbc38c9b9cdc814c2

external/vulkancts/modules/vulkan/robustness/vktRobustnessBufferAccessTests.cpp

index 035d4cd..d4688ba 100644 (file)
@@ -798,8 +798,8 @@ BufferAccessInstance::BufferAccessInstance (Context&                        context,
        {
                struct IndicesBuffer
                {
-                       int32_t inIndex;
-                       int32_t outIndex;
+                       deInt32 inIndex;
+                       deInt32 outIndex;
                };
 
                IndicesBuffer indices = { 0, 0 };