2022-01-30 17:41:08 +00:00
|
|
|
// Copyright (c) 2012- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-01-30 18:37:50 +00:00
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
class PointerWrap;
|
|
|
|
|
2022-01-30 17:41:08 +00:00
|
|
|
typedef void (*VblankCallback)();
|
|
|
|
// Listen for vblank events.
|
|
|
|
void __DisplayListenVblank(VblankCallback callback);
|
|
|
|
typedef void (*FlipCallback)(void *userdata);
|
|
|
|
void __DisplayListenFlip(FlipCallback callback, void *userdata);
|
|
|
|
void __DisplayForgetFlip(FlipCallback callback, void *userdata);
|
|
|
|
|
2022-01-30 18:37:50 +00:00
|
|
|
int __DisplayGetFlipCount();
|
|
|
|
int __DisplayGetNumVblanks();
|
|
|
|
int __DisplayGetVCount();
|
|
|
|
bool DisplayIsVblank();
|
|
|
|
uint64_t DisplayFrameStartTicks();
|
|
|
|
uint32_t __DisplayGetCurrentHcount();
|
|
|
|
uint32_t __DisplayGetAccumulatedHcount();
|
|
|
|
void DisplayAdjustAccumulatedHcount(uint32_t diff);
|
|
|
|
|
|
|
|
void __DisplayGetDebugStats(char stats[], size_t bufsize);
|
|
|
|
void __DisplayGetAveragedFPS(float *out_vps, float *out_fps);
|
|
|
|
void __DisplayGetFPS(float *out_vps, float *out_fps, float *out_actual_fps);
|
|
|
|
void __DisplayGetVPS(float *out_vps);
|
|
|
|
double *__DisplayGetFrameTimes(int *out_valid, int *out_pos, double **out_sleep);
|
|
|
|
int DisplayGetSleepPos();
|
|
|
|
void DisplayNotifySleep(double t, int pos = -1);
|
|
|
|
bool DisplayIsRunningSlow();
|
|
|
|
|
|
|
|
void DisplayFireVblankStart();
|
|
|
|
void DisplayFireVblankEnd();
|
2022-01-30 17:41:08 +00:00
|
|
|
void DisplayFireFlip();
|
2022-01-30 18:37:50 +00:00
|
|
|
void DisplayFireActualFlip();
|
|
|
|
|
|
|
|
int DisplayCalculateFrameSkip();
|
2022-01-30 17:41:08 +00:00
|
|
|
|
|
|
|
void DisplayHWInit();
|
|
|
|
void DisplayHWShutdown();
|
2022-01-30 18:37:50 +00:00
|
|
|
void DisplayHWDoState(PointerWrap &p, int hleCompatV2);
|