ChangeSet ID: 15488 CVSROOT: /opt/cvs-commit Module name: wine Changes by: julliard@wine.codeweavers.com 2005/01/17 07:44:57
Modified files: include/wine : wined3d_interface.h dlls/wined3d : wined3d_private.h vertexbuffer.c utils.c surface.c indexbuffer.c drawprim.c device.c basetexture.c Makefile.in dlls/d3d9 : volumetexture.c volume.c texture.c surface.c resource.c device.c d3d9_private.h cubetexture.c basetexture.c Added files: dlls/wined3d : volumetexture.c volume.c texture.c cubetexture.c
Log message: Jason Edmeades us@the-edmeades.demon.co.uk - Add texture support for all the texture types for d3d9->wined3d. - Add prototypes for the COM interfaces. - Fix some incorrect types from the last patch.
Patch: http://cvs.winehq.org/patch.py?id=15488
Old revision New revision Changes Path 1.21 1.22 +306 -2 wine/include/wine/wined3d_interface.h 1.20 1.21 +398 -2 wine/dlls/wined3d/wined3d_private.h 1.6 1.7 +9 -9 wine/dlls/wined3d/vertexbuffer.c 1.5 1.6 +13 -0 wine/dlls/wined3d/utils.c 1.1 1.2 +14 -9 wine/dlls/wined3d/surface.c 1.4 1.5 +9 -9 wine/dlls/wined3d/indexbuffer.c 1.4 1.5 +21 -65 wine/dlls/wined3d/drawprim.c 1.17 1.18 +339 -0 wine/dlls/wined3d/device.c 1.2 1.3 +16 -10 wine/dlls/wined3d/basetexture.c 1.11 1.12 +4 -0 wine/dlls/wined3d/Makefile.in 1.7 1.8 +54 -69 wine/dlls/d3d9/volumetexture.c 1.7 1.8 +55 -28 wine/dlls/d3d9/volume.c 1.8 1.9 +54 -64 wine/dlls/d3d9/texture.c 1.8 1.9 +23 -1 wine/dlls/d3d9/surface.c 1.7 1.8 +1 -0 wine/dlls/d3d9/resource.c 1.16 1.17 +11 -2 wine/dlls/d3d9/device.c 1.10 1.11 +16 -50 wine/dlls/d3d9/d3d9_private.h 1.8 1.9 +57 -74 wine/dlls/d3d9/cubetexture.c 1.7 1.8 +9 -16 wine/dlls/d3d9/basetexture.c Added 1.1 +0 -0 wine/dlls/wined3d/volumetexture.c Added 1.1 +0 -0 wine/dlls/wined3d/volume.c Added 1.1 +0 -0 wine/dlls/wined3d/texture.c Added 1.1 +0 -0 wine/dlls/wined3d/cubetexture.c