Merge branch '175-fix-opaque-type-indexing-atomic-counter-tests' into 'master'
authorPyry Haulos <phaulos@google.com>
Wed, 13 Jan 2016 17:04:29 +0000 (12:04 -0500)
committerPyry Haulos <phaulos@google.com>
Wed, 13 Jan 2016 17:04:29 +0000 (12:04 -0500)
commita7d8033835d88d3f0bcae97f6c4d6bd1734620c5
tree97c81ade9217520f216b2878779135731f845337
parent0bbf90055ed2094cf7c9444c92cdc3991139a501
parent1520e856bc1169fcdb43cd5a8e2d6caa1ef5c6d3
Merge branch '175-fix-opaque-type-indexing-atomic-counter-tests' into 'master'

ShaderExecutor: read counter values from the buffer

Problem: At vktOpaqueTypeIndexingTests.cpp:1077, the tests creates a std::vector called counterValues and default-initializies. Then, in the loop below, it checks counterValues as if it contains the actual counter values even though they are never read from the buffer.

Solve: Read back the counter values from the buffer.

Fixes #175

See merge request !291