search for: copyrect

Displaying 9 results from an estimated 9 matches for "copyrect".

2016 Jun 24
0
Wine release 1.9.13
...nish the move to use wine_dbgstr_rect(). comctl32/tests: Use EqualRect() instead of memcmp() to compare RECTs. amstream: Use SetRect() instead of open coding it. atl: Simplify RECT assignments. gdi32/tests: Use SetRect() instead of open coding it. avifil32: Avoid using CopyRect(). comdlg32: Avoid using CopyRect(). user32/tests: Avoid using CopyRect(). shell32: Avoid using CopyRect(). comctl32: Avoid using CopyRect() on RECT structs. Nikolay Sivov (21): shlwapi: Fix a string leak (Valgrind). mshtml/tests: Release interface after success...
2016 Aug 05
0
Wine release 1.9.16
...ael Stefaniuc (25): dmusic: Use debugstr_guid to trace some GUIDs. dmime: Use debugstr_guid() to trace a REFIID. ddraw: Don't memset memory before overwritting it. comctl32: Remove an always true conditional expression. comctl32: Use straight assignments instead of CopyRect(). comctl32: Avoid using memset on RECTs. comctl32/tests: Avoid using memset() on RECTs. comctl32/tests: Use SetRectEmpty() instead of SetRect(). mshtml: Use SetRectEmpty() instead of memset(). wined3d: Use SetRect() instead of open coding it. ddraw: Use SetRectE...
2016 Nov 11
0
Wine release 1.9.23
...crypt32: Import system root certs into volatile registry keys instead of dedicated root store. crypt32/tests: Testing priorities and flags of stores in a collection; and whether certs are saved in registry endpoint. Hadrien Boizard (1): uxtheme: Use straight assignments instead of CopyRect(). Hans Leidekker (10): msi/tests: Fix some test failures on Windows 10. msi: Handle descriptors without component in MsiProvideQualifiedComponentEx. msi/tests: Properly clean up test services. msi/tests: Fix a typo in test data. msi: Use exact size for squashed GUID...
2016 Oct 01
0
Wine release 1.9.20
...: Remove two commented out printf(). user32/tests: Use EqualRect() instead of open coding it. user32/tests: Use wine_dbgstr_rect() to print rects. dpvoice: Use debugstr_guid() to trace GUIDs. strmbase: Don't bother tracing the GUID pointers too. quartz: Avoid using CopyRect(). webservices/tests: Use IsEqualGUID() to compare GUIDs. Piotr Caban (13): msvcp140: Add codecvt<char,char,_Mbstatet> exports. msvcp140: Add _Cnd_init_in_situ implementation. msvcp140: Add _Execute_once implementation. msvcp140: Introduce _Mbstatet structure....
2007 Mar 02
0
Wine release 0.9.32
...t the fixed / unfixed vertices warning with shaders. wined3d: Light parameter fixes. wined3d: Floating point shader constant setting. wined3d: IWineD3DDevice::Clear fixes. wined3d: Clean up sampler usage in UpdateSurface. wined3d: Index buffer fixes. wined3d: Use CopyRect / EqualRect. wined3d: Remove dead code from drawprim.c. wined3d: Do not use glMapBuffer in ProcessVertices. wined3d: Make sure volumes have memory allocated. wined3d: Index buffer creation adjustments. winex11.drv: Ignore depth mismatch when using a virtual desktop....
2006 Oct 27
0
Wine release 0.9.24
...ntext to gdi32. wgl: Move wglGetCurrentDC to gdi32. wgl: Move wglShareLists to gdi32. wgl: Move wglDeleteContext to gdi32. gdi32: Add missing spec file entry for wglDeleteContext. wgl: Move part of wglGetProcAddress to gdi32. Stefan D?singer (7): d3d8: Implement CopyRects with BltFast. ddraw: Make the surface list a standard wine list. ddraw: Use real handles for state blocks. ddraw: Implement GetRenderState for D3DRENDERSTATE_TEXTUREHANDLE. ddraw: Implement GetRenderState for D3DRENDERSTATE_TEXTUREADDRESS[U/V]. ddraw: Implement GetRen...
2011 Nov 04
0
Wine release 1.3.32
...ddraw: Only update primary_lock when we're actually locking the frontbuffer. wined3d: Rename nCfgs to cfg_count. wined3d: Make the device parameter to surface_blt_to_drawable() const. wined3d: Make the device parameter to wined3d_event_query_test() const. d3d8: Implement CopyRects() on top of wined3d_surface_blt(). ddraw: Implement copy_mipmap_chain() on top of wined3d_surface_blt(). ddraw: Implement ddraw_surface7_BltFast() on top of wined3d_surface_blt(). wined3d: Make the device parameter to wined3d_event_query_finish() const. wined3d: Make the de...
2011 Oct 21
0
Wine release 1.3.31
...anup. wined3d: Make the present_parameters parameter to wined3d_device_reset() const. wined3d: Make the device parameter to wined3d_device_get_creation_parameters() const. wined3d: Allow loading multisampled surfaces into sysmem. d3d8/tests: Add a small test for multisampled CopyRects(). d3d9/tests: Add a small test for multisampled GetRenderTargetData(). wined3d: Make the device parameter to wined3d_device_set_gamma_ramp() const. wined3d: Make the device parameter to wined3d_device_get_gamma_ramp() const. wined3d: Move the cursor in wined3d_device_set_c...
2009 Mar 02
0
[PATCH 4 of 13] DisplayState interface change
..._pointer_type_change = 0; vs->has_WMVi = 0; vs->absolute = -1; - vs->ds->dpy_copy = NULL; + dcl->dpy_copy = NULL; for (i = n_encodings - 1; i >= 0; i--) { switch (encodings[i]) { @@ -1576,7 +1520,7 @@ vs->has_hextile = 0; break; case 1: /* CopyRect */ - vs->ds->dpy_copy = vnc_copy; + dcl->dpy_copy = vnc_copy; break; case 5: /* Hextile */ vs->has_hextile = 1; @@ -1717,30 +1661,15 @@ vnc_write(vs, pad, 3); /* padding */ } -static void vnc_dpy_setdata(DisplayState *ds, void *pixels) +static voi...