]> git.cworth.org Git - apitrace/blob - retrace/d3d9state_images.cpp
d3dretrace: Add d3d9 prefix to d3d9 specific files.
[apitrace] / retrace / d3d9state_images.cpp
1 /**************************************************************************
2  *
3  * Copyright 2011 Jose Fonseca
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  *
24  **************************************************************************/
25
26
27 #include <assert.h>
28
29 #include "image.hpp"
30 #include "d3d9imports.hpp"
31
32
33 namespace d3dstate {
34
35
36 image::Image *
37 getRenderTargetImage(IDirect3DDevice9 *pDevice) {
38     image::Image *image = NULL;
39     IDirect3DSurface9 *pRenderTarget = NULL;
40     D3DSURFACE_DESC Desc;
41     IDirect3DSurface9 *pStagingSurface = NULL;
42     D3DLOCKED_RECT LockedRect;
43     const unsigned char *src;
44     unsigned char *dst;
45     HRESULT hr;
46
47     hr = pDevice->GetRenderTarget(0, &pRenderTarget);
48     if (FAILED(hr)) {
49         goto no_rendertarget;
50     }
51     assert(pRenderTarget);
52
53     hr = pRenderTarget->GetDesc(&Desc);
54     assert(SUCCEEDED(hr));
55     assert(Desc.Format == D3DFMT_X8R8G8B8 || Desc.Format == D3DFMT_A8R8G8B8);
56
57     hr = pDevice->CreateOffscreenPlainSurface(Desc.Width, Desc.Height, Desc.Format, D3DPOOL_SYSTEMMEM, &pStagingSurface, NULL);
58     if (FAILED(hr)) {
59         goto no_staging;
60     }
61
62     hr = pDevice->GetRenderTargetData(pRenderTarget, pStagingSurface);
63     if (FAILED(hr)) {
64         goto no_rendertargetdata;
65     }
66
67     hr = pStagingSurface->LockRect(&LockedRect, NULL, D3DLOCK_READONLY);
68     if (FAILED(hr)) {
69         goto no_rendertargetdata;
70     }
71
72     image = new image::Image(Desc.Width, Desc.Height, 3, true);
73     if (!image) {
74         goto no_image;
75     }
76
77     dst = image->start();
78     src = (const unsigned char *)LockedRect.pBits;
79     for (unsigned y = 0; y < Desc.Height; ++y) {
80         for (unsigned x = 0; x < Desc.Width; ++x) {
81             dst[3*x + 0] = src[4*x + 2];
82             dst[3*x + 1] = src[4*x + 1];
83             dst[3*x + 2] = src[4*x + 0];
84         }
85         src += LockedRect.Pitch;
86         dst += image->stride();
87     }
88
89 no_image:
90     pStagingSurface->UnlockRect();
91 no_rendertargetdata:
92     pStagingSurface->Release();
93 no_staging:
94     pRenderTarget->Release();
95 no_rendertarget:
96     return image;
97 }
98
99
100 } /* namespace d3dstate */