Lines Matching defs:out
278 dzn_translate_viewport(D3D12_VIEWPORT *out,
281 out->TopLeftX = in->x;
282 out->TopLeftY = in->height < 0 ? in->height + in->y : in->y;
283 out->Width = in->width;
284 out->Height = fabs(in->height);
285 out->MinDepth = MIN2(in->minDepth, in->maxDepth);
286 out->MaxDepth = MAX2(in->maxDepth, in->minDepth);
290 dzn_translate_rect(D3D12_RECT *out,
293 out->left = in->offset.x;
294 out->top = in->offset.y;
295 out->right = in->offset.x + in->extent.width;
296 out->bottom = in->offset.y + in->extent.height;