From 547e09ec910b865c8ee2ab32980c9becae23e8bc Mon Sep 17 00:00:00 2001 From: Adeel Kazmi Date: Wed, 9 Jun 2021 17:22:16 +0100 Subject: [PATCH] (gles-context.cpp) Use pipelineState directly instead of dereferencing (SVACE Error) Change-Id: Iee2b9dc78f746e53270bbe762f7a522aba639bfc --- dali/internal/graphics/gles-impl/gles-context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dali/internal/graphics/gles-impl/gles-context.cpp b/dali/internal/graphics/gles-impl/gles-context.cpp index 077d2c6..a0843e6 100644 --- a/dali/internal/graphics/gles-impl/gles-context.cpp +++ b/dali/internal/graphics/gles-impl/gles-context.cpp @@ -270,7 +270,7 @@ void Context::Flush(bool reset, const GLES::DrawCallDescriptor& drawCall) } // Resolve topology - const auto& ia = mImpl->mNewPipeline->GetCreateInfo().inputAssemblyState; + const auto& ia = pipelineState.inputAssemblyState; // Bind uniforms -- 2.7.4