2003-07-01 03:09:17 +02:00
|
|
|
/*
|
|
|
|
* IDirect3DPixelShader9 implementation
|
|
|
|
*
|
|
|
|
* Copyright 2002-2003 Jason Edmeades
|
|
|
|
* Raphael Junqueira
|
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2003-07-01 03:09:17 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "d3d9_private.h"
|
|
|
|
|
2005-08-23 11:34:57 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d9);
|
2003-07-01 03:09:17 +02:00
|
|
|
|
|
|
|
/* IDirect3DPixelShader9 IUnknown parts follow: */
|
2006-06-10 11:51:05 +02:00
|
|
|
static HRESULT WINAPI IDirect3DPixelShader9Impl_QueryInterface(LPDIRECT3DPIXELSHADER9 iface, REFIID riid, LPVOID* ppobj) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DPixelShader9Impl *This = (IDirect3DPixelShader9Impl *)iface;
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2009-10-20 11:05:02 +02:00
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), ppobj);
|
|
|
|
|
2003-07-01 03:09:17 +02:00
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DPixelShader9)) {
|
2008-11-02 23:49:40 +01:00
|
|
|
IDirect3DPixelShader9_AddRef(iface);
|
2003-07-01 03:09:17 +02:00
|
|
|
*ppobj = This;
|
2006-06-07 15:13:29 +02:00
|
|
|
return S_OK;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
|
2006-06-07 15:13:29 +02:00
|
|
|
*ppobj = NULL;
|
2003-07-01 03:09:17 +02:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static ULONG WINAPI IDirect3DPixelShader9Impl_AddRef(LPDIRECT3DPIXELSHADER9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DPixelShader9Impl *This = (IDirect3DPixelShader9Impl *)iface;
|
2005-01-24 12:31:45 +01:00
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
2009-10-20 11:05:02 +02:00
|
|
|
TRACE("%p increasing refcount to %u.\n", iface, ref);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2009-09-23 18:42:13 +02:00
|
|
|
if (ref == 1)
|
|
|
|
{
|
|
|
|
IDirect3DDevice9Ex_AddRef(This->parentDevice);
|
|
|
|
wined3d_mutex_lock();
|
|
|
|
IWineD3DPixelShader_AddRef(This->wineD3DPixelShader);
|
|
|
|
wined3d_mutex_unlock();
|
|
|
|
}
|
|
|
|
|
2005-01-24 12:31:45 +01:00
|
|
|
return ref;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static ULONG WINAPI IDirect3DPixelShader9Impl_Release(LPDIRECT3DPIXELSHADER9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DPixelShader9Impl *This = (IDirect3DPixelShader9Impl *)iface;
|
2005-01-24 12:31:45 +01:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
2009-10-20 11:05:02 +02:00
|
|
|
TRACE("%p decreasing refcount to %u.\n", iface, ref);
|
2003-07-01 03:09:17 +02:00
|
|
|
|
|
|
|
if (ref == 0) {
|
2009-09-26 15:56:16 +02:00
|
|
|
IDirect3DDevice9Ex *parentDevice = This->parentDevice;
|
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2005-07-08 13:29:21 +02:00
|
|
|
IWineD3DPixelShader_Release(This->wineD3DPixelShader);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-09-26 15:56:16 +02:00
|
|
|
|
|
|
|
/* Release the device last, as it may cause the device to be destroyed. */
|
|
|
|
IDirect3DDevice9Ex_Release(parentDevice);
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IDirect3DPixelShader9 Interface follow: */
|
2009-12-04 11:50:47 +01:00
|
|
|
static HRESULT WINAPI IDirect3DPixelShader9Impl_GetDevice(IDirect3DPixelShader9 *iface, IDirect3DDevice9 **device)
|
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DPixelShader9Impl *This = (IDirect3DPixelShader9Impl *)iface;
|
2005-07-08 13:29:21 +02:00
|
|
|
|
2009-12-04 11:50:47 +01:00
|
|
|
TRACE("iface %p, device %p.\n", iface, device);
|
2005-07-08 13:29:21 +02:00
|
|
|
|
2009-12-04 11:50:47 +01:00
|
|
|
*device = (IDirect3DDevice9 *)This->parentDevice;
|
|
|
|
IDirect3DDevice9_AddRef(*device);
|
|
|
|
|
|
|
|
TRACE("Returning device %p.\n", *device);
|
2009-08-26 10:18:09 +02:00
|
|
|
|
2003-07-01 03:09:17 +02:00
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static HRESULT WINAPI IDirect3DPixelShader9Impl_GetFunction(LPDIRECT3DPIXELSHADER9 iface, VOID* pData, UINT* pSizeOfData) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DPixelShader9Impl *This = (IDirect3DPixelShader9Impl *)iface;
|
2007-06-12 10:11:21 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, data %p, data_size %p.\n", iface, pData, pSizeOfData);
|
2007-06-12 10:11:21 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-12 10:11:21 +02:00
|
|
|
hr = IWineD3DPixelShader_GetFunction(This->wineD3DPixelShader, pData, pSizeOfData);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 10:11:21 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static const IDirect3DPixelShader9Vtbl Direct3DPixelShader9_Vtbl =
|
2003-07-01 03:09:17 +02:00
|
|
|
{
|
2005-08-23 11:34:57 +02:00
|
|
|
/* IUnknown */
|
2003-07-01 03:09:17 +02:00
|
|
|
IDirect3DPixelShader9Impl_QueryInterface,
|
|
|
|
IDirect3DPixelShader9Impl_AddRef,
|
|
|
|
IDirect3DPixelShader9Impl_Release,
|
2005-08-23 11:34:57 +02:00
|
|
|
/* IDirect3DPixelShader9 */
|
2003-07-01 03:09:17 +02:00
|
|
|
IDirect3DPixelShader9Impl_GetDevice,
|
|
|
|
IDirect3DPixelShader9Impl_GetFunction
|
|
|
|
};
|
|
|
|
|
2009-09-23 18:42:13 +02:00
|
|
|
static void STDMETHODCALLTYPE d3d9_pixelshader_wined3d_object_destroyed(void *parent)
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wined3d_parent_ops d3d9_pixelshader_wined3d_parent_ops =
|
|
|
|
{
|
|
|
|
d3d9_pixelshader_wined3d_object_destroyed,
|
|
|
|
};
|
|
|
|
|
2009-09-23 18:42:11 +02:00
|
|
|
HRESULT pixelshader_init(IDirect3DPixelShader9Impl *shader, IDirect3DDevice9Impl *device, const DWORD *byte_code)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2009-09-23 18:42:11 +02:00
|
|
|
shader->ref = 1;
|
|
|
|
shader->lpVtbl = &Direct3DPixelShader9_Vtbl;
|
2009-08-26 10:18:09 +02:00
|
|
|
|
|
|
|
wined3d_mutex_lock();
|
2009-09-23 18:42:11 +02:00
|
|
|
hr = IWineD3DDevice_CreatePixelShader(device->WineD3DDevice, byte_code,
|
2009-09-23 18:42:13 +02:00
|
|
|
NULL, &shader->wineD3DPixelShader, (IUnknown *)shader,
|
|
|
|
&d3d9_pixelshader_wined3d_parent_ops);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-09-23 18:42:11 +02:00
|
|
|
if (FAILED(hr))
|
2009-08-26 10:18:09 +02:00
|
|
|
{
|
2009-09-23 18:42:11 +02:00
|
|
|
WARN("Failed to created wined3d pixel shader, hr %#x.\n", hr);
|
|
|
|
return hr;
|
2005-07-08 13:29:21 +02:00
|
|
|
}
|
|
|
|
|
2009-09-23 18:42:11 +02:00
|
|
|
shader->parentDevice = (IDirect3DDevice9Ex *)device;
|
|
|
|
IDirect3DDevice9Ex_AddRef(shader->parentDevice);
|
|
|
|
|
|
|
|
return D3D_OK;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2008-02-28 21:25:35 +01:00
|
|
|
HRESULT WINAPI IDirect3DDevice9Impl_SetPixelShader(LPDIRECT3DDEVICE9EX iface, IDirect3DPixelShader9* pShader) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
|
2005-07-08 13:29:21 +02:00
|
|
|
IDirect3DPixelShader9Impl *shader = (IDirect3DPixelShader9Impl *)pShader;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, shader %p.\n", iface, shader);
|
2007-06-12 10:11:21 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2005-07-08 13:29:21 +02:00
|
|
|
IWineD3DDevice_SetPixelShader(This->WineD3DDevice, shader == NULL ? NULL :shader->wineD3DPixelShader);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2003-07-01 03:09:17 +02:00
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
2008-02-28 21:25:35 +01:00
|
|
|
HRESULT WINAPI IDirect3DDevice9Impl_GetPixelShader(LPDIRECT3DDEVICE9EX iface, IDirect3DPixelShader9** ppShader) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
|
2005-07-08 13:29:21 +02:00
|
|
|
IWineD3DPixelShader *object;
|
2009-10-20 11:05:02 +02:00
|
|
|
HRESULT hrc;
|
|
|
|
|
|
|
|
TRACE("iface %p, shader %p.\n", iface, ppShader);
|
2005-07-08 13:29:21 +02:00
|
|
|
|
2005-08-23 11:34:57 +02:00
|
|
|
if (ppShader == NULL) {
|
2005-07-08 13:29:21 +02:00
|
|
|
TRACE("(%p) Invalid call\n", This);
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2005-07-08 13:29:21 +02:00
|
|
|
hrc = IWineD3DDevice_GetPixelShader(This->WineD3DDevice, &object);
|
2008-12-29 16:31:22 +01:00
|
|
|
if (SUCCEEDED(hrc))
|
|
|
|
{
|
|
|
|
if (object)
|
|
|
|
{
|
|
|
|
hrc = IWineD3DPixelShader_GetParent(object, (IUnknown **)ppShader);
|
|
|
|
IWineD3DPixelShader_Release(object);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*ppShader = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
WARN("(%p) : Call to IWineD3DDevice_GetPixelShader failed %u (device %p)\n", This, hrc, This->WineD3DDevice);
|
2005-07-08 13:29:21 +02:00
|
|
|
}
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
2005-07-08 13:29:21 +02:00
|
|
|
|
|
|
|
TRACE("(%p) : returning %p\n", This, *ppShader);
|
|
|
|
return hrc;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2008-02-28 21:25:35 +01:00
|
|
|
HRESULT WINAPI IDirect3DDevice9Impl_SetPixelShaderConstantF(LPDIRECT3DDEVICE9EX iface, UINT Register, CONST float* pConstantData, UINT Vector4fCount) {
|
2005-07-08 13:29:21 +02:00
|
|
|
IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
|
2007-06-12 10:11:21 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, register %u, data %p, count %u.\n",
|
|
|
|
iface, Register, pConstantData, Vector4fCount);
|
2007-06-12 10:11:21 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-12 10:11:21 +02:00
|
|
|
hr = IWineD3DDevice_SetPixelShaderConstantF(This->WineD3DDevice, Register, pConstantData, Vector4fCount);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 10:11:21 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2008-02-28 21:25:35 +01:00
|
|
|
HRESULT WINAPI IDirect3DDevice9Impl_GetPixelShaderConstantF(LPDIRECT3DDEVICE9EX iface, UINT Register, float* pConstantData, UINT Vector4fCount) {
|
2005-07-05 18:17:31 +02:00
|
|
|
IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
|
2009-03-23 08:30:16 +01:00
|
|
|
HRESULT hr;
|
|
|
|
|
2009-10-20 11:05:02 +02:00
|
|
|
TRACE("iface %p, register %u, data %p, count %u.\n",
|
|
|
|
iface, Register, pConstantData, Vector4fCount);
|
2009-03-23 08:30:16 +01:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2009-03-23 08:30:16 +01:00
|
|
|
hr = IWineD3DDevice_GetPixelShaderConstantF(This->WineD3DDevice, Register, pConstantData, Vector4fCount);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
2009-03-23 08:30:16 +01:00
|
|
|
|
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2008-02-28 21:25:35 +01:00
|
|
|
HRESULT WINAPI IDirect3DDevice9Impl_SetPixelShaderConstantI(LPDIRECT3DDEVICE9EX iface, UINT Register, CONST int* pConstantData, UINT Vector4iCount) {
|
2005-07-05 18:17:31 +02:00
|
|
|
IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
|
2007-06-12 10:11:21 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, register %u, data %p, count %u.\n",
|
|
|
|
iface, Register, pConstantData, Vector4iCount);
|
2007-06-12 10:11:21 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-12 10:11:21 +02:00
|
|
|
hr = IWineD3DDevice_SetPixelShaderConstantI(This->WineD3DDevice, Register, pConstantData, Vector4iCount);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 10:11:21 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2008-02-28 21:25:35 +01:00
|
|
|
HRESULT WINAPI IDirect3DDevice9Impl_GetPixelShaderConstantI(LPDIRECT3DDEVICE9EX iface, UINT Register, int* pConstantData, UINT Vector4iCount) {
|
2005-07-05 18:17:31 +02:00
|
|
|
IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
|
2007-06-12 10:11:21 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, register %u, data %p, count %u.\n",
|
|
|
|
iface, Register, pConstantData, Vector4iCount);
|
2007-06-12 10:11:21 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-12 10:11:21 +02:00
|
|
|
hr = IWineD3DDevice_GetPixelShaderConstantI(This->WineD3DDevice, Register, pConstantData, Vector4iCount);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 10:11:21 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2008-02-28 21:25:35 +01:00
|
|
|
HRESULT WINAPI IDirect3DDevice9Impl_SetPixelShaderConstantB(LPDIRECT3DDEVICE9EX iface, UINT Register, CONST BOOL* pConstantData, UINT BoolCount) {
|
2005-07-05 18:17:31 +02:00
|
|
|
IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
|
2007-06-12 10:11:21 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, register %u, data %p, count %u.\n",
|
|
|
|
iface, Register, pConstantData, BoolCount);
|
2007-06-12 10:11:21 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-12 10:11:21 +02:00
|
|
|
hr = IWineD3DDevice_SetPixelShaderConstantB(This->WineD3DDevice, Register, pConstantData, BoolCount);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 10:11:21 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2008-02-28 21:25:35 +01:00
|
|
|
HRESULT WINAPI IDirect3DDevice9Impl_GetPixelShaderConstantB(LPDIRECT3DDEVICE9EX iface, UINT Register, BOOL* pConstantData, UINT BoolCount) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
|
2007-06-12 10:11:21 +02:00
|
|
|
HRESULT hr;
|
2009-10-20 11:05:02 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, register %u, data %p, count %u.\n",
|
|
|
|
iface, Register, pConstantData, BoolCount);
|
2007-06-12 10:11:21 +02:00
|
|
|
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_lock();
|
2007-06-12 10:11:21 +02:00
|
|
|
hr = IWineD3DDevice_GetPixelShaderConstantB(This->WineD3DDevice, Register, pConstantData, BoolCount);
|
2009-08-26 10:18:09 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2007-06-12 10:11:21 +02:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|