78 lines
3.6 KiB
C
78 lines
3.6 KiB
C
/*
|
|
* Copyright 2016 Matteo Bruni for CodeWeavers
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include "wine/port.h"
|
|
#include "d3dx11.h"
|
|
#include "d3dcompiler.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3dx);
|
|
|
|
HRESULT WINAPI D3DX11CompileFromMemory(const char *data, SIZE_T data_size, const char *filename,
|
|
const D3D10_SHADER_MACRO *defines, ID3D10Include *include, const char *entry_point,
|
|
const char *target, UINT sflags, UINT eflags, ID3DX11ThreadPump *pump, ID3D10Blob **shader,
|
|
ID3D10Blob **error_messages, HRESULT *hresult)
|
|
{
|
|
TRACE("data %s, data_size %lu, filename %s, defines %p, include %p, entry_point %s, target %s, "
|
|
"sflags %#x, eflags %#x, pump %p, shader %p, error_messages %p, hresult %p.\n",
|
|
debugstr_a(data), data_size, debugstr_a(filename), defines, include, debugstr_a(entry_point),
|
|
debugstr_a(target), sflags, eflags, pump, shader, error_messages, hresult);
|
|
|
|
if (pump)
|
|
FIXME("Unimplemented ID3DX11ThreadPump handling.\n");
|
|
|
|
return D3DCompile(data, data_size, filename, defines, include, entry_point, target,
|
|
sflags, eflags, shader, error_messages);
|
|
}
|
|
|
|
HRESULT WINAPI D3DX11CompileFromFileA(const char *filename, const D3D10_SHADER_MACRO *defines,
|
|
ID3D10Include *include, const char *entry_point, const char *target, UINT sflags, UINT eflags,
|
|
ID3DX11ThreadPump *pump, ID3D10Blob **shader, ID3D10Blob **error_messages, HRESULT *hresult)
|
|
{
|
|
FIXME("filename %s, defines %p, include %p, entry_point %s, target %s, sflags %#x, "
|
|
"eflags %#x, pump %p, shader %p, error_messages %p, hresult %p stub.\n",
|
|
debugstr_a(filename), defines, include, debugstr_a(entry_point), debugstr_a(target),
|
|
sflags, eflags, pump, shader, error_messages, hresult);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
HRESULT WINAPI D3DX11CompileFromFileW(const WCHAR *filename, const D3D10_SHADER_MACRO *defines,
|
|
ID3D10Include *include, const char *entry_point, const char *target, UINT sflags, UINT eflags,
|
|
ID3DX11ThreadPump *pump, ID3D10Blob **shader, ID3D10Blob **error_messages, HRESULT *hresult)
|
|
{
|
|
FIXME("filename %s, defines %p, include %p, entry_point %s, target %s, sflags %#x, "
|
|
"eflags %#x, pump %p, shader %p, error_messages %p, hresult %p stub.\n",
|
|
debugstr_w(filename), defines, include, debugstr_a(entry_point), debugstr_a(target),
|
|
sflags, eflags, pump, shader, error_messages, hresult);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
HRESULT WINAPI D3DX11CreateTextureFromMemory(ID3D11Device *device, const void *data,
|
|
SIZE_T data_size, D3DX11_IMAGE_LOAD_INFO *load_info, ID3DX11ThreadPump *pump,
|
|
ID3D11Resource **texture, HRESULT *hresult)
|
|
{
|
|
FIXME("device %p, data %p, data_size %lu, load_info %p, pump %p, texture %p, hresult %p stub.\n",
|
|
device, data, data_size, load_info, pump, texture, hresult);
|
|
|
|
return E_NOTIMPL;
|
|
}
|