ChangeSet ID: 8393 CVSROOT: /home/winehq/opt/cvs-commit Module name: wine Changes by: julliard@wine.codeweavers.com 2003/06/04 16:55:29
Modified files: dlls/d3d8 : volumetexture.c texture.c swapchain.c surface.c stateblock.c shader.c resource.c directx.c device.c d3d8_private.h cubetexture.c basetexture.c Makefile.in Added files: dlls/d3d8 : utils.c
Log message: Raphael Junqueira fenix@club-internet.fr - implemented render to surfaces (and render to new rendertargets) using glx pbuffers (with a useful debug code to display rendered surface into window drawable) - better cubetextures - split utilities functions into utils.c and added more - more readable debug again - a better caps code (not perfect but i'll use glx code later) - use of the new caps code - begin of UpdateTexture - begin of Cursor support - cleaning most of deprecated #if 0/#endif - correct some lockable/unlockable behavior - correct some returns code
Patch: http://cvs.winehq.com/patch.py?root=/home/winehq/opt/cvs-commit&id=8393
Old revision New revision Changes Path 1.8 1.9 +11 -6 wine/dlls/d3d8/volumetexture.c 1.8 1.9 +30 -15 wine/dlls/d3d8/texture.c 1.4 1.5 +0 -1 wine/dlls/d3d8/swapchain.c 1.9 1.10 +97 -101 wine/dlls/d3d8/surface.c 1.5 1.6 +14 -14 wine/dlls/d3d8/stateblock.c 1.11 1.12 +1 -0 wine/dlls/d3d8/shader.c 1.5 1.6 +24 -0 wine/dlls/d3d8/resource.c 1.34 1.35 +245 -74 wine/dlls/d3d8/directx.c 1.60 1.61 +491 -546 wine/dlls/d3d8/device.c 1.27 1.28 +180 -63 wine/dlls/d3d8/d3d8_private.h 1.8 1.9 +13 -5 wine/dlls/d3d8/cubetexture.c 1.6 1.7 +15 -0 wine/dlls/d3d8/basetexture.c 1.7 1.8 +1 -0 wine/dlls/d3d8/Makefile.in Added 1.1 +0 -0 wine/dlls/d3d8/utils.c