Lines Matching refs:present_params
1325 D3DPRESENT_PARAMETERS present_params; in d3d_init_swap_chain() local
1349 ZeroMemory (&present_params, sizeof (present_params)); in d3d_init_swap_chain()
1350 present_params.Windowed = TRUE; in d3d_init_swap_chain()
1351 present_params.SwapEffect = D3DSWAPEFFECT_DISCARD; /* D3DSWAPEFFECT_COPY */ in d3d_init_swap_chain()
1352 present_params.hDeviceWindow = hWnd; in d3d_init_swap_chain()
1353 present_params.BackBufferFormat = klass->d3d.device.format; in d3d_init_swap_chain()
1356 &present_params, &d3d_swapchain); in d3d_init_swap_chain()
2557 memset (&device->present_params, 0, sizeof (device->present_params)); in d3d_class_display_device_create()
2607 device->present_params.Windowed = TRUE; in d3d_class_display_device_create()
2608 device->present_params.SwapEffect = D3DSWAPEFFECT_DISCARD; in d3d_class_display_device_create()
2609 device->present_params.BackBufferCount = 1; in d3d_class_display_device_create()
2610 device->present_params.BackBufferFormat = device->format; in d3d_class_display_device_create()
2611 device->present_params.BackBufferWidth = 1; in d3d_class_display_device_create()
2612 device->present_params.BackBufferHeight = 1; in d3d_class_display_device_create()
2613 device->present_params.MultiSampleType = D3DMULTISAMPLE_NONE; in d3d_class_display_device_create()
2614 …device->present_params.PresentationInterval = D3DPRESENT_INTERVAL_DEFAULT; /* D3DPRESENT_INTERV… in d3d_class_display_device_create()
2619 create_mask, &device->present_params, in d3d_class_display_device_create()
2724 &klass->d3d.device.present_params); in d3d_class_reset_display_device()