ProgramPipelineImpl.cpp (750B)
1 // 2 // Copyright 2022 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 14 angle::Result ProgramPipelineImpl::link(const gl::Context *context, 15 const gl::ProgramMergedVaryings &mergedVaryings, 16 const gl::ProgramVaryingPacking &varyingPacking) 17 { 18 return angle::Result::Continue; 19 } 20 21 angle::Result ProgramPipelineImpl::onLabelUpdate(const gl::Context *context) 22 { 23 return angle::Result::Continue; 24 } 25 26 } // namespace rx