blob: c90fb11da0306e33a4fc57ca1486695b5a6988fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
//
// Copyright 2022 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,
const gl::ProgramMergedVaryings &mergedVaryings,
const gl::ProgramVaryingPacking &varyingPacking)
{
return angle::Result::Continue;
}
angle::Result ProgramPipelineImpl::onLabelUpdate(const gl::Context *context)
{
return angle::Result::Continue;
}
} // namespace rx
|