Hash :
405f8e7b
Author :
Date :
2020-02-24T17:38:10
Vulkan: Support Program Pipeline Objects Add support for PPOs to the Vulkan back end. Bug: angleproject:3570 Change-Id: I5403456929847c185467b008d810f31ecfcb60cc Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2072652 Commit-Queue: Tim Van Patten <timvp@google.com> Reviewed-by: Courtney Goeltzenleuchter <courtneygo@google.com>
//
// Copyright 2020 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// ProgramPipelineImpl.cpp: Defines the abstract rx::ProgramPipelineImpl class.
#include "libANGLE/renderer/ProgramPipelineImpl.h"
namespace rx
{
angle::Result ProgramPipelineImpl::link(const gl::Context *context)
{
return angle::Result::Continue;
}
} // namespace rx