Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
1203 lines (1060 loc) · 36.9 KB

SDL_render_d3d.c

File metadata and controls

1203 lines (1060 loc) · 36.9 KB
 
Apr 8, 2011
Apr 8, 2011
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Simple DirectMedia Layer
Copyright (C) 1997-2011 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
20
21
22
*/
#include "SDL_config.h"
Feb 8, 2011
Feb 8, 2011
23
24
#if SDL_VIDEO_RENDER_D3D && !SDL_RENDER_DISABLED
Feb 2, 2011
Feb 2, 2011
26
27
#include "../../core/windows/SDL_windows.h"
Mar 13, 2011
Mar 13, 2011
28
#include "SDL_hints.h"
Feb 2, 2011
Feb 2, 2011
29
30
31
32
33
34
35
36
#include "SDL_loadso.h"
#include "SDL_syswm.h"
#include "../SDL_sysrender.h"
#if SDL_VIDEO_RENDER_D3D
#define D3D_DEBUG_INFO
#include <d3d9.h>
#endif
Dec 14, 2009
Dec 14, 2009
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#ifdef ASSEMBLE_SHADER
///////////////////////////////////////////////////////////////////////////
// ID3DXBuffer:
// ------------
// The buffer object is used by D3DX to return arbitrary size data.
//
// GetBufferPointer -
// Returns a pointer to the beginning of the buffer.
//
// GetBufferSize -
// Returns the size of the buffer, in bytes.
///////////////////////////////////////////////////////////////////////////
typedef interface ID3DXBuffer ID3DXBuffer;
typedef interface ID3DXBuffer *LPD3DXBUFFER;
// {8BA5FB08-5195-40e2-AC58-0D989C3A0102}
DEFINE_GUID(IID_ID3DXBuffer,
0x8ba5fb08, 0x5195, 0x40e2, 0xac, 0x58, 0xd, 0x98, 0x9c, 0x3a, 0x1, 0x2);
#undef INTERFACE
#define INTERFACE ID3DXBuffer
typedef interface ID3DXBuffer {
const struct ID3DXBufferVtbl FAR* lpVtbl;
} ID3DXBuffer;
typedef const struct ID3DXBufferVtbl ID3DXBufferVtbl;
const struct ID3DXBufferVtbl
{
// IUnknown
STDMETHOD(QueryInterface)(THIS_ REFIID iid, LPVOID *ppv) PURE;
STDMETHOD_(ULONG, AddRef)(THIS) PURE;
STDMETHOD_(ULONG, Release)(THIS) PURE;
// ID3DXBuffer
STDMETHOD_(LPVOID, GetBufferPointer)(THIS) PURE;
STDMETHOD_(DWORD, GetBufferSize)(THIS) PURE;
};
HRESULT WINAPI
D3DXAssembleShader(
LPCSTR pSrcData,
UINT SrcDataLen,
CONST LPVOID* pDefines,
LPVOID pInclude,
DWORD Flags,
LPD3DXBUFFER* ppShader,
LPD3DXBUFFER* ppErrorMsgs);
#endif /* ASSEMBLE_SHADER */
90
91
/* Direct3D renderer implementation */
Jul 17, 2006
Jul 17, 2006
92
static SDL_Renderer *D3D_CreateRenderer(SDL_Window * window, Uint32 flags);
Feb 15, 2011
Feb 15, 2011
93
94
static void D3D_WindowEvent(SDL_Renderer * renderer,
const SDL_WindowEvent *event);
Jul 17, 2006
Jul 17, 2006
95
96
97
98
99
static int D3D_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture);
static int D3D_UpdateTexture(SDL_Renderer * renderer, SDL_Texture * texture,
const SDL_Rect * rect, const void *pixels,
int pitch);
static int D3D_LockTexture(SDL_Renderer * renderer, SDL_Texture * texture,
Feb 3, 2011
Feb 3, 2011
100
const SDL_Rect * rect, void **pixels, int *pitch);
Jul 17, 2006
Jul 17, 2006
101
static void D3D_UnlockTexture(SDL_Renderer * renderer, SDL_Texture * texture);
Feb 15, 2011
Feb 15, 2011
102
103
static int D3D_UpdateViewport(SDL_Renderer * renderer);
static int D3D_RenderClear(SDL_Renderer * renderer);
Dec 24, 2009
Dec 24, 2009
104
105
106
107
108
static int D3D_RenderDrawPoints(SDL_Renderer * renderer,
const SDL_Point * points, int count);
static int D3D_RenderDrawLines(SDL_Renderer * renderer,
const SDL_Point * points, int count);
static int D3D_RenderFillRects(SDL_Renderer * renderer,
Feb 15, 2011
Feb 15, 2011
109
const SDL_Rect * rects, int count);
Jul 17, 2006
Jul 17, 2006
110
static int D3D_RenderCopy(SDL_Renderer * renderer, SDL_Texture * texture,
Aug 28, 2006
Aug 28, 2006
111
const SDL_Rect * srcrect, const SDL_Rect * dstrect);
Nov 9, 2009
Nov 9, 2009
112
static int D3D_RenderReadPixels(SDL_Renderer * renderer, const SDL_Rect * rect,
Nov 22, 2009
Nov 22, 2009
113
Uint32 format, void * pixels, int pitch);
Jul 17, 2006
Jul 17, 2006
114
115
116
117
118
119
120
121
static void D3D_RenderPresent(SDL_Renderer * renderer);
static void D3D_DestroyTexture(SDL_Renderer * renderer,
SDL_Texture * texture);
static void D3D_DestroyRenderer(SDL_Renderer * renderer);
SDL_RenderDriver D3D_RenderDriver = {
D3D_CreateRenderer,
Feb 5, 2011
Feb 5, 2011
123
"direct3d",
Feb 6, 2011
Feb 6, 2011
124
(SDL_RENDERER_ACCELERATED | SDL_RENDERER_PRESENTVSYNC),
Feb 3, 2011
Feb 3, 2011
125
126
1,
{SDL_PIXELFORMAT_ARGB8888},
127
128
129
130
131
132
0,
0}
};
typedef struct
{
Feb 2, 2011
Feb 2, 2011
133
void* d3dDLL;
Jan 3, 2009
Jan 3, 2009
134
IDirect3D9 *d3d;
135
IDirect3DDevice9 *device;
Dec 6, 2009
Dec 6, 2009
136
UINT adapter;
Aug 7, 2006
Aug 7, 2006
137
D3DPRESENT_PARAMETERS pparams;
Feb 15, 2011
Feb 15, 2011
138
SDL_bool updateSize;
Jul 12, 2006
Jul 12, 2006
139
SDL_bool beginScene;
Mar 13, 2011
Mar 13, 2011
140
D3DTEXTUREFILTERTYPE scaleMode;
Jul 17, 2006
Jul 17, 2006
141
} D3D_RenderData;
142
143
144
typedef struct
{
Jul 14, 2006
Jul 14, 2006
145
IDirect3DTexture9 *texture;
Mar 13, 2011
Mar 13, 2011
146
D3DTEXTUREFILTERTYPE scaleMode;
Jul 17, 2006
Jul 17, 2006
147
} D3D_TextureData;
Jul 14, 2006
Jul 14, 2006
149
150
151
typedef struct
{
float x, y, z;
Aug 28, 2006
Aug 28, 2006
152
DWORD color;
Jul 14, 2006
Jul 14, 2006
153
float u, v;
Jul 14, 2006
Jul 14, 2006
154
155
} Vertex;
Jul 12, 2006
Jul 12, 2006
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
static void
D3D_SetError(const char *prefix, HRESULT result)
{
const char *error;
switch (result) {
case D3DERR_WRONGTEXTUREFORMAT:
error = "WRONGTEXTUREFORMAT";
break;
case D3DERR_UNSUPPORTEDCOLOROPERATION:
error = "UNSUPPORTEDCOLOROPERATION";
break;
case D3DERR_UNSUPPORTEDCOLORARG:
error = "UNSUPPORTEDCOLORARG";
break;
case D3DERR_UNSUPPORTEDALPHAOPERATION:
error = "UNSUPPORTEDALPHAOPERATION";
break;
case D3DERR_UNSUPPORTEDALPHAARG:
error = "UNSUPPORTEDALPHAARG";
break;
case D3DERR_TOOMANYOPERATIONS:
error = "TOOMANYOPERATIONS";
break;
case D3DERR_CONFLICTINGTEXTUREFILTER:
error = "CONFLICTINGTEXTUREFILTER";
break;
case D3DERR_UNSUPPORTEDFACTORVALUE:
error = "UNSUPPORTEDFACTORVALUE";
break;
case D3DERR_CONFLICTINGRENDERSTATE:
error = "CONFLICTINGRENDERSTATE";
break;
case D3DERR_UNSUPPORTEDTEXTUREFILTER:
error = "UNSUPPORTEDTEXTUREFILTER";
break;
case D3DERR_CONFLICTINGTEXTUREPALETTE:
error = "CONFLICTINGTEXTUREPALETTE";
break;
case D3DERR_DRIVERINTERNALERROR:
error = "DRIVERINTERNALERROR";
break;
case D3DERR_NOTFOUND:
error = "NOTFOUND";
break;
case D3DERR_MOREDATA:
error = "MOREDATA";
break;
case D3DERR_DEVICELOST:
error = "DEVICELOST";
break;
case D3DERR_DEVICENOTRESET:
error = "DEVICENOTRESET";
break;
case D3DERR_NOTAVAILABLE:
error = "NOTAVAILABLE";
break;
case D3DERR_OUTOFVIDEOMEMORY:
error = "OUTOFVIDEOMEMORY";
break;
case D3DERR_INVALIDDEVICE:
error = "INVALIDDEVICE";
break;
case D3DERR_INVALIDCALL:
error = "INVALIDCALL";
break;
case D3DERR_DRIVERINVALIDCALL:
error = "DRIVERINVALIDCALL";
break;
case D3DERR_WASSTILLDRAWING:
error = "WASSTILLDRAWING";
break;
default:
error = "UNKNOWN";
break;
}
SDL_SetError("%s: %s", prefix, error);
}
Jul 14, 2006
Jul 14, 2006
235
236
static D3DFORMAT
PixelFormatToD3DFMT(Uint32 format)
Jul 14, 2006
Jul 14, 2006
238
switch (format) {
Aug 5, 2006
Aug 5, 2006
239
case SDL_PIXELFORMAT_RGB565:
Jul 14, 2006
Jul 14, 2006
240
return D3DFMT_R5G6B5;
Aug 5, 2006
Aug 5, 2006
241
case SDL_PIXELFORMAT_RGB888:
Jul 14, 2006
Jul 14, 2006
242
return D3DFMT_X8R8G8B8;
Aug 5, 2006
Aug 5, 2006
243
case SDL_PIXELFORMAT_ARGB8888:
Jul 14, 2006
Jul 14, 2006
244
245
246
247
return D3DFMT_A8R8G8B8;
default:
return D3DFMT_UNKNOWN;
}
Feb 3, 2011
Feb 3, 2011
250
251
static Uint32
D3DFMTToPixelFormat(D3DFORMAT format)
Feb 3, 2011
Feb 3, 2011
253
254
255
256
257
258
259
260
261
switch (format) {
case D3DFMT_R5G6B5:
return SDL_PIXELFORMAT_RGB565;
case D3DFMT_X8R8G8B8:
return SDL_PIXELFORMAT_RGB888;
case D3DFMT_A8R8G8B8:
return SDL_PIXELFORMAT_ARGB8888;
default:
return SDL_PIXELFORMAT_UNKNOWN;
Feb 15, 2011
Feb 15, 2011
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
static int
D3D_Reset(SDL_Renderer * renderer)
{
D3D_RenderData *data = (D3D_RenderData *) renderer->driverdata;
HRESULT result;
result = IDirect3DDevice9_Reset(data->device, &data->pparams);
if (FAILED(result)) {
if (result == D3DERR_DEVICELOST) {
/* Don't worry about it, we'll reset later... */
return 0;
} else {
D3D_SetError("Reset()", result);
return -1;
}
}
IDirect3DDevice9_SetVertexShader(data->device, NULL);
IDirect3DDevice9_SetFVF(data->device,
D3DFVF_XYZ | D3DFVF_DIFFUSE | D3DFVF_TEX1);
IDirect3DDevice9_SetRenderState(data->device, D3DRS_CULLMODE,
D3DCULL_NONE);
IDirect3DDevice9_SetRenderState(data->device, D3DRS_LIGHTING, FALSE);
return 0;
}
static int
D3D_ActivateRenderer(SDL_Renderer * renderer)
{
D3D_RenderData *data = (D3D_RenderData *) renderer->driverdata;
HRESULT result;
if (data->updateSize) {
SDL_Window *window = renderer->window;
int w, h;
SDL_GetWindowSize(window, &w, &h);
data->pparams.BackBufferWidth = w;
data->pparams.BackBufferHeight = h;
if (SDL_GetWindowFlags(window) & SDL_WINDOW_FULLSCREEN) {
data->pparams.BackBufferFormat =
PixelFormatToD3DFMT(SDL_GetWindowPixelFormat(window));
} else {
data->pparams.BackBufferFormat = D3DFMT_UNKNOWN;
}
if (D3D_Reset(renderer) < 0) {
return -1;
}
D3D_UpdateViewport(renderer);
data->updateSize = SDL_FALSE;
}
if (data->beginScene) {
result = IDirect3DDevice9_BeginScene(data->device);
if (result == D3DERR_DEVICELOST) {
if (D3D_Reset(renderer) < 0) {
return -1;
}
result = IDirect3DDevice9_BeginScene(data->device);
}
if (FAILED(result)) {
D3D_SetError("BeginScene()", result);
return -1;
}
data->beginScene = SDL_FALSE;
}
return 0;
}
Jul 17, 2006
Jul 17, 2006
334
D3D_CreateRenderer(SDL_Window * window, Uint32 flags)
335
336
{
SDL_Renderer *renderer;
Jul 17, 2006
Jul 17, 2006
337
D3D_RenderData *data;
Feb 2, 2011
Feb 2, 2011
338
SDL_SysWMinfo windowinfo;
Jul 12, 2006
Jul 12, 2006
339
340
HRESULT result;
D3DPRESENT_PARAMETERS pparams;
Jul 15, 2006
Jul 15, 2006
341
IDirect3DSwapChain9 *chain;
Jul 22, 2006
Jul 22, 2006
342
D3DCAPS9 caps;
Feb 3, 2011
Feb 3, 2011
343
344
345
Uint32 window_flags;
int w, h;
SDL_DisplayMode fullscreen_mode;
Feb 15, 2011
Feb 15, 2011
346
D3DMATRIX matrix;
Jul 22, 2006
Jul 22, 2006
348
renderer = (SDL_Renderer *) SDL_calloc(1, sizeof(*renderer));
349
350
351
352
353
if (!renderer) {
SDL_OutOfMemory();
return NULL;
}
Jul 22, 2006
Jul 22, 2006
354
data = (D3D_RenderData *) SDL_calloc(1, sizeof(*data));
Feb 2, 2011
Feb 2, 2011
356
SDL_free(renderer);
357
358
359
360
SDL_OutOfMemory();
return NULL;
}
Feb 2, 2011
Feb 2, 2011
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
data->d3dDLL = SDL_LoadObject("D3D9.DLL");
if (data->d3dDLL) {
IDirect3D9 *(WINAPI * D3DCreate) (UINT SDKVersion);
D3DCreate =
(IDirect3D9 * (WINAPI *) (UINT)) SDL_LoadFunction(data->d3dDLL,
"Direct3DCreate9");
if (D3DCreate) {
data->d3d = D3DCreate(D3D_SDK_VERSION);
}
if (!data->d3d) {
SDL_UnloadObject(data->d3dDLL);
data->d3dDLL = NULL;
}
}
if (!data->d3d) {
SDL_free(renderer);
SDL_free(data);
SDL_SetError("Unable to create Direct3D interface");
return NULL;
}
Jul 28, 2010
Jul 28, 2010
382
Feb 15, 2011
Feb 15, 2011
383
renderer->WindowEvent = D3D_WindowEvent;
Jul 17, 2006
Jul 17, 2006
384
385
386
387
renderer->CreateTexture = D3D_CreateTexture;
renderer->UpdateTexture = D3D_UpdateTexture;
renderer->LockTexture = D3D_LockTexture;
renderer->UnlockTexture = D3D_UnlockTexture;
Feb 15, 2011
Feb 15, 2011
388
389
renderer->UpdateViewport = D3D_UpdateViewport;
renderer->RenderClear = D3D_RenderClear;
Dec 24, 2009
Dec 24, 2009
390
391
renderer->RenderDrawPoints = D3D_RenderDrawPoints;
renderer->RenderDrawLines = D3D_RenderDrawLines;
Jan 18, 2010
Jan 18, 2010
392
renderer->RenderFillRects = D3D_RenderFillRects;
Jul 17, 2006
Jul 17, 2006
393
renderer->RenderCopy = D3D_RenderCopy;
Nov 9, 2009
Nov 9, 2009
394
renderer->RenderReadPixels = D3D_RenderReadPixels;
Jul 17, 2006
Jul 17, 2006
395
396
397
398
renderer->RenderPresent = D3D_RenderPresent;
renderer->DestroyTexture = D3D_DestroyTexture;
renderer->DestroyRenderer = D3D_DestroyRenderer;
renderer->info = D3D_RenderDriver.info;
399
400
renderer->driverdata = data;
Aug 5, 2006
Aug 5, 2006
401
renderer->info.flags = SDL_RENDERER_ACCELERATED;
Feb 2, 2011
Feb 2, 2011
403
404
405
SDL_VERSION(&windowinfo.version);
SDL_GetWindowWMInfo(window, &windowinfo);
Feb 3, 2011
Feb 3, 2011
406
407
408
409
window_flags = SDL_GetWindowFlags(window);
SDL_GetWindowSize(window, &w, &h);
SDL_GetWindowDisplayMode(window, &fullscreen_mode);
Jul 12, 2006
Jul 12, 2006
410
SDL_zero(pparams);
Feb 2, 2011
Feb 2, 2011
411
pparams.hDeviceWindow = windowinfo.info.win.window;
Feb 3, 2011
Feb 3, 2011
412
413
414
pparams.BackBufferWidth = w;
pparams.BackBufferHeight = h;
if (window_flags & SDL_WINDOW_FULLSCREEN) {
Jul 14, 2006
Jul 14, 2006
415
pparams.BackBufferFormat =
Feb 3, 2011
Feb 3, 2011
416
PixelFormatToD3DFMT(fullscreen_mode.format);
Jul 14, 2006
Jul 14, 2006
417
418
419
} else {
pparams.BackBufferFormat = D3DFMT_UNKNOWN;
}
Feb 1, 2011
Feb 1, 2011
420
421
422
pparams.BackBufferCount = 1;
pparams.SwapEffect = D3DSWAPEFFECT_DISCARD;
Feb 3, 2011
Feb 3, 2011
423
if (window_flags & SDL_WINDOW_FULLSCREEN) {
Jul 12, 2006
Jul 12, 2006
424
pparams.Windowed = FALSE;
Jul 14, 2006
Jul 14, 2006
425
pparams.FullScreen_RefreshRateInHz =
Feb 3, 2011
Feb 3, 2011
426
fullscreen_mode.refresh_rate;
Jul 12, 2006
Jul 12, 2006
427
428
} else {
pparams.Windowed = TRUE;
Jul 14, 2006
Jul 14, 2006
429
pparams.FullScreen_RefreshRateInHz = 0;
Jul 12, 2006
Jul 12, 2006
430
}
Aug 5, 2006
Aug 5, 2006
431
if (flags & SDL_RENDERER_PRESENTVSYNC) {
Jul 15, 2006
Jul 15, 2006
432
433
434
435
pparams.PresentationInterval = D3DPRESENT_INTERVAL_ONE;
} else {
pparams.PresentationInterval = D3DPRESENT_INTERVAL_IMMEDIATE;
}
Jul 12, 2006
Jul 12, 2006
436
Feb 2, 2011
Feb 2, 2011
437
438
439
/* FIXME: Which adapter? */
data->adapter = D3DADAPTER_DEFAULT;
IDirect3D9_GetDeviceCaps(data->d3d, data->adapter, D3DDEVTYPE_HAL, &caps);
Jun 16, 2009
Jun 16, 2009
440
Feb 2, 2011
Feb 2, 2011
441
result = IDirect3D9_CreateDevice(data->d3d, data->adapter,
Jul 12, 2006
Jul 12, 2006
442
D3DDEVTYPE_HAL,
Feb 2, 2011
Feb 2, 2011
443
pparams.hDeviceWindow,
Jun 16, 2009
Jun 16, 2009
444
445
446
447
(caps.
DevCaps &
D3DDEVCAPS_HWTRANSFORMANDLIGHT) ?
D3DCREATE_HARDWARE_VERTEXPROCESSING :
Jul 12, 2006
Jul 12, 2006
448
449
450
D3DCREATE_SOFTWARE_VERTEXPROCESSING,
&pparams, &data->device);
if (FAILED(result)) {
Jul 17, 2006
Jul 17, 2006
451
D3D_DestroyRenderer(renderer);
Jul 12, 2006
Jul 12, 2006
452
453
454
455
D3D_SetError("CreateDevice()", result);
return NULL;
}
data->beginScene = SDL_TRUE;
Mar 13, 2011
Mar 13, 2011
456
data->scaleMode = D3DTEXF_FORCE_DWORD;
Jul 12, 2006
Jul 12, 2006
457
Jul 15, 2006
Jul 15, 2006
458
459
460
/* Get presentation parameters to fill info */
result = IDirect3DDevice9_GetSwapChain(data->device, 0, &chain);
if (FAILED(result)) {
Jul 17, 2006
Jul 17, 2006
461
D3D_DestroyRenderer(renderer);
Jul 15, 2006
Jul 15, 2006
462
463
464
465
466
467
D3D_SetError("GetSwapChain()", result);
return NULL;
}
result = IDirect3DSwapChain9_GetPresentParameters(chain, &pparams);
if (FAILED(result)) {
IDirect3DSwapChain9_Release(chain);
Jul 17, 2006
Jul 17, 2006
468
D3D_DestroyRenderer(renderer);
Jul 15, 2006
Jul 15, 2006
469
470
471
472
473
D3D_SetError("GetPresentParameters()", result);
return NULL;
}
IDirect3DSwapChain9_Release(chain);
if (pparams.PresentationInterval == D3DPRESENT_INTERVAL_ONE) {
Aug 5, 2006
Aug 5, 2006
474
renderer->info.flags |= SDL_RENDERER_PRESENTVSYNC;
Jul 15, 2006
Jul 15, 2006
475
}
Aug 7, 2006
Aug 7, 2006
476
data->pparams = pparams;
Jul 15, 2006
Jul 15, 2006
477
Jul 22, 2006
Jul 22, 2006
478
479
480
IDirect3DDevice9_GetDeviceCaps(data->device, &caps);
renderer->info.max_texture_width = caps.MaxTextureWidth;
renderer->info.max_texture_height = caps.MaxTextureHeight;
Jul 19, 2006
Jul 19, 2006
481
Jul 14, 2006
Jul 14, 2006
482
/* Set up parameters for rendering */
Jul 14, 2006
Jul 14, 2006
483
IDirect3DDevice9_SetVertexShader(data->device, NULL);
Aug 28, 2006
Aug 28, 2006
484
IDirect3DDevice9_SetFVF(data->device,
Feb 15, 2011
Feb 15, 2011
485
D3DFVF_XYZ | D3DFVF_DIFFUSE | D3DFVF_TEX1);
Aug 28, 2006
Aug 28, 2006
486
IDirect3DDevice9_SetRenderState(data->device, D3DRS_ZENABLE, D3DZB_FALSE);
Jul 14, 2006
Jul 14, 2006
487
488
IDirect3DDevice9_SetRenderState(data->device, D3DRS_CULLMODE,
D3DCULL_NONE);
Jul 14, 2006
Jul 14, 2006
489
IDirect3DDevice9_SetRenderState(data->device, D3DRS_LIGHTING, FALSE);
Aug 28, 2006
Aug 28, 2006
490
491
492
493
494
495
496
497
498
499
500
501
502
503
/* Enable color modulation by diffuse color */
IDirect3DDevice9_SetTextureStageState(data->device, 0, D3DTSS_COLOROP,
D3DTOP_MODULATE);
IDirect3DDevice9_SetTextureStageState(data->device, 0, D3DTSS_COLORARG1,
D3DTA_TEXTURE);
IDirect3DDevice9_SetTextureStageState(data->device, 0, D3DTSS_COLORARG2,
D3DTA_DIFFUSE);
/* Enable alpha modulation by diffuse alpha */
IDirect3DDevice9_SetTextureStageState(data->device, 0, D3DTSS_ALPHAOP,
D3DTOP_MODULATE);
IDirect3DDevice9_SetTextureStageState(data->device, 0, D3DTSS_ALPHAARG1,
D3DTA_TEXTURE);
IDirect3DDevice9_SetTextureStageState(data->device, 0, D3DTSS_ALPHAARG2,
D3DTA_DIFFUSE);
Aug 28, 2006
Aug 28, 2006
504
505
506
507
508
/* Disable second texture stage, since we're done */
IDirect3DDevice9_SetTextureStageState(data->device, 1, D3DTSS_COLOROP,
D3DTOP_DISABLE);
IDirect3DDevice9_SetTextureStageState(data->device, 1, D3DTSS_ALPHAOP,
D3DTOP_DISABLE);
Jul 14, 2006
Jul 14, 2006
509
Feb 15, 2011
Feb 15, 2011
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
/* Set an identity world and view matrix */
matrix.m[0][0] = 1.0f;
matrix.m[0][1] = 0.0f;
matrix.m[0][2] = 0.0f;
matrix.m[0][3] = 0.0f;
matrix.m[1][0] = 0.0f;
matrix.m[1][1] = 1.0f;
matrix.m[1][2] = 0.0f;
matrix.m[1][3] = 0.0f;
matrix.m[2][0] = 0.0f;
matrix.m[2][1] = 0.0f;
matrix.m[2][2] = 1.0f;
matrix.m[2][3] = 0.0f;
matrix.m[3][0] = 0.0f;
matrix.m[3][1] = 0.0f;
matrix.m[3][2] = 0.0f;
matrix.m[3][3] = 1.0f;
IDirect3DDevice9_SetTransform(data->device, D3DTS_WORLD, &matrix);
IDirect3DDevice9_SetTransform(data->device, D3DTS_VIEW, &matrix);
Aug 7, 2006
Aug 7, 2006
529
Feb 15, 2011
Feb 15, 2011
530
return renderer;
Aug 7, 2006
Aug 7, 2006
531
532
}
Feb 15, 2011
Feb 15, 2011
533
534
static void
D3D_WindowEvent(SDL_Renderer * renderer, const SDL_WindowEvent *event)
Aug 7, 2006
Aug 7, 2006
535
536
537
{
D3D_RenderData *data = (D3D_RenderData *) renderer->driverdata;
Feb 15, 2011
Feb 15, 2011
538
539
if (event->event == SDL_WINDOWEVENT_SIZE_CHANGED) {
data->updateSize = SDL_TRUE;
Aug 7, 2006
Aug 7, 2006
540
541
542
}
}
Mar 13, 2011
Mar 13, 2011
543
544
545
546
547
548
549
550
551
552
553
554
555
556
static D3DTEXTUREFILTERTYPE
GetScaleQuality(void)
{
const char *hint = SDL_GetHint(SDL_HINT_RENDER_SCALE_QUALITY);
if (!hint || *hint == '0' || SDL_strcasecmp(hint, "nearest") == 0) {
return D3DTEXF_POINT;
} else if (*hint == '1' || SDL_strcasecmp(hint, "linear") == 0) {
return D3DTEXF_LINEAR;
} else {
return D3DTEXF_ANISOTROPIC;
}
}
Jul 17, 2006
Jul 17, 2006
558
D3D_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture)
Jul 17, 2006
Jul 17, 2006
560
D3D_RenderData *renderdata = (D3D_RenderData *) renderer->driverdata;
Jan 21, 2010
Jan 21, 2010
561
SDL_Window *window = renderer->window;
Feb 2, 2011
Feb 2, 2011
562
D3DFORMAT display_format = renderdata->pparams.BackBufferFormat;
Jul 17, 2006
Jul 17, 2006
563
D3D_TextureData *data;
Feb 4, 2011
Feb 4, 2011
564
565
D3DPOOL pool;
DWORD usage;
Jul 14, 2006
Jul 14, 2006
566
HRESULT result;
Jul 22, 2006
Jul 22, 2006
568
data = (D3D_TextureData *) SDL_calloc(1, sizeof(*data));
569
570
571
572
if (!data) {
SDL_OutOfMemory();
return -1;
}
Mar 13, 2011
Mar 13, 2011
573
data->scaleMode = GetScaleQuality();
574
575
576
texture->driverdata = data;
Feb 4, 2011
Feb 4, 2011
577
578
579
580
581
582
583
584
585
586
#ifdef USE_DYNAMIC_TEXTURE
if (texture->access == SDL_TEXTUREACCESS_STREAMING) {
pool = D3DPOOL_DEFAULT;
usage = D3DUSAGE_DYNAMIC;
} else
#endif
{
pool = D3DPOOL_MANAGED;
usage = 0;
}
Jan 3, 2009
Jan 3, 2009
587
Jul 14, 2006
Jul 14, 2006
588
589
result =
IDirect3DDevice9_CreateTexture(renderdata->device, texture->w,
Feb 4, 2011
Feb 4, 2011
590
591
592
texture->h, 1, usage,
PixelFormatToD3DFMT(texture->format),
pool, &data->texture, NULL);
Jul 14, 2006
Jul 14, 2006
593
594
595
596
597
598
if (FAILED(result)) {
D3D_SetError("CreateTexture()", result);
return -1;
}
return 0;
599
600
601
}
static int
Jul 17, 2006
Jul 17, 2006
602
603
D3D_UpdateTexture(SDL_Renderer * renderer, SDL_Texture * texture,
const SDL_Rect * rect, const void *pixels, int pitch)
Jul 17, 2006
Jul 17, 2006
605
606
D3D_TextureData *data = (D3D_TextureData *) texture->driverdata;
D3D_RenderData *renderdata = (D3D_RenderData *) renderer->driverdata;
Feb 3, 2011
Feb 3, 2011
607
608
609
610
611
612
RECT d3drect;
D3DLOCKED_RECT locked;
const Uint8 *src;
Uint8 *dst;
int row, length;
HRESULT result;
Jul 14, 2006
Jul 14, 2006
613
Feb 4, 2011
Feb 4, 2011
614
615
616
617
#ifdef USE_DYNAMIC_TEXTURE
if (texture->access == SDL_TEXTUREACCESS_STREAMING &&
rect->x == 0 && rect->y == 0 &&
rect->w == texture->w && rect->h == texture->h) {
Feb 5, 2011
Feb 5, 2011
618
result = IDirect3DTexture9_LockRect(data->texture, 0, &locked, NULL, D3DLOCK_DISCARD);
Feb 4, 2011
Feb 4, 2011
619
620
621
622
623
624
625
} else
#endif
{
d3drect.left = rect->x;
d3drect.right = rect->x + rect->w;
d3drect.top = rect->y;
d3drect.bottom = rect->y + rect->h;
Feb 5, 2011
Feb 5, 2011
626
result = IDirect3DTexture9_LockRect(data->texture, 0, &locked, &d3drect, 0);
Feb 3, 2011
Feb 3, 2011
627
}
Jan 3, 2009
Jan 3, 2009
628
Feb 3, 2011
Feb 3, 2011
629
630
631
632
if (FAILED(result)) {
D3D_SetError("LockRect()", result);
return -1;
}
Nov 25, 2008
Nov 25, 2008
633
Feb 3, 2011
Feb 3, 2011
634
635
636
src = pixels;
dst = locked.pBits;
length = rect->w * SDL_BYTESPERPIXEL(texture->format);
Feb 4, 2011
Feb 4, 2011
637
638
639
640
641
642
643
644
if (length == pitch && length == locked.Pitch) {
SDL_memcpy(dst, src, length*rect->h);
} else {
for (row = 0; row < rect->h; ++row) {
SDL_memcpy(dst, src, length);
src += pitch;
dst += locked.Pitch;
}
Nov 25, 2008
Nov 25, 2008
645
}
Feb 3, 2011
Feb 3, 2011
646
647
648
IDirect3DTexture9_UnlockRect(data->texture, 0);
return 0;
Nov 25, 2008
Nov 25, 2008
649
}
Jul 17, 2006
Jul 17, 2006
652
D3D_LockTexture(SDL_Renderer * renderer, SDL_Texture * texture,
Feb 3, 2011
Feb 3, 2011
653
const SDL_Rect * rect, void **pixels, int *pitch)
Jul 17, 2006
Jul 17, 2006
655
D3D_TextureData *data = (D3D_TextureData *) texture->driverdata;
Feb 3, 2011
Feb 3, 2011
656
657
658
RECT d3drect;
D3DLOCKED_RECT locked;
HRESULT result;
Feb 3, 2011
Feb 3, 2011
660
661
662
663
d3drect.left = rect->x;
d3drect.right = rect->x + rect->w;
d3drect.top = rect->y;
d3drect.bottom = rect->y + rect->h;
Jan 3, 2009
Jan 3, 2009
664
Feb 3, 2011
Feb 3, 2011
665
666
667
668
result = IDirect3DTexture9_LockRect(data->texture, 0, &locked, &d3drect, 0);
if (FAILED(result)) {
D3D_SetError("LockRect()", result);
return -1;
Feb 3, 2011
Feb 3, 2011
670
671
672
*pixels = locked.pBits;
*pitch = locked.Pitch;
return 0;
673
674
675
}
static void
Jul 17, 2006
Jul 17, 2006
676
D3D_UnlockTexture(SDL_Renderer * renderer, SDL_Texture * texture)
Jul 17, 2006
Jul 17, 2006
678
D3D_TextureData *data = (D3D_TextureData *) texture->driverdata;
Feb 3, 2011
Feb 3, 2011
680
IDirect3DTexture9_UnlockRect(data->texture, 0);
Feb 15, 2011
Feb 15, 2011
683
684
static int
D3D_UpdateViewport(SDL_Renderer * renderer)
Feb 8, 2011
Feb 8, 2011
685
686
{
D3D_RenderData *data = (D3D_RenderData *) renderer->driverdata;
Feb 15, 2011
Feb 15, 2011
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
D3DVIEWPORT9 viewport;
D3DMATRIX matrix;
/* Set the viewport */
viewport.X = renderer->viewport.x;
viewport.Y = renderer->viewport.y;
viewport.Width = renderer->viewport.w;
viewport.Height = renderer->viewport.h;
viewport.MinZ = 0.0f;
viewport.MaxZ = 1.0f;
IDirect3DDevice9_SetViewport(data->device, &viewport);
/* Set an orthographic projection matrix */
matrix.m[0][0] = 2.0f / renderer->viewport.w;
matrix.m[0][1] = 0.0f;
matrix.m[0][2] = 0.0f;
matrix.m[0][3] = 0.0f;
matrix.m[1][0] = 0.0f;
matrix.m[1][1] = -2.0f / renderer->viewport.h;
matrix.m[1][2] = 0.0f;
matrix.m[1][3] = 0.0f;
matrix.m[2][0] = 0.0f;
matrix.m[2][1] = 0.0f;
matrix.m[2][2] = 1.0f;
matrix.m[2][3] = 0.0f;
matrix.m[3][0] = -1.0f;
matrix.m[3][1] = 1.0f;
matrix.m[3][2] = 0.0f;
matrix.m[3][3] = 1.0f;
IDirect3DDevice9_SetTransform(data->device, D3DTS_PROJECTION, &matrix);
Feb 8, 2011
Feb 8, 2011
717
Feb 15, 2011
Feb 15, 2011
718
719
return 0;
}
Feb 8, 2011
Feb 8, 2011
720
Feb 15, 2011
Feb 15, 2011
721
722
723
724
725
726
727
728
729
static int
D3D_RenderClear(SDL_Renderer * renderer)
{
D3D_RenderData *data = (D3D_RenderData *) renderer->driverdata;
DWORD color;
HRESULT result;
if (D3D_ActivateRenderer(renderer) < 0) {
return -1;
Feb 8, 2011
Feb 8, 2011
730
}
Feb 15, 2011
Feb 15, 2011
731
732
733
color = D3DCOLOR_ARGB(renderer->a, renderer->r, renderer->g, renderer->b);
Feb 15, 2011
Feb 15, 2011
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
/* Don't reset the viewport if we don't have to! */
if (!renderer->viewport.x && !renderer->viewport.y &&
renderer->viewport.w == data->pparams.BackBufferWidth &&
renderer->viewport.h == data->pparams.BackBufferHeight) {
result = IDirect3DDevice9_Clear(data->device, 0, NULL, D3DCLEAR_TARGET, color, 0.0f, 0);
} else {
D3DVIEWPORT9 viewport;
/* Clear is defined to clear the entire render target */
viewport.X = 0;
viewport.Y = 0;
viewport.Width = data->pparams.BackBufferWidth;
viewport.Height = data->pparams.BackBufferHeight;
viewport.MinZ = 0.0f;
viewport.MaxZ = 1.0f;
IDirect3DDevice9_SetViewport(data->device, &viewport);
result = IDirect3DDevice9_Clear(data->device, 0, NULL, D3DCLEAR_TARGET, color, 0.0f, 0);
/* Reset the viewport */
viewport.X = renderer->viewport.x;
viewport.Y = renderer->viewport.y;
viewport.Width = renderer->viewport.w;
viewport.Height = renderer->viewport.h;
viewport.MinZ = 0.0f;
viewport.MaxZ = 1.0f;
IDirect3DDevice9_SetViewport(data->device, &viewport);
}
Feb 15, 2011
Feb 15, 2011
762
763
764
765
766
767
if (FAILED(result)) {
D3D_SetError("Clear()", result);
return -1;
}
return 0;
Feb 8, 2011
Feb 8, 2011
768
769
}
Dec 31, 2008
Dec 31, 2008
770
static void
Dec 31, 2008
Dec 31, 2008
771
D3D_SetBlendMode(D3D_RenderData * data, int blendMode)
Dec 31, 2008
Dec 31, 2008
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
{
switch (blendMode) {
case SDL_BLENDMODE_NONE:
IDirect3DDevice9_SetRenderState(data->device, D3DRS_ALPHABLENDENABLE,
FALSE);
break;
case SDL_BLENDMODE_BLEND:
IDirect3DDevice9_SetRenderState(data->device, D3DRS_ALPHABLENDENABLE,
TRUE);
IDirect3DDevice9_SetRenderState(data->device, D3DRS_SRCBLEND,
D3DBLEND_SRCALPHA);
IDirect3DDevice9_SetRenderState(data->device, D3DRS_DESTBLEND,
D3DBLEND_INVSRCALPHA);
break;
case SDL_BLENDMODE_ADD:
IDirect3DDevice9_SetRenderState(data->device, D3DRS_ALPHABLENDENABLE,
TRUE);
IDirect3DDevice9_SetRenderState(data->device, D3DRS_SRCBLEND,
D3DBLEND_SRCALPHA);
IDirect3DDevice9_SetRenderState(data->device, D3DRS_DESTBLEND,
D3DBLEND_ONE);
break;
Feb 5, 2011
Feb 5, 2011
794
795
796
797
798
799
800
801
case SDL_BLENDMODE_MOD:
IDirect3DDevice9_SetRenderState(data->device, D3DRS_ALPHABLENDENABLE,
TRUE);
IDirect3DDevice9_SetRenderState(data->device, D3DRS_SRCBLEND,
D3DBLEND_ZERO);
IDirect3DDevice9_SetRenderState(data->device, D3DRS_DESTBLEND,
D3DBLEND_SRCCOLOR);
break;
Dec 31, 2008
Dec 31, 2008
802
803
804
805
}
}
static int
Dec 24, 2009
Dec 24, 2009
806
807
D3D_RenderDrawPoints(SDL_Renderer * renderer, const SDL_Point * points,
int count)
Dec 31, 2008
Dec 31, 2008
808
809
810
{
D3D_RenderData *data = (D3D_RenderData *) renderer->driverdata;
DWORD color;
Dec 9, 2009
Dec 9, 2009
811
812
Vertex *vertices;
int i;
Dec 31, 2008
Dec 31, 2008
813
814
HRESULT result;
Feb 15, 2011
Feb 15, 2011
815
816
if (D3D_ActivateRenderer(renderer) < 0) {
return -1;
Dec 31, 2008
Dec 31, 2008
817
818
819
820
}
D3D_SetBlendMode(data, renderer->blendMode);
Dec 31, 2008
Dec 31, 2008
821
822
823
result =
IDirect3DDevice9_SetTexture(data->device, 0,
(IDirect3DBaseTexture9 *) 0);
Dec 31, 2008
Dec 31, 2008
824
825
826
827
if (FAILED(result)) {
D3D_SetError("SetTexture()", result);
return -1;
}
Dec 9, 2009
Dec 9, 2009
828
829
830
831
832
833
834
835
836
837
838
839
color = D3DCOLOR_ARGB(renderer->a, renderer->r, renderer->g, renderer->b);
vertices = SDL_stack_alloc(Vertex, count);
for (i = 0; i < count; ++i) {
vertices[i].x = (float) points[i].x;
vertices[i].y = (float) points[i].y;
vertices[i].z = 0.0f;
vertices[i].color = color;
vertices[i].u = 0.0f;
vertices[i].v = 0.0f;
}
Dec 31, 2008
Dec 31, 2008
840
result =
Dec 9, 2009
Dec 9, 2009
841
IDirect3DDevice9_DrawPrimitiveUP(data->device, D3DPT_POINTLIST, count,
Dec 31, 2008
Dec 31, 2008
842
vertices, sizeof(*vertices));
Dec 9, 2009
Dec 9, 2009
843
SDL_stack_free(vertices);
Dec 31, 2008
Dec 31, 2008
844
845
846
847
848
849
850
851
if (FAILED(result)) {
D3D_SetError("DrawPrimitiveUP()", result);
return -1;
}
return 0;
}
static int
Dec 24, 2009
Dec 24, 2009
852
853
D3D_RenderDrawLines(SDL_Renderer * renderer, const SDL_Point * points,
int count)
Dec 31, 2008
Dec 31, 2008
854
855
856
{
D3D_RenderData *data = (D3D_RenderData *) renderer->driverdata;
DWORD color;
Dec 9, 2009
Dec 9, 2009
857
858
Vertex *vertices;
int i;
Dec 31, 2008
Dec 31, 2008
859
860
HRESULT result;
Feb 15, 2011
Feb 15, 2011
861
862
if (D3D_ActivateRenderer(renderer) < 0) {
return -1;
Dec 31, 2008
Dec 31, 2008
863
864
865
866
}
D3D_SetBlendMode(data, renderer->blendMode);
Dec 31, 2008
Dec 31, 2008
867
868
869
result =
IDirect3DDevice9_SetTexture(data->device, 0,
(IDirect3DBaseTexture9 *) 0);
Dec 31, 2008
Dec 31, 2008
870
871
872
873
if (FAILED(result)) {
D3D_SetError("SetTexture()", result);
return -1;
}
Dec 9, 2009
Dec 9, 2009
874
875
876
877
878
879
880
881
882
883
884
885
color = D3DCOLOR_ARGB(renderer->a, renderer->r, renderer->g, renderer->b);
vertices = SDL_stack_alloc(Vertex, count);
for (i = 0; i < count; ++i) {
vertices[i].x = (float) points[i].x;
vertices[i].y = (float) points[i].y;
vertices[i].z = 0.0f;
vertices[i].color = color;
vertices[i].u = 0.0f;
vertices[i].v = 0.0f;
}
Dec 31, 2008
Dec 31, 2008
886
result =
Dec 12, 2009
Dec 12, 2009
887
IDirect3DDevice9_DrawPrimitiveUP(data->device, D3DPT_LINESTRIP, count-1,
Dec 31, 2008
Dec 31, 2008
888
vertices, sizeof(*vertices));
Dec 12, 2009
Dec 12, 2009
889
890
891
892
893
894
895
896
897
/* DirectX 9 has the same line rasterization semantics as GDI,
so we need to close the endpoint of the line */
if (points[0].x != points[count-1].x || points[0].y != points[count-1].y) {
vertices[0].x = (float) points[count-1].x;
vertices[0].y = (float) points[count-1].y;
result = IDirect3DDevice9_DrawPrimitiveUP(data->device, D3DPT_POINTLIST, 1, vertices, sizeof(*vertices));
}
Dec 9, 2009
Dec 9, 2009
898
SDL_stack_free(vertices);
Dec 31, 2008
Dec 31, 2008
899
900
901
902
903
904
905
if (FAILED(result)) {
D3D_SetError("DrawPrimitiveUP()", result);
return -1;
}
return 0;
}
Dec 24, 2009
Dec 24, 2009
906
static int
Feb 15, 2011
Feb 15, 2011
907
D3D_RenderFillRects(SDL_Renderer * renderer, const SDL_Rect * rects,
Dec 24, 2009
Dec 24, 2009
908
int count)
Jul 17, 2006
Jul 17, 2006
910
D3D_RenderData *data = (D3D_RenderData *) renderer->driverdata;
Dec 31, 2008
Dec 31, 2008
911
DWORD color;
Dec 9, 2009
Dec 9, 2009
912
913
int i;
float minx, miny, maxx, maxy;
Dec 31, 2008
Dec 31, 2008
914
Vertex vertices[4];
Jul 12, 2006
Jul 12, 2006
915
HRESULT result;
Feb 15, 2011
Feb 15, 2011
917
918
if (D3D_ActivateRenderer(renderer) < 0) {
return -1;
Jul 12, 2006
Jul 12, 2006
919
}
Dec 31, 2008
Dec 31, 2008
921
922
D3D_SetBlendMode(data, renderer->blendMode);
Dec 31, 2008
Dec 31, 2008
923
924
925
result =
IDirect3DDevice9_SetTexture(data->device, 0,
(IDirect3DBaseTexture9 *) 0);
Dec 31, 2008
Dec 31, 2008
926
927
928
929
if (FAILED(result)) {
D3D_SetError("SetTexture()", result);
return -1;
}
Dec 9, 2009
Dec 9, 2009
930
931
932
933
color = D3DCOLOR_ARGB(renderer->a, renderer->r, renderer->g, renderer->b);
for (i = 0; i < count; ++i) {
Feb 15, 2011
Feb 15, 2011
934
const SDL_Rect *rect = &rects[i];
Dec 9, 2009
Dec 9, 2009
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
minx = (float) rect->x;
miny = (float) rect->y;
maxx = (float) rect->x + rect->w;
maxy = (float) rect->y + rect->h;
vertices[0].x = minx;
vertices[0].y = miny;
vertices[0].z = 0.0f;
vertices[0].color = color;
vertices[0].u = 0.0f;
vertices[0].v = 0.0f;
vertices[1].x = maxx;
vertices[1].y = miny;
vertices[1].z = 0.0f;
vertices[1].color = color;
vertices[1].u = 0.0f;
vertices[1].v = 0.0f;
vertices[2].x = maxx;
vertices[2].y = maxy;
vertices[2].z = 0.0f;
vertices[2].color = color;
vertices[2].u = 0.0f;
vertices[2].v = 0.0f;
vertices[3].x = minx;
vertices[3].y = maxy;
vertices[3].z = 0.0f;
vertices[3].color = color;
vertices[3].u = 0.0f;
vertices[3].v = 0.0f;
result =
IDirect3DDevice9_DrawPrimitiveUP(data->device, D3DPT_TRIANGLEFAN,
2, vertices, sizeof(*vertices));
if (FAILED(result)) {
D3D_SetError("DrawPrimitiveUP()", result);
return -1;
}
Jul 12, 2006
Jul 12, 2006
976
}
977
978
979
980
return 0;
}
static int
Jul 17, 2006
Jul 17, 2006
981
D3D_RenderCopy(SDL_Renderer * renderer, SDL_Texture * texture,
Aug 28, 2006
Aug 28, 2006
982
const SDL_Rect * srcrect, const SDL_Rect * dstrect)
Jul 17, 2006
Jul 17, 2006
984
985
D3D_RenderData *data = (D3D_RenderData *) renderer->driverdata;
D3D_TextureData *texturedata = (D3D_TextureData *) texture->driverdata;
Dec 14, 2009
Dec 14, 2009
986
LPDIRECT3DPIXELSHADER9 shader = NULL;
Jul 14, 2006
Jul 14, 2006
987
float minx, miny, maxx, maxy;
Jul 14, 2006
Jul 14, 2006
988
float minu, maxu, minv, maxv;
Aug 28, 2006
Aug 28, 2006
989
DWORD color;
Jul 14, 2006
Jul 14, 2006
990
991
Vertex vertices[4];
HRESULT result;
Feb 15, 2011
Feb 15, 2011
993
994
if (D3D_ActivateRenderer(renderer) < 0) {
return -1;
Jul 12, 2006
Jul 12, 2006
995
}
Jul 14, 2006
Jul 14, 2006
996
Sep 19, 2009
Sep 19, 2009
997
998
999
1000
minx = (float) dstrect->x - 0.5f;
miny = (float) dstrect->y - 0.5f;
maxx = (float) dstrect->x + dstrect->w - 0.5f;
maxy = (float) dstrect->y + dstrect->h - 0.5f;