From cd489f1fe41be6dc4e6c9572b11ffef764329979 Mon Sep 17 00:00:00 2001 From: Dale Glass Date: Mon, 6 Jun 2022 23:23:59 +0200 Subject: [PATCH] Deal with function signature changes --- tests/gpu/src/TextureTest.cpp | 18 +++++++++--------- tests/gpu/src/TextureTest.h | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/tests/gpu/src/TextureTest.cpp b/tests/gpu/src/TextureTest.cpp index 70a30631ed..1e2e88813e 100644 --- a/tests/gpu/src/TextureTest.cpp +++ b/tests/gpu/src/TextureTest.cpp @@ -38,11 +38,11 @@ std::string vertexShaderSource = R"SHADER( layout(location = 0) out vec2 outTexCoord0; const vec4 VERTICES[] = vec4[]( - vec4(-1.0, -1.0, 0.0, 1.0), - vec4( 1.0, -1.0, 0.0, 1.0), + vec4(-1.0, -1.0, 0.0, 1.0), + vec4( 1.0, -1.0, 0.0, 1.0), vec4(-1.0, 1.0, 0.0, 1.0), vec4( 1.0, 1.0, 0.0, 1.0) -); +); void main() { outTexCoord0 = VERTICES[gl_VertexID].xy; @@ -110,8 +110,8 @@ void TextureTest::initTestCase() { _canvas.makeCurrent(); { - auto VS = gpu::Shader::createVertex(vertexShaderSource); - auto PS = gpu::Shader::createPixel(fragmentShaderSource); + auto VS = gpu::Shader::createVertex(shader::Source::generate(vertexShaderSource)); + auto PS = gpu::Shader::createPixel(shader::Source::generate(fragmentShaderSource)); auto program = gpu::Shader::createProgram(VS, PS); // If the pipeline did not exist, make it auto state = std::make_shared(); @@ -144,9 +144,9 @@ void TextureTest::cleanupTestCase() { _gpuContext.reset(); } -std::vector TextureTest::loadTestTextures() const { +std::vector> TextureTest::loadTestTextures() const { // Load the test textures - std::vector result; + std::vector> result; size_t newTextureCount = std::min(_textureFiles.size(), LOAD_TEXTURE_COUNT); for (size_t i = 0; i < newTextureCount; ++i) { const auto& textureFile = _textureFiles[i]; @@ -193,14 +193,14 @@ void TextureTest::testTextureLoading() { auto renderTexturesLamdba = [&](gpu::Batch& batch) { batch.setPipeline(_pipeline); for (const auto& texture : textures) { - batch.setResourceTexture(0, texture); + batch.setResourceTexture(0, texture.first); batch.draw(gpu::TRIANGLE_STRIP, 4, 0); } }; size_t expectedAllocation = 0; for (const auto& texture : textures) { - expectedAllocation += texture->evalTotalSize(); + expectedAllocation += texture.first->evalTotalSize(); } QVERIFY(textures.size() > 0); diff --git a/tests/gpu/src/TextureTest.h b/tests/gpu/src/TextureTest.h index 2175300406..f1e446bfa3 100644 --- a/tests/gpu/src/TextureTest.h +++ b/tests/gpu/src/TextureTest.h @@ -21,7 +21,7 @@ private: void beginFrame(); void endFrame(); void renderFrame(const std::function& = [](gpu::Batch&) {}); - std::vector loadTestTextures() const; + std::vector> loadTestTextures() const; private slots: