summaryrefslogtreecommitdiff
path: root/platform/wavelet3d/host_sw/gfx.h
blob: 2677ef44d7448ac770d3a92a8e8f44d81a1c64ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef GFX_H
#define GFX_H

enum gfx_probe_result
{
	GFX_PROBE_BOOTROM,
	GFX_PROBE_FIRMWARE,
	GFX_PROBE_FAILED,
};

enum gfx_probe_result gfx_probe(void);
int                   gfx_fw_load(const void *image, size_t image_len);

#endif