// // Copyright 2017 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. // // ProgramPipelineVk.cpp: // Implements the class methods for ProgramPipelineVk. // #include "libANGLE/renderer/vulkan/ProgramPipelineVk.h" namespace rx { ProgramPipelineVk::ProgramPipelineVk(const gl::ProgramPipelineState &state) : … { … } ProgramPipelineVk::~ProgramPipelineVk() { … } void ProgramPipelineVk::destroy(const gl::Context *context) { … } void ProgramPipelineVk::reset(ContextVk *contextVk) { … } angle::Result ProgramPipelineVk::link(const gl::Context *glContext, const gl::ProgramMergedVaryings &mergedVaryings, const gl::ProgramVaryingPacking &varyingPacking) { … } // namespace rx } // namespace rx