2018-05-08 10:39:47 +00:00
|
|
|
#ifndef __NVIF_DISP_H__
|
|
|
|
#define __NVIF_DISP_H__
|
|
|
|
#include <nvif/object.h>
|
|
|
|
struct nvif_device;
|
|
|
|
|
|
|
|
struct nvif_disp {
|
|
|
|
struct nvif_object object;
|
|
|
|
};
|
|
|
|
|
2020-03-30 04:03:20 +00:00
|
|
|
int nvif_disp_ctor(struct nvif_device *, const char *name, s32 oclass,
|
|
|
|
struct nvif_disp *);
|
2018-05-08 10:39:47 +00:00
|
|
|
void nvif_disp_dtor(struct nvif_disp *);
|
|
|
|
#endif
|