jak-project/game/graphics/screenshot.h
water111 807ca7465f
fix c++ compiler warnings, extract_merc assert (#3488)
Co-authored-by: ManDude <7569514+ManDude@users.noreply.github.com>
2024-05-03 17:29:18 +01:00

28 lines
595 B
C

#pragma once
#include <memory>
#include "common/common_types.h"
#include "game/kernel/common/kscheme.h"
/*!
* @file screenshot.h
* This file contains a basic interface for the screen shot system to make it easier to share with
* the GOAL kernel.
*/
// this must match the structure in capture-pc.gc (if present)
struct ScreenShotSettings {
s32 width;
s32 height;
s32 msaa;
char name[244];
};
extern ScreenShotSettings* g_screen_shot_settings;
extern bool g_want_screenshot;
void register_screen_shot_settings(ScreenShotSettings* settings);
const char* get_screen_shot_name();