HomeSort by relevance Sort by last modified time
    Searched refs:IDirect3DSurface9 (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/ui/surface/
accelerated_surface_transformer_win.h 51 IDirect3DSurface9* dst_surface,
57 IDirect3DSurface9* dst_surface,
67 IDirect3DSurface9** texture_level_zero);
71 IDirect3DSurface9* src_surface,
73 IDirect3DSurface9* dst_surface,
100 IDirect3DSurface9** dst_y,
101 IDirect3DSurface9** dst_u,
102 IDirect3DSurface9** dst_v);
107 bool ReadFast(IDirect3DSurface9* gpu_surface,
116 bool ReadByLockAndCopy(IDirect3DSurface9* gpu_surface
    [all...]
d3d9_utils_win.h 62 base::win::ScopedComPtr<IDirect3DSurface9>* surface);
77 IDirect3DSurface9** render_target);
83 gfx::Size GetSize(IDirect3DSurface9* surface);
accelerated_surface_transformer_win.cc 65 ScopedComPtr<IDirect3DSurface9> original_render_target_;
254 IDirect3DSurface9* dst_surface,
261 IDirect3DSurface9* dst_surface,
268 IDirect3DSurface9* dst_surface,
338 IDirect3DSurface9** texture_level_zero) {
351 IDirect3DSurface9* src_surface,
353 IDirect3DSurface9* dst_surface,
391 IDirect3DSurface9* read_buffer =
393 IDirect3DSurface9* write_buffer;
422 IDirect3DSurface9** dst_y
    [all...]
d3d9_utils_win.cc 109 base::win::ScopedComPtr<IDirect3DSurface9>* surface) {
132 IDirect3DSurface9** render_target) {
152 gfx::Size GetSize(IDirect3DSurface9* surface) {
accelerated_surface_transformer_win_unittest.cc 39 SkBitmap ToSkBitmap(IDirect3DSurface9* surface, bool is_single_channel) {
157 IDirect3DSurface9* lockable_surface,
190 IDirect3DSurface9* lockable_surface,
256 void AssertSymmetry(IDirect3DSurface9* lockable_surface,
296 IDirect3DSurface9* expected,
297 IDirect3DSurface9* actual) {
351 base::win::ScopedComPtr<IDirect3DSurface9> src, dst;
370 base::win::ScopedComPtr<IDirect3DSurface9>* reference_surface,
372 base::win::ScopedComPtr<IDirect3DSurface9> dst;
384 IDirect3DSurface9* lockable)
    [all...]
accelerated_surface_win.cc 61 IDirect3DSurface9* src_surface,
486 base::win::ScopedComPtr<IDirect3DSurface9> back_buffer;
510 base::win::ScopedComPtr<IDirect3DSurface9> final_surface;
561 base::win::ScopedComPtr<IDirect3DSurface9> back_buffer;
584 base::win::ScopedComPtr<IDirect3DSurface9> resized;
609 base::win::ScopedComPtr<IDirect3DSurface9> y, u, v;
800 base::win::ScopedComPtr<IDirect3DSurface9> source_surface;
808 base::win::ScopedComPtr<IDirect3DSurface9> dest_surface;
967 base::win::ScopedComPtr<IDirect3DSurface9> system_surface;
971 base::win::ScopedComPtr<IDirect3DSurface9> back_buffer
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
RenderTarget9.h 7 // RenderTarget9.h: Defines a D3D9-specific wrapper for IDirect3DSurface9 pointers
23 RenderTarget9(Renderer *renderer, IDirect3DSurface9 *surface);
28 IDirect3DSurface9 *getSurface();
33 IDirect3DSurface9 *mRenderTarget;
SwapChain9.h 31 virtual IDirect3DSurface9 *getRenderTarget();
32 virtual IDirect3DSurface9 *getDepthStencil();
48 IDirect3DSurface9 *mBackBuffer;
49 IDirect3DSurface9 *mRenderTarget;
50 IDirect3DSurface9 *mDepthStencil;
Blit.h 39 bool formatConvert(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, IDirect3DSurface9 *dest);
43 bool boxFilter(IDirect3DSurface9 *source, IDirect3DSurface9 *dest);
55 bool copy(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, IDirect3DSurface9 *dest);
56 IDirect3DTexture9 *copySurfaceToTexture(IDirect3DSurface9 *surface, const RECT &sourceRect);
59 RECT getSurfaceRect(IDirect3DSurface9 *surface) const;
87 IDirect3DSurface9 *mSavedRenderTarget;
88 IDirect3DSurface9 *mSavedDepthStencil
    [all...]
Image9.h 37 static void generateMip(IDirect3DSurface9 *destSurface, IDirect3DSurface9 *sourceSurface);
38 static void copyLockableSurfaces(IDirect3DSurface9 *dest, IDirect3DSurface9 *source);
46 IDirect3DSurface9 *getSurface();
64 void setManagedSurface(IDirect3DSurface9 *surface);
65 bool updateSurface(IDirect3DSurface9 *dest, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height);
75 IDirect3DSurface9 *mSurface;
TextureStorage9.cpp 162 IDirect3DSurface9 *TextureStorage9_2D::getSurfaceLevel(int level, bool dirty)
164 IDirect3DSurface9 *surface = NULL;
188 IDirect3DSurface9 *upper = getSurfaceLevel(level - 1, false);
189 IDirect3DSurface9 *lower = getSurfaceLevel(level, true);
211 IDirect3DSurface9 *surface = getSurfaceLevel(0, false);
267 IDirect3DSurface9 *TextureStorage9_Cube::getCubeMapSurface(GLenum faceTarget, int level, bool dirty)
269 IDirect3DSurface9 *surface = NULL;
294 IDirect3DSurface9 *upper = getCubeMapSurface(GL_TEXTURE_CUBE_MAP_POSITIVE_X + face, level - 1, false);
295 IDirect3DSurface9 *lower = getCubeMapSurface(GL_TEXTURE_CUBE_MAP_POSITIVE_X + face, level, true);
315 IDirect3DSurface9 *surface = NULL
    [all...]
RenderTarget9.cpp 8 // RenderTarget9.cpp: Implements a D3D9-specific wrapper for IDirect3DSurface9
20 RenderTarget9::RenderTarget9(Renderer *renderer, IDirect3DSurface9 *surface)
102 IDirect3DSurface9 *RenderTarget9::getSurface()
TextureStorage9.h 70 IDirect3DSurface9 *getSurfaceLevel(int level, bool dirty);
92 IDirect3DSurface9 *getCubeMapSurface(GLenum faceTarget, int level, bool dirty);
Blit.cpp 167 RECT Blit::getSurfaceRect(IDirect3DSurface9 *surface) const
181 bool Blit::boxFilter(IDirect3DSurface9 *source, IDirect3DSurface9 *dest)
217 IDirect3DSurface9 *source = NULL;
237 IDirect3DSurface9 *destSurface = storage9->getSurfaceLevel(level, true);
253 IDirect3DSurface9 *source = NULL;
273 IDirect3DSurface9 *destSurface = storage9->getCubeMapSurface(target, level, true);
286 bool Blit::copy(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, IDirect3DSurface9 *dest)
319 bool Blit::formatConvert(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, IDirect3DSurface (…)
    [all...]
Image9.cpp 43 void Image9::generateMip(IDirect3DSurface9 *destSurface, IDirect3DSurface9 *sourceSurface)
106 IDirect3DSurface9 *sourceSurface = source->getSurface();
110 IDirect3DSurface9 *destSurface = dest->getSurface();
116 void Image9::copyLockableSurfaces(IDirect3DSurface9 *dest, IDirect3DSurface9 *source)
180 IDirect3DSurface9 *newSurface = NULL;
253 IDirect3DSurface9 *Image9::getSurface()
272 void Image9::setManagedSurface(IDirect3DSurface9 *surface)
305 bool Image9::updateSurface(IDirect3DSurface9 *destSurface, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height
    [all...]
SwapChain9.cpp 158 IDirect3DSurface9 *oldRenderTarget = mRenderTarget;
362 IDirect3DSurface9 *SwapChain9::getRenderTarget()
374 IDirect3DSurface9 *SwapChain9::getDepthStencil()
Renderer9.h 192 bool boxFilter(IDirect3DSurface9 *source, IDirect3DSurface9 *dest);
209 bool copyToRenderTarget(IDirect3DSurface9 *dest, IDirect3DSurface9 *source, bool fromManaged);
Renderer9.cpp     [all...]
  /external/chromium_org/content/common/gpu/media/
dxva_video_decode_accelerator.h 23 interface IDirect3DSurface9;
dxva_video_decode_accelerator.cc 174 bool CopyOutputSampleDataToPictureBuffer(IDirect3DSurface9* dest_surface);
283 CopyOutputSampleDataToPictureBuffer(IDirect3DSurface9* dest_surface) {
319 base::win::ScopedComPtr<IDirect3DSurface9> d3d_surface;
852 base::win::ScopedComPtr<IDirect3DSurface9> surface;
    [all...]

Completed in 212 milliseconds