summaryrefslogtreecommitdiffstats
path: root/src/video_core/video_core.h
blob: 5b373bcb1f5fdff63675bcc81e60889b1c007e19 (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.

#pragma once

#include <memory>

namespace Core::Frontend {
class EmuWindow;
}

namespace VideoCore {

class RendererBase;

/**
 * Creates a renderer instance.
 *
 * @note The returned renderer instance is simply allocated. Its Init()
 *       function still needs to be called to fully complete its setup.
 */
std::unique_ptr<RendererBase> CreateRenderer(Core::Frontend::EmuWindow& emu_window);

u16 GetResolutionScaleFactor(const RendererBase& renderer);

} // namespace VideoCore