2 Copyright 2004-2005 Chris Tallon
4 This file is part of VOMP.
6 VOMP is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 VOMP is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with VOMP; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
29 #include "threadwin.h"
41 #define D3DFVF_OSDVERTEX (D3DFVF_XYZRHW|D3DFVF_DIFFUSE| D3DFVF_TEX1)
47 class OsdWin : public Osd, public ThreadWin
53 int init(void* device);
58 void screenShot(const char* fileName);
60 Surface * createNewSurface();
63 void threadPostStopCleanup();
65 LPDIRECT3DDEVICE9 getD3dDev() ;
66 LPDIRECT3D9 getD3d() ;
67 // This function is called from the WinMain function in order to get Screen updates
69 void RenderDS(LPDIRECT3DSURFACE9 present);
72 void setExternalDriving(DsAllocator* dsall,DWORD width, DWORD height);
74 DWORD getFilterCaps();
75 DWORD getFilterType(){return filter_type;};
76 void setFilterType(D3DTEXTUREFILTERTYPE type) {filter_type=type;};
88 void SetEVRStatus(EVR_state new_state){evrstate=new_state;};
90 IDirect3DDeviceManager9 * getD3dMan() {return d3ddevman;};
91 bool IsEvrSupported() {return evrsupported;};
92 HWND getWindow() {return window;};
99 LPDIRECT3DDEVICE9 d3ddevice;
100 // LPDIRECT3DVERTEXBUFFER9 d3dvb;
101 LPDIRECT3DSURFACE9 d3drtsurf;
102 LPDIRECT3DSWAPCHAIN9 swappy;
103 LPDIRECT3DSURFACE9 swapsurf;
104 DsAllocator* dsallocator;
105 // This indicates, that currently a video is played, thus the osd updates are driven by the Directshow Filtersystem
106 bool external_driving;
108 DWORD lastrendertime;
109 void InternalRendering(LPDIRECT3DSURFACE9 present);
111 LPDIRECT3DVERTEXBUFFER9 InitVertexBuffer(DWORD width, DWORD height);
112 OSDVERTEX osdvertices[4];
114 D3DTEXTUREFILTERTYPE filter_type;
120 IDirect3DDeviceManager9 *d3ddevman;
121 HANDLE dxvadevicehandle;