/external/swiftshader/src/D3D8/ |
D | Direct3DTexture8.cpp | 213 long Direct3DTexture8::UnlockRect(unsigned int level) in UnlockRect() function in D3D8::Direct3DTexture8 222 return surfaceLevel[level]->UnlockRect(); in UnlockRect()
|
D | Direct3DCubeTexture8.cpp | 235 long Direct3DCubeTexture8::UnlockRect(D3DCUBEMAP_FACES face, unsigned int level) in UnlockRect() function in D3D8::Direct3DCubeTexture8 244 return surfaceLevel[face][level]->UnlockRect(); in UnlockRect()
|
D | Direct3DTexture8.hpp | 59 long __stdcall UnlockRect(unsigned int level) override;
|
D | Direct3DSurface8.hpp | 53 long __stdcall UnlockRect() override;
|
D | Direct3DCubeTexture8.hpp | 60 long __stdcall UnlockRect(D3DCUBEMAP_FACES face, unsigned int level) override;
|
D | Direct3DSurface8.cpp | 191 long Direct3DSurface8::UnlockRect() in UnlockRect() function in D3D8::Direct3DSurface8
|
D | Direct3DDevice8.cpp | 488 sourceSurface->UnlockRect(); in CopyRects() 489 destinationSurface->UnlockRect(); in CopyRects() 1346 destSurface->UnlockRect(); in GetFrontBuffer() 2158 cursorBitmap->UnlockRect(); in SetCursorProperties() 4240 sourceSurface->UnlockRect(); in updateSurface() 4241 destinationSurface->UnlockRect(); in updateSurface()
|
/external/swiftshader/src/D3D9/ |
D | Direct3DTexture9.cpp | 285 long Direct3DTexture9::UnlockRect(unsigned int level) in UnlockRect() function in D3D9::Direct3DTexture9 296 return surfaceLevel[level]->UnlockRect(); in UnlockRect()
|
D | Direct3DCubeTexture9.cpp | 313 long Direct3DCubeTexture9::UnlockRect(D3DCUBEMAP_FACES face, unsigned int level) in UnlockRect() function in D3D9::Direct3DCubeTexture9 324 return surfaceLevel[face][level]->UnlockRect(); in UnlockRect()
|
D | Direct3DTexture9.hpp | 62 long __stdcall UnlockRect(unsigned int level) override;
|
D | Direct3DCubeTexture9.hpp | 62 long __stdcall UnlockRect(D3DCUBEMAP_FACES face, unsigned int level) override;
|
D | Direct3DSurface9.hpp | 58 long __stdcall UnlockRect() override;
|
D | Direct3DSurface9.cpp | 288 long Direct3DSurface9::UnlockRect() in UnlockRect() function in D3D9::Direct3DSurface9
|
/external/webrtc/webrtc/modules/video_render/windows/ |
D | video_render_direct3d9.cc | 195 if (FAILED(_pTexture->UnlockRect(0))) { in DeliverFrame() 700 pTexture->UnlockRect(0); in SetTransparentColor() 1099 if (FAILED(_pTextureLogo->UnlockRect(0))) in SetBitmap()
|
/external/webrtc/webrtc/test/win/ |
D | d3d_renderer.cc | 207 texture_->UnlockRect(0); in RenderFrame()
|
/external/swiftshader/include/Direct3D/ |
D | d3d8.h | 725 STDMETHOD(UnlockRect)(THIS_ UINT Level) PURE; in DECLARE_INTERFACE_() local 749 #define IDirect3DTexture8_UnlockRect(p,a) (p)->lpVtbl->UnlockRect(p,a) 769 #define IDirect3DTexture8_UnlockRect(p,a) (p)->UnlockRect(a) 879 STDMETHOD(UnlockRect)(THIS_ D3DCUBEMAP_FACES FaceType,UINT Level) PURE; in DECLARE_INTERFACE_() local 903 #define IDirect3DCubeTexture8_UnlockRect(p,a,b) (p)->lpVtbl->UnlockRect(p,a,b) 923 #define IDirect3DCubeTexture8_UnlockRect(p,a,b) (p)->UnlockRect(a,b) 1070 STDMETHOD(UnlockRect)(THIS) PURE; in DECLARE_INTERFACE_() local 1086 #define IDirect3DSurface8_UnlockRect(p) (p)->lpVtbl->UnlockRect(p) 1098 #define IDirect3DSurface8_UnlockRect(p) (p)->UnlockRect()
|
/external/mesa3d/include/D3D9/ |
D | d3d9.h | 155 virtual HRESULT WINAPI UnlockRect(D3DCUBEMAP_FACES FaceType, UINT Level) = 0; 339 virtual HRESULT WINAPI UnlockRect() = 0; 367 virtual HRESULT WINAPI UnlockRect(UINT Level) = 0; 707 HRESULT (WINAPI *UnlockRect)(IDirect3DCubeTexture9 *This, D3DCUBEMAP_FACES FaceType, UINT Level); 739 #define IDirect3DCubeTexture9_UnlockRect(p,a,b) (p)->lpVtbl->UnlockRect(p,a,b) 1475 HRESULT (WINAPI *UnlockRect)(IDirect3DSurface9 *This); 1501 #define IDirect3DSurface9_UnlockRect(p) (p)->lpVtbl->UnlockRect(p) 1605 HRESULT (WINAPI *UnlockRect)(IDirect3DTexture9 *This, UINT Level); 1637 #define IDirect3DTexture9_UnlockRect(p,a) (p)->lpVtbl->UnlockRect(p,a)
|