mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[D3DCOMPILER_43] Sync with Wine Staging 4.0. CORE-15682
This commit is contained in:
parent
05b6b55610
commit
6971090559
2 changed files with 6 additions and 3 deletions
|
@ -2138,9 +2138,12 @@ static void debug_dump_ir_constructor(const struct hlsl_ir_constructor *construc
|
||||||
|
|
||||||
static const char *debug_writemask(DWORD writemask)
|
static const char *debug_writemask(DWORD writemask)
|
||||||
{
|
{
|
||||||
char string[5], components[] = {'x', 'y', 'z', 'w'};
|
static const char components[] = {'x', 'y', 'z', 'w'};
|
||||||
|
char string[5];
|
||||||
unsigned int i = 0, pos = 0;
|
unsigned int i = 0, pos = 0;
|
||||||
|
|
||||||
|
assert(!(writemask & ~BWRITERSP_WRITEMASK_ALL));
|
||||||
|
|
||||||
while (writemask)
|
while (writemask)
|
||||||
{
|
{
|
||||||
if (writemask & 1)
|
if (writemask & 1)
|
||||||
|
@ -2176,7 +2179,7 @@ static void debug_dump_ir_swizzle(const struct hlsl_ir_swizzle *swizzle)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
char c[] = {'x', 'y', 'z', 'w'};
|
static const char c[] = {'x', 'y', 'z', 'w'};
|
||||||
|
|
||||||
for (i = 0; i < swizzle->node.data_type->dimx; ++i)
|
for (i = 0; i < swizzle->node.data_type->dimx; ++i)
|
||||||
TRACE("%c", c[(swizzle->swizzle >> i * 2) & 0x3]);
|
TRACE("%c", c[(swizzle->swizzle >> i * 2) & 0x3]);
|
||||||
|
|
|
@ -24,7 +24,7 @@ The following libraries are shared with Wine.
|
||||||
reactos/dll/directx/wine/amstream # Synced to WineStaging-3.9
|
reactos/dll/directx/wine/amstream # Synced to WineStaging-3.9
|
||||||
reactos/dll/directx/wine/d3d8 # Synced to WineStaging-3.9
|
reactos/dll/directx/wine/d3d8 # Synced to WineStaging-3.9
|
||||||
reactos/dll/directx/wine/d3d9 # Synced to WineStaging-3.9
|
reactos/dll/directx/wine/d3d9 # Synced to WineStaging-3.9
|
||||||
reactos/dll/directx/wine/d3dcompiler_43 # Synced to WineStaging-3.17
|
reactos/dll/directx/wine/d3dcompiler_43 # Synced to WineStaging-4.0
|
||||||
reactos/dll/directx/wine/d3drm # Synced to WineStaging-3.9
|
reactos/dll/directx/wine/d3drm # Synced to WineStaging-3.9
|
||||||
reactos/dll/directx/wine/d3dx9_24 => 43 # Synced to WineStaging-3.17
|
reactos/dll/directx/wine/d3dx9_24 => 43 # Synced to WineStaging-3.17
|
||||||
reactos/dll/directx/wine/d3dxof # Synced to WineStaging-3.17
|
reactos/dll/directx/wine/d3dxof # Synced to WineStaging-3.17
|
||||||
|
|
Loading…
Reference in a new issue