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