summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/gsp_gpu.cpp
blob: 757011e26880510b012ee6b772a51d3b1c759f7b (plain) (blame)
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
27
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "core/hle/service/gsp_gpu.h"

namespace Service {
namespace GSP {

/**
 * Signals that the specified interrupt type has occurred to userland code
 * @param interrupt_id ID of interrupt that is being signalled
 * @todo This should probably take a thread_id parameter and only signal this thread?
 * @todo This probably does not belong in the GSP module, instead move to video_core
 */
void SignalInterrupt(InterruptId interrupt_id) {
    UNIMPLEMENTED();
}

GSP_GPU::GSP_GPU() {
}

GSP_GPU::~GSP_GPU() {
}

} // namespace GSP
} // namespace Service