summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/nvnflinger/graphic_buffer_producer.cpp
blob: d72b49a8e7a13481033220a0ceade2d7e07efac3 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                                         
                                            
                                              

                                                                                                                                 

                                                                
 
                            
 
                                                         




                                                 
                               
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-FileCopyrightText: Copyright 2010 The Android Open Source Project
// SPDX-License-Identifier: GPL-3.0-or-later
// Parts of this implementation were based on:
// https://cs.android.com/android/platform/superproject/+/android-5.1.1_r38:frameworks/native/libs/gui/IGraphicBufferProducer.cpp

#include "core/hle/service/nvnflinger/graphic_buffer_producer.h"
#include "core/hle/service/nvnflinger/parcel.h"

namespace Service::android {

QueueBufferInput::QueueBufferInput(InputParcel& parcel) {
    parcel.ReadFlattened(*this);
}

QueueBufferOutput::QueueBufferOutput() = default;

} // namespace Service::android