Skip to content

Commit

Permalink
Merge pull request #212 from illusion0001/patch-3
Browse files Browse the repository at this point in the history
Update fliprate and Screenshot Overlay Stub
  • Loading branch information
kiwidoggie authored Oct 4, 2022
2 parents 8d15743 + 2aaa5d7 commit 3bf7311
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
10 changes: 5 additions & 5 deletions include/orbis/ScreenShot.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ void sceScreenShotGetAppInfo();
void sceScreenShotIsDisabled();
// Empty Comment
void sceScreenShotIsVshScreenCaptureDisabled();
// Empty Comment
void sceScreenShotSetOverlayImage();
// Empty Comment
void sceScreenShotSetOverlayImageWithOrigin();
// Sets overlay image with manual positioning
int sceScreenShotSetOverlayImage(const char *overlay_image, int x, int y);
// Sets overlay image with manual positioning
int sceScreenShotSetOverlayImageWithOrigin(const char *overlay_image, int x, int y, int);
// Empty Comment
void sceScreenShotSetParam();

Expand All @@ -38,4 +38,4 @@ void sceScreenShotSetParam();

#ifdef __cplusplus
}
#endif
#endif
6 changes: 5 additions & 1 deletion include/orbis/VideoOut.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ int sceVideoOutRegisterBuffers(int, int, void * const *, int, const OrbisVideoOu
int sceVideoOutUnregisterBuffers(int, int);
int sceVideoOutSubmitFlip(int, int, unsigned int, int64_t);
void sceVideoOutSetBufferAttribute(void *, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int);
int sceVideoOutSetFlipRate(int, int);
// limits framerate in application
// 0 none
// 1 33ms - 30FPS
// 2 50ms - 20FPS
int sceVideoOutSetFlipRate(int handle, int fliprate);
int sceVideoOutAddFlipEvent(OrbisKernelEqueue, int, void *);
int sceVideoOutGetFlipStatus(int, OrbisVideoOutFlipStatus *);
int sceVideoOutIsFlipPending(int);
Expand Down

0 comments on commit 3bf7311

Please sign in to comment.