ChangeSet ID: 13941 CVSROOT: /opt/cvs-commit Module name: wine Changes by: julliard@wine.codeweavers.com 2004/09/27 21:12:12
Modified files: include/wine : wined3d_interface.h dlls/wined3d : wined3d_private.h wined3d_main.c directx.c Makefile.in dlls/d3d9 : directx.c dlls/d3d8 : directx.c d3d8_private.h d3d8_main.c Makefile.in Added files: dlls/wined3d : utils.c
Log message: Jason Edmeades us@the-edmeades.demon.co.uk - Make d3d8 know about the wined3d device and start using it. - Move some of the screen mode related functions into wined3d and add untested support for the new d3d9 options of providing the format to some of the calls. - Move other functions from the directx interface into the common library and implement the calls from d3d9 as well. - Copy across the first of the functions used to make traces more readable, creating utils.c to store them in. Eventually the ones in d3d8 will be removed but for now just duplicate the code.
Patch: http://cvs.winehq.org/patch.py?id=13941
Old revision New revision Changes Path 1.2 1.3 +12 -0 wine/include/wine/wined3d_interface.h 1.2 1.3 +4 -0 wine/dlls/wined3d/wined3d_private.h 1.2 1.3 +1 -0 wine/dlls/wined3d/wined3d_main.c 1.1 1.2 +238 -3 wine/dlls/wined3d/directx.c 1.3 1.4 +1 -0 wine/dlls/wined3d/Makefile.in 1.6 1.7 +9 -11 wine/dlls/d3d9/directx.c 1.76 1.77 +14 -145 wine/dlls/d3d8/directx.c 1.56 1.57 +4 -0 wine/dlls/d3d8/d3d8_private.h 1.17 1.18 +2 -2 wine/dlls/d3d8/d3d8_main.c 1.12 1.13 +1 -1 wine/dlls/d3d8/Makefile.in Added 1.1 +0 -0 wine/dlls/wined3d/utils.c