Module: wine
Branch: refs/heads/master
Commit: e4441d7e6f4c3fe5a2a8c87f27255d379be3e325
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=e4441d7e6f4c3fe5a2a8c87…
Author: Eric Pouech <eric.pouech(a)wanadoo.fr>
Date: Mon Jun 26 21:37:32 2006 +0200
dbghelp: Module info.
- now internally storing module info as a 64bit module structure
(the interest in not in the 64 bit side of things, but because
it allows storing lots of usefull information)
- fixed SymGetModuleInfo64W which wasn't returning the
LoadedPdbName field
- now filling for MSC files with the extended information
(instead of guessing it)
- reused the extended module info to store wine ELF module
information (link for map link, stabs vs dwarf symbol info)
---
dlls/dbghelp/coff.c | 14 ++++++--
dlls/dbghelp/dbghelp_private.h | 2 +
dlls/dbghelp/dwarf.c | 7 ++++
dlls/dbghelp/elf_module.c | 4 ++
dlls/dbghelp/module.c | 70 +++++++++++++++++++---------------------
dlls/dbghelp/msc.c | 31 +++++++++++++++++-
dlls/dbghelp/stabs.c | 7 ++++
7 files changed, 91 insertions(+), 44 deletions(-)
Diff: http://source.winehq.org/git/?p=wine.git;a=commitdiff;h=e4441d7e6f4c3fe5a2a…
Module: wine
Branch: refs/heads/master
Commit: baf38b30077aee92ba60fd705e17b78889e28d66
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=baf38b30077aee92ba60fd7…
Author: Jason Green <jave27(a)gmail.com>
Date: Tue Jun 27 02:00:02 2006 -0400
wined3d: Implement more GLSL instructions and a little cleanup.
- Implement D3DSIO_DP2ADD, D3DSIO_TEXKILL, D3DSIO_TEXM3X3PAD
- Partially implement D3DSIO_TEXBEM, D3DSIO_TEXM3X3VSPEC (as much as
they are implemented in ARB_fragment_program at least).
- Stop copying the SHADER_PARSE_STATE struct in each ARB shader
routine - use a pointer instead.
---
dlls/wined3d/baseshader.c | 1
dlls/wined3d/glsl_shader.c | 100 +++++++++++++++++++++++++++++++++++++++-
dlls/wined3d/pixelshader.c | 32 ++++++-------
dlls/wined3d/wined3d_private.h | 5 ++
4 files changed, 120 insertions(+), 18 deletions(-)
Diff: http://source.winehq.org/git/?p=wine.git;a=commitdiff;h=baf38b30077aee92ba6…