Lines Matching refs:Height
102 This->state.viewport.Height = refSurf->desc.Height; in NineDevice9_SetDefaultState()
109 This->state.scissor.maxy = refSurf->desc.Height; in NineDevice9_SetDefaultState()
751 This->cursor.h = MIN2(surf->desc.Height, 32); in NineDevice9_SetCursorProperties()
755 This->cursor.h = MIN2(surf->desc.Height, This->cursor.image->height0); in NineDevice9_SetCursorProperties()
1032 UINT Height, in NineDevice9_CreateTexture() argument
1044 "ppOut=%p pSharedHandle=%p\n", This, Width, Height, Levels, in NineDevice9_CreateTexture()
1054 hr = NineTexture9_new(This, Width, Height, Levels, Usage, Format, Pool, in NineDevice9_CreateTexture()
1065 UINT Height, in NineDevice9_CreateVolumeTexture() argument
1078 "ppOut=%p pSharedHandle=%p\n", This, Width, Height, Depth, Levels, in NineDevice9_CreateVolumeTexture()
1087 hr = NineVolumeTexture9_new(This, Width, Height, Depth, Levels, in NineDevice9_CreateVolumeTexture()
1206 UINT Width, UINT Height, in create_zs_or_rt_surface() argument
1220 This, type, nine_D3DPOOL_to_str(Pool), Width, Height, in create_zs_or_rt_surface()
1227 user_assert(Width && Height, D3DERR_INVALIDCALL); in create_zs_or_rt_surface()
1237 desc.Height = Height; in create_zs_or_rt_surface()
1258 UINT Height, in NineDevice9_CreateRenderTarget() argument
1268 Width, Height, Format, in NineDevice9_CreateRenderTarget()
1276 UINT Height, in NineDevice9_CreateDepthStencilSurface() argument
1288 Width, Height, Format, in NineDevice9_CreateDepthStencilSurface()
1338 pSourceRect->bottom <= src->desc.Height, in NineDevice9_UpdateSurface()
1342 copy_height = src->desc.Height; in NineDevice9_UpdateSurface()
1356 destRect.bottom <= dst->desc.Height, in NineDevice9_UpdateSurface()
1374 copy_height == src->desc.Height && in NineDevice9_UpdateSurface()
1375 copy_height == dst->desc.Height)) { in NineDevice9_UpdateSurface()
1465 dst->surfaces[l]->desc.Height); in NineDevice9_UpdateTexture()
1492 dst->surfaces[l * 6 + z]->desc.Height); in NineDevice9_UpdateTexture()
1545 user_assert(src->desc.Height == dst->desc.Height, D3DERR_INVALIDCALL); in NineDevice9_GetRenderTargetData()
1605 pSourceRect->bottom == src->desc.Height), D3DERR_INVALIDCALL); in NineDevice9_StretchRect()
1610 pDestRect->bottom == dst->desc.Height), D3DERR_INVALIDCALL); in NineDevice9_StretchRect()
1613 dst->desc.Height == src->desc.Height), D3DERR_INVALIDCALL); in NineDevice9_StretchRect()
1659 blit.dst.box.height = dst->desc.Height; in NineDevice9_StretchRect()
1683 blit.src.box.y = flip_y ? src->desc.Height : 0; in NineDevice9_StretchRect()
1685 blit.src.box.height = flip_y ? -src->desc.Height : src->desc.Height; in NineDevice9_StretchRect()
1728 dst->desc.Width, dst->desc.Height); in NineDevice9_StretchRect()
1733 src->desc.Width, src->desc.Height); in NineDevice9_StretchRect()
1757 blit.dst.box.y + blit.dst.box.height <= dst->desc.Height && in NineDevice9_StretchRect()
1758 blit.src.box.y + blit.src.box.height <= src->desc.Height); in NineDevice9_StretchRect()
1814 h = surf->desc.Height; in NineDevice9_ColorFill()
1840 UINT Height, in NineDevice9_CreateOffscreenPlainSurface() argument
1850 Width, Height, d3dformat_to_string(Format), Format, Pool, in NineDevice9_CreateOffscreenPlainSurface()
1860 hr = create_zs_or_rt_surface(This, 2, Pool, Width, Height, in NineDevice9_CreateOffscreenPlainSurface()
1890 This->state.viewport.Height = rt->desc.Height; in NineDevice9_SetRenderTarget()
1897 This->state.scissor.maxy = rt->desc.Height; in NineDevice9_SetRenderTarget()
2063 pViewport->X, pViewport->Y, pViewport->Width, pViewport->Height, in NineDevice9_SetViewport()
2628 h = state->rt[i]->desc.Height; in NineDevice9_ValidateDevice()
2630 if (state->rt[i]->desc.Width != w || state->rt[i]->desc.Height != h) { in NineDevice9_ValidateDevice()
2637 (state->ds->desc.Width != w || state->ds->desc.Height != h)) in NineDevice9_ValidateDevice()