1 // 2 // Copyright 2020 The ANGLE Project Authors. All rights reserved. 3 // Use of this source code is governed by a BSD-style license that can be 4 // found in the LICENSE file. 5 // 6 7 // ProgramPipelineImpl.cpp: Defines the abstract rx::ProgramPipelineImpl class. 8 9 #include "libANGLE/renderer/ProgramPipelineImpl.h" 10 11 namespace rx 12 { 13 link(const gl::Context * context)14angle::Result ProgramPipelineImpl::link(const gl::Context *context) 15 { 16 return angle::Result::Continue; 17 } 18 19 } // namespace rx 20