Module: wine
Branch: master
Commit: bfe7067973c38c3974389b68143259db2e46e97b
URL: http://source.winehq.org/git/wine.git/?a=commit;h=bfe7067973c38c3974389b681…
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Thu Aug 7 14:51:35 2008 -0500
wined3d: Ask the ffp/shader/blit implementation about format support.
If a format is not supported natively by opengl, a shader may be able
to convert it. Up to now, CheckDeviceFormat had magic knowldge which
GL extensions lead to which supported format. This patch adds
functions that allow CheckDeviceFormat to ask the actual
implementation for its capabilities.
---
dlls/wined3d/arb_program_shader.c | 19 ++++
dlls/wined3d/ati_fragment_shader.c | 14 +++
dlls/wined3d/baseshader.c | 18 ++++-
dlls/wined3d/directx.c | 152 +++++++++++++++++-----------------
dlls/wined3d/glsl_shader.c | 18 ++++
dlls/wined3d/nvidia_texture_shader.c | 7 ++
dlls/wined3d/state.c | 5 +
dlls/wined3d/surface.c | 8 ++-
dlls/wined3d/utils.c | 15 ++++
dlls/wined3d/wined3d_private.h | 3 +
10 files changed, 180 insertions(+), 79 deletions(-)
Diff: http://source.winehq.org/git/wine.git/?a=commitdiff;h=bfe7067973c38c3974389…
Module: wine
Branch: master
Commit: e0df1b9e578d6bd3eab1dc7dcabe404806f04d00
URL: http://source.winehq.org/git/wine.git/?a=commit;h=e0df1b9e578d6bd3eab1dc7dc…
Author: Hongbo Ni <hongbo(a)njstar.com>
Date: Wed Aug 6 10:20:40 2008 +1000
msvcmaker: Fix msvc project file generation under MinGW32.
When converting a makefile to a msvc .dsp file, if a line is ended with
a back slash, it will be joined with next line. This patch changes the
joining character from '\n' to a space in order to fix the bug of
running MinGW32 on Windows.
---
tools/winapi/msvcmaker | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tools/winapi/msvcmaker b/tools/winapi/msvcmaker
index 132d655..01b6d4b 100755
--- a/tools/winapi/msvcmaker
+++ b/tools/winapi/msvcmaker
@@ -135,7 +135,7 @@ MAKEFILE_IN: foreach my $makefile_in_file (@makefile_in_files) {
chomp $line;
if($lookahead) {
$lookahead = 0;
- $_ .= "\n" . $line;
+ $_ .= " " . $line;
} else {
$_ = $line;
}