shader.c 9.19 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * 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
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */

#include "d3d9_private.h"

WINE_DEFAULT_DEBUG_CHANNEL(d3d9);

24
static inline struct d3d9_vertexshader *impl_from_IDirect3DVertexShader9(IDirect3DVertexShader9 *iface)
25
{
26
    return CONTAINING_RECORD(iface, struct d3d9_vertexshader, IDirect3DVertexShader9_iface);
27 28
}

29
static HRESULT WINAPI d3d9_vertexshader_QueryInterface(IDirect3DVertexShader9 *iface, REFIID riid, void **out)
30
{
31
    TRACE("iface %p, riid %s, out %p.\n", iface, debugstr_guid(riid), out);
32 33 34 35 36

    if (IsEqualGUID(riid, &IID_IDirect3DVertexShader9)
            || IsEqualGUID(riid, &IID_IUnknown))
    {
        IDirect3DVertexShader9_AddRef(iface);
37
        *out = iface;
38 39 40 41 42
        return S_OK;
    }

    WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));

43
    *out = NULL;
44 45 46 47 48
    return E_NOINTERFACE;
}

static ULONG WINAPI d3d9_vertexshader_AddRef(IDirect3DVertexShader9 *iface)
{
49 50
    struct d3d9_vertexshader *shader = impl_from_IDirect3DVertexShader9(iface);
    ULONG refcount = InterlockedIncrement(&shader->refcount);
51 52 53 54 55

    TRACE("%p increasing refcount to %u.\n", iface, refcount);

    if (refcount == 1)
    {
56
        IDirect3DDevice9Ex_AddRef(shader->parent_device);
57
        wined3d_shader_incref(shader->wined3d_shader);
58 59 60 61 62 63 64
    }

    return refcount;
}

static ULONG WINAPI d3d9_vertexshader_Release(IDirect3DVertexShader9 *iface)
{
65 66
    struct d3d9_vertexshader *shader = impl_from_IDirect3DVertexShader9(iface);
    ULONG refcount = InterlockedDecrement(&shader->refcount);
67 68 69 70 71

    TRACE("%p decreasing refcount to %u.\n", iface, refcount);

    if (!refcount)
    {
72
        IDirect3DDevice9Ex *device = shader->parent_device;
73
        wined3d_shader_decref(shader->wined3d_shader);
74 75 76 77 78 79 80 81 82
        /* Release the device last, as it may cause the device to be destroyed. */
        IDirect3DDevice9Ex_Release(device);
    }

    return refcount;
}

static HRESULT WINAPI d3d9_vertexshader_GetDevice(IDirect3DVertexShader9 *iface, IDirect3DDevice9 **device)
{
83
    struct d3d9_vertexshader *shader = impl_from_IDirect3DVertexShader9(iface);
84

85 86
    TRACE("iface %p, device %p.\n", iface, device);

87
    *device = (IDirect3DDevice9 *)shader->parent_device;
88 89 90 91 92 93 94
    IDirect3DDevice9_AddRef(*device);

    TRACE("Returning device %p.\n", *device);

    return D3D_OK;
}

95
static HRESULT WINAPI d3d9_vertexshader_GetFunction(IDirect3DVertexShader9 *iface, void *data, UINT *data_size)
96
{
97
    struct d3d9_vertexshader *shader = impl_from_IDirect3DVertexShader9(iface);
98 99 100 101 102
    HRESULT hr;

    TRACE("iface %p, data %p, data_size %p.\n", iface, data, data_size);

    wined3d_mutex_lock();
103
    hr = wined3d_shader_get_byte_code(shader->wined3d_shader, data, data_size);
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
    wined3d_mutex_unlock();

    return hr;
}

static const IDirect3DVertexShader9Vtbl d3d9_vertexshader_vtbl =
{
    /* IUnknown */
    d3d9_vertexshader_QueryInterface,
    d3d9_vertexshader_AddRef,
    d3d9_vertexshader_Release,
    /* IDirect3DVertexShader9 */
    d3d9_vertexshader_GetDevice,
    d3d9_vertexshader_GetFunction,
};

static void STDMETHODCALLTYPE d3d9_vertexshader_wined3d_object_destroyed(void *parent)
{
122
    heap_free(parent);
123 124 125 126 127 128 129
}

static const struct wined3d_parent_ops d3d9_vertexshader_wined3d_parent_ops =
{
    d3d9_vertexshader_wined3d_object_destroyed,
};

130
HRESULT vertexshader_init(struct d3d9_vertexshader *shader, struct d3d9_device *device, const DWORD *byte_code)
131
{
132
    struct wined3d_shader_desc desc;
133 134
    HRESULT hr;

135
    shader->refcount = 1;
136
    shader->IDirect3DVertexShader9_iface.lpVtbl = &d3d9_vertexshader_vtbl;
137

138
    desc.byte_code = byte_code;
139
    desc.byte_code_size = ~(size_t)0;
140

141
    wined3d_mutex_lock();
142 143
    hr = wined3d_shader_create_vs(device->wined3d_device, &desc, shader,
            &d3d9_vertexshader_wined3d_parent_ops, &shader->wined3d_shader);
144 145 146 147 148 149 150
    wined3d_mutex_unlock();
    if (FAILED(hr))
    {
        WARN("Failed to create wined3d vertex shader, hr %#x.\n", hr);
        return hr;
    }

151 152
    shader->parent_device = &device->IDirect3DDevice9Ex_iface;
    IDirect3DDevice9Ex_AddRef(shader->parent_device);
153 154 155 156

    return D3D_OK;
}

157
struct d3d9_vertexshader *unsafe_impl_from_IDirect3DVertexShader9(IDirect3DVertexShader9 *iface)
158 159 160
{
    if (!iface)
        return NULL;
161 162
    if (iface->lpVtbl != &d3d9_vertexshader_vtbl)
        WARN("Vertex shader %p with the wrong vtbl %p\n", iface, iface->lpVtbl);
163 164 165 166

    return impl_from_IDirect3DVertexShader9(iface);
}

167
static inline struct d3d9_pixelshader *impl_from_IDirect3DPixelShader9(IDirect3DPixelShader9 *iface)
168
{
169
    return CONTAINING_RECORD(iface, struct d3d9_pixelshader, IDirect3DPixelShader9_iface);
170 171
}

172
static HRESULT WINAPI d3d9_pixelshader_QueryInterface(IDirect3DPixelShader9 *iface, REFIID riid, void **out)
173
{
174
    TRACE("iface %p, riid %s, out %p.\n", iface, debugstr_guid(riid), out);
175 176 177 178 179

    if (IsEqualGUID(riid, &IID_IDirect3DPixelShader9)
            || IsEqualGUID(riid, &IID_IUnknown))
    {
        IDirect3DPixelShader9_AddRef(iface);
180
        *out = iface;
181 182 183 184 185
        return S_OK;
    }

    WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));

186
    *out = NULL;
187 188 189 190 191
    return E_NOINTERFACE;
}

static ULONG WINAPI d3d9_pixelshader_AddRef(IDirect3DPixelShader9 *iface)
{
192 193
    struct d3d9_pixelshader *shader = impl_from_IDirect3DPixelShader9(iface);
    ULONG refcount = InterlockedIncrement(&shader->refcount);
194 195 196 197 198

    TRACE("%p increasing refcount to %u.\n", iface, refcount);

    if (refcount == 1)
    {
199
        IDirect3DDevice9Ex_AddRef(shader->parent_device);
200
        wined3d_shader_incref(shader->wined3d_shader);
201 202 203 204 205 206 207
    }

    return refcount;
}

static ULONG WINAPI d3d9_pixelshader_Release(IDirect3DPixelShader9 *iface)
{
208 209
    struct d3d9_pixelshader *shader = impl_from_IDirect3DPixelShader9(iface);
    ULONG refcount = InterlockedDecrement(&shader->refcount);
210 211 212 213 214

    TRACE("%p decreasing refcount to %u.\n", iface, refcount);

    if (!refcount)
    {
215
        IDirect3DDevice9Ex *device = shader->parent_device;
216
        wined3d_shader_decref(shader->wined3d_shader);
217 218 219 220 221 222 223
        /* Release the device last, as it may cause the device to be destroyed. */
        IDirect3DDevice9Ex_Release(device);
    }

    return refcount;
}

224
static HRESULT WINAPI d3d9_pixelshader_GetDevice(IDirect3DPixelShader9 *iface, IDirect3DDevice9 **device)
225
{
226
    struct d3d9_pixelshader *shader = impl_from_IDirect3DPixelShader9(iface);
227

228 229
    TRACE("iface %p, device %p.\n", iface, device);

230
    *device = (IDirect3DDevice9 *)shader->parent_device;
231 232 233 234 235 236 237
    IDirect3DDevice9_AddRef(*device);

    TRACE("Returning device %p.\n", *device);

    return D3D_OK;
}

238
static HRESULT WINAPI d3d9_pixelshader_GetFunction(IDirect3DPixelShader9 *iface, void *data, UINT *data_size)
239
{
240
    struct d3d9_pixelshader *shader = impl_from_IDirect3DPixelShader9(iface);
241 242 243 244 245
    HRESULT hr;

    TRACE("iface %p, data %p, data_size %p.\n", iface, data, data_size);

    wined3d_mutex_lock();
246
    hr = wined3d_shader_get_byte_code(shader->wined3d_shader, data, data_size);
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
    wined3d_mutex_unlock();

    return hr;
}

static const IDirect3DPixelShader9Vtbl d3d9_pixelshader_vtbl =
{
    /* IUnknown */
    d3d9_pixelshader_QueryInterface,
    d3d9_pixelshader_AddRef,
    d3d9_pixelshader_Release,
    /* IDirect3DPixelShader9 */
    d3d9_pixelshader_GetDevice,
    d3d9_pixelshader_GetFunction,
};

static void STDMETHODCALLTYPE d3d9_pixelshader_wined3d_object_destroyed(void *parent)
{
265
    heap_free(parent);
266 267 268 269 270 271 272
}

static const struct wined3d_parent_ops d3d9_pixelshader_wined3d_parent_ops =
{
    d3d9_pixelshader_wined3d_object_destroyed,
};

273
HRESULT pixelshader_init(struct d3d9_pixelshader *shader, struct d3d9_device *device, const DWORD *byte_code)
274
{
275
    struct wined3d_shader_desc desc;
276 277
    HRESULT hr;

278
    shader->refcount = 1;
279
    shader->IDirect3DPixelShader9_iface.lpVtbl = &d3d9_pixelshader_vtbl;
280

281
    desc.byte_code = byte_code;
282
    desc.byte_code_size = ~(size_t)0;
283

284
    wined3d_mutex_lock();
285 286
    hr = wined3d_shader_create_ps(device->wined3d_device, &desc, shader,
            &d3d9_pixelshader_wined3d_parent_ops, &shader->wined3d_shader);
287 288 289 290 291 292 293
    wined3d_mutex_unlock();
    if (FAILED(hr))
    {
        WARN("Failed to created wined3d pixel shader, hr %#x.\n", hr);
        return hr;
    }

294 295
    shader->parent_device = &device->IDirect3DDevice9Ex_iface;
    IDirect3DDevice9Ex_AddRef(shader->parent_device);
296 297 298

    return D3D_OK;
}
299

300
struct d3d9_pixelshader *unsafe_impl_from_IDirect3DPixelShader9(IDirect3DPixelShader9 *iface)
301 302 303
{
    if (!iface)
        return NULL;
304 305
    if (iface->lpVtbl != &d3d9_pixelshader_vtbl)
        WARN("Pixel shader %p with the wrong vtbl %p\n", iface, iface->lpVtbl);
306 307 308

    return impl_from_IDirect3DPixelShader9(iface);
}