xref: /aosp_15_r20/external/angle/src/libANGLE/renderer/null/ProgramPipelineNULL.cpp (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1 //
2 // Copyright 2017 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 // ProgramPipelineNULL.cpp:
7 //    Implements the class methods for ProgramPipelineNULL.
8 //
9 
10 #include "libANGLE/renderer/null/ProgramPipelineNULL.h"
11 
12 namespace rx
13 {
14 
ProgramPipelineNULL(const gl::ProgramPipelineState & state)15 ProgramPipelineNULL::ProgramPipelineNULL(const gl::ProgramPipelineState &state)
16     : ProgramPipelineImpl(state)
17 {}
18 
~ProgramPipelineNULL()19 ProgramPipelineNULL::~ProgramPipelineNULL() {}
20 
21 }  // namespace rx
22