summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend/mame/ui/viewgfx.h
blob: c7fec1d92609f5529e74a6bfaef7a0e7b755ab6a (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
28
29
30
31
32
// license:BSD-3-Clause
// copyright-holders:Nicola Salmoria, Aaron Giles, Nathan Woods
/***************************************************************************

    ui/viewgfx.h

    Internal graphics viewer.

***************************************************************************/

#pragma once

#ifndef __UI_VIEWGFX_H__
#define __UI_VIEWGFX_H__



/***************************************************************************
    FUNCTION PROTOTYPES
***************************************************************************/

// initialization
void ui_gfx_init(running_machine &machine);

// returns 'true' if the internal graphics viewer has relevance
bool ui_gfx_is_relevant(running_machine &machine);

// master handler
UINT32 ui_gfx_ui_handler(render_container &container, mame_ui_manager &mui, bool uistate);


#endif  /* __UI_VIEWGFX_H__ */