CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/Core/AVIDump.h
Views: 1401
1
// Copyright 2008 Dolphin Emulator Project
2
// Licensed under GPLv2+
3
// Refer to the license.txt file included.
4
#ifndef MOBILE_DEVICE
5
6
#pragma once
7
8
#include "Common/CommonTypes.h"
9
10
class AVIDump
11
{
12
private:
13
static bool CreateAVI();
14
static void CloseFile();
15
static void CheckResolution(int width, int height);
16
17
public:
18
static bool Start(int w, int h);
19
static void AddFrame();
20
static void Stop();
21
};
22
#endif
23
24