Searched refs:dst_level (Results 1 – 3 of 3) sorted by relevance
/reactos/dll/directx/wine/wined3d/ |
H A D | surface.c | 936 unsigned int src_level, dst_level; in surface_upload_from_surface() local 953 dst_level = dst_sub_resource_idx % dst_texture->level_count; in surface_upload_from_surface() 954 if (update_w == wined3d_texture_get_level_width(dst_texture, dst_level) in surface_upload_from_surface() 955 && update_h == wined3d_texture_get_level_height(dst_texture, dst_level)) in surface_upload_from_surface() 1762 unsigned int src_height, src_level, dst_level; in fb_copy_to_texture_direct() local 1816 dst_level = dst_sub_resource_idx % dst_texture->level_count; in fb_copy_to_texture_direct() 1825 gl_info->gl_ops.gl.p_glCopyTexSubImage2D(dst_target, dst_level, in fb_copy_to_texture_direct() 1857 gl_info->gl_ops.gl.p_glCopyTexSubImage2D(dst_target, dst_level, in fb_copy_to_texture_direct() 2788 unsigned int src_level, src_layer, dst_level, dst_layer; in raw_blitter_blit() local 2823 dst_level = dst_sub_resource_idx % dst_texture->level_count; in raw_blitter_blit() [all …]
|
H A D | device.c | 4242 unsigned int src_w, src_h, dst_w, dst_h, dst_level; local 4247 dst_level = dst_sub_resource_idx % dst_texture->level_count; 4248 dst_w = wined3d_texture_get_level_width(dst_texture, dst_level) - dst_x; 4249 dst_h = wined3d_texture_get_level_height(dst_texture, dst_level) - dst_y; 4352 unsigned int dst_level, src_level; local 4382 dst_level = dst_sub_resource_idx % dst_texture->level_count; 4383 SetRect(&dst_rect, 0, 0, wined3d_texture_get_level_width(dst_texture, dst_level), 4384 wined3d_texture_get_level_height(dst_texture, dst_level));
|
/reactos/dll/directx/wine/ddraw/ |
H A D | device.c | 6061 struct ddraw_surface *dst_level, *src_level; in copy_mipmap_chain() local 6098 dst_level = dst; in copy_mipmap_chain() 6103 for (;src_level && dst_level;) in copy_mipmap_chain() 6105 if (src_level->surface_desc.dwWidth == dst_level->surface_desc.dwWidth in copy_mipmap_chain() 6106 && src_level->surface_desc.dwHeight == dst_level->surface_desc.dwHeight) in copy_mipmap_chain() 6112 …if (FAILED(hr = wined3d_texture_blt(dst_level->wined3d_texture, dst_level->sub_resource_idx, &dst_… in copy_mipmap_chain() 6120 if (dst_level != dst) in copy_mipmap_chain() 6121 IDirectDrawSurface7_Release(&dst_level->IDirectDrawSurface7_iface); in copy_mipmap_chain() 6123 dst_level = unsafe_impl_from_IDirectDrawSurface7(temp); in copy_mipmap_chain() 6145 if (dst_level && dst_level != dst) in copy_mipmap_chain() [all …]
|