Lines Matching defs:dri2
9 #include "dri2.h"
987 DRI2InfoRec dri2 = { 0 };
997 dri2.driverNames = drivernames[0];
999 dri2.driverNames = drivernames[1];
1000 dri2.numDrivers = 2;
1001 dri2.driverName = dri2.driverNames[0];
1003 dri2.fd = pNv->dev->fd;
1004 dri2.deviceName = pNv->drm_device_name;
1006 dri2.version = DRI2INFOREC_VERSION;
1007 dri2.CreateBuffer = nouveau_dri2_create_buffer;
1008 dri2.DestroyBuffer = nouveau_dri2_destroy_buffer;
1009 dri2.CopyRegion = nouveau_dri2_copy_region;
1010 dri2.ScheduleSwap = nouveau_dri2_schedule_swap;
1011 dri2.ScheduleWaitMSC = nouveau_dri2_schedule_wait;
1012 dri2.GetMSC = nouveau_dri2_get_msc;
1015 dri2.SwapLimitValidate = nouveau_dri2_swap_limit_validate;
1019 dri2.version = 7;
1020 dri2.GetParam = NULL;
1024 dri2.version = 9;
1025 dri2.CreateBuffer2 = nouveau_dri2_create_buffer2;
1026 dri2.DestroyBuffer2 = nouveau_dri2_destroy_buffer2;
1027 dri2.CopyRegion2 = nouveau_dri2_copy_region2;
1029 return DRI2ScreenInit(pScreen, &dri2);