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