ChangeSet ID: 15293 CVSROOT: /opt/cvs-commit Module name: wine Changes by: julliard@wine.codeweavers.com 2005/01/09 11:37:02
Modified files: include/wine : wined3d_interface.h include : d3d9types.h dlls/wined3d : wined3d_private.h vertexbuffer.c utils.c stateblock.c resource.c indexbuffer.c directx.c device.c basetexture.c Makefile.in dlls/d3d9 : surface.c directx.c device.c d3d9_private.h dlls/d3d8 : surface.c directx.c d3d8_private.h Added files: dlls/wined3d : surface.c
Log message: Jason Edmeades us@the-edmeades.demon.co.uk Add render target support, and ensure there is a front and back buffer created during device creation.
Patch: http://cvs.winehq.org/patch.py?id=15293
Old revision New revision Changes Path 1.20 1.21 +99 -2 wine/include/wine/wined3d_interface.h 1.5 1.6 +1 -0 wine/include/d3d9types.h 1.19 1.20 +52 -2 wine/dlls/wined3d/wined3d_private.h 1.5 1.6 +1 -1 wine/dlls/wined3d/vertexbuffer.c 1.4 1.5 +207 -0 wine/dlls/wined3d/utils.c 1.5 1.6 +85 -87 wine/dlls/wined3d/stateblock.c 1.3 1.4 +1 -1 wine/dlls/wined3d/resource.c 1.3 1.4 +1 -1 wine/dlls/wined3d/indexbuffer.c 1.16 1.17 +27 -18 wine/dlls/wined3d/directx.c 1.15 1.16 +77 -28 wine/dlls/wined3d/device.c 1.1 1.2 +12 -2 wine/dlls/wined3d/basetexture.c 1.10 1.11 +1 -0 wine/dlls/wined3d/Makefile.in 1.7 1.8 +53 -39 wine/dlls/d3d9/surface.c 1.14 1.15 +18 -1 wine/dlls/d3d9/directx.c 1.15 1.16 +17 -3 wine/dlls/d3d9/device.c 1.9 1.10 +1 -13 wine/dlls/d3d9/d3d9_private.h 1.40 1.41 +1 -1 wine/dlls/d3d8/surface.c 1.82 1.83 +19 -1 wine/dlls/d3d8/directx.c 1.58 1.59 +2 -0 wine/dlls/d3d8/d3d8_private.h Added 1.1 +0 -0 wine/dlls/wined3d/surface.c