Home
last modified time | relevance | path

Searched refs:UnlockRect (Results 1 – 17 of 17) sorted by relevance

/external/swiftshader/src/D3D8/
DDirect3DTexture8.cpp213 long Direct3DTexture8::UnlockRect(unsigned int level) in UnlockRect() function in D3D8::Direct3DTexture8
222 return surfaceLevel[level]->UnlockRect(); in UnlockRect()
DDirect3DCubeTexture8.cpp235 long Direct3DCubeTexture8::UnlockRect(D3DCUBEMAP_FACES face, unsigned int level) in UnlockRect() function in D3D8::Direct3DCubeTexture8
244 return surfaceLevel[face][level]->UnlockRect(); in UnlockRect()
DDirect3DTexture8.hpp59 long __stdcall UnlockRect(unsigned int level) override;
DDirect3DCubeTexture8.hpp60 long __stdcall UnlockRect(D3DCUBEMAP_FACES face, unsigned int level) override;
DDirect3DSurface8.hpp53 long __stdcall UnlockRect() override;
DDirect3DSurface8.cpp190 long Direct3DSurface8::UnlockRect() in UnlockRect() function in D3D8::Direct3DSurface8
DDirect3DDevice8.cpp488 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/
DDirect3DTexture9.cpp285 long Direct3DTexture9::UnlockRect(unsigned int level) in UnlockRect() function in D3D9::Direct3DTexture9
296 return surfaceLevel[level]->UnlockRect(); in UnlockRect()
DDirect3DCubeTexture9.cpp313 long Direct3DCubeTexture9::UnlockRect(D3DCUBEMAP_FACES face, unsigned int level) in UnlockRect() function in D3D9::Direct3DCubeTexture9
324 return surfaceLevel[face][level]->UnlockRect(); in UnlockRect()
DDirect3DTexture9.hpp62 long __stdcall UnlockRect(unsigned int level) override;
DDirect3DCubeTexture9.hpp62 long __stdcall UnlockRect(D3DCUBEMAP_FACES face, unsigned int level) override;
DDirect3DSurface9.hpp58 long __stdcall UnlockRect() override;
DDirect3DSurface9.cpp287 long Direct3DSurface9::UnlockRect() in UnlockRect() function in D3D9::Direct3DSurface9
/external/webrtc/webrtc/test/win/
Dd3d_renderer.cc207 texture_->UnlockRect(0); in RenderFrame()
/external/webrtc/webrtc/modules/video_render/windows/
Dvideo_render_direct3d9.cc195 if (FAILED(_pTexture->UnlockRect(0))) { in DeliverFrame()
700 pTexture->UnlockRect(0); in SetTransparentColor()
1099 if (FAILED(_pTextureLogo->UnlockRect(0))) in SetBitmap()
/external/swiftshader/include/Direct3D/
Dd3d8.h725 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/
Dd3d9.h155 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)