1 1.1 riastrad /* $NetBSD: disp.h,v 1.2 2021/12/18 23:45:33 riastradh Exp $ */ 2 1.1 riastrad 3 1.1 riastrad #ifndef __NVIF_DISP_H__ 4 1.1 riastrad #define __NVIF_DISP_H__ 5 1.1 riastrad #include <nvif/object.h> 6 1.1 riastrad struct nvif_device; 7 1.1 riastrad 8 1.1 riastrad struct nvif_disp { 9 1.1 riastrad struct nvif_object object; 10 1.1 riastrad }; 11 1.1 riastrad 12 1.1 riastrad int nvif_disp_ctor(struct nvif_device *, s32 oclass, struct nvif_disp *); 13 1.1 riastrad void nvif_disp_dtor(struct nvif_disp *); 14 1.1 riastrad #endif 15