blob: 4589705a964d833202039dc66b14fb59b53a1954 [file] [log] [blame]
//
// 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