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

  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
Blit9.h 34 bool copy2D(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, TextureStorage *storage, GLint level);
35 bool copyCube(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, TextureStorage *storage, GLenum target, GLint level);
39 // source is interpreted as RGBA and destFormat specifies the desired result format. For example, if destFormat = GL_RGB, the alpha channel will be forced to 0.
40 bool formatConvert(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, IDirect3DSurface9 *dest);
54 bool setFormatConvertShaders(GLenum destFormat);
56 bool copy(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, IDirect3DSurface9 *dest);
Blit9.cpp 211 bool Blit9::copy2D(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, TextureStorage *storage, GLint level)
239 result = copy(source, sourceRect, destFormat, xoffset, yoffset, destSurface);
247 bool Blit9::copyCube(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, TextureStorage *storage, GLenum target, GLint level)
275 result = copy(source, sourceRect, destFormat, xoffset, yoffset, destSurface);
283 bool Blit9::copy(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, IDirect3DSurface9 *dest)
298 d3d9_gl::IsFormatChannelEquivalent(destDesc.Format, destFormat)) // Can use StretchRect
311 return formatConvert(source, sourceRect, destFormat, xoffset, yoffset, dest);
316 bool Blit9::formatConvert(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, IDirect3DSurface9 *dest)
334 if (setFormatConvertShaders(destFormat))
346 bool Blit9::setFormatConvertShaders(GLenum destFormat)
    [all...]
Renderer9.h 127 virtual bool copyImage2D(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat,
129 virtual bool copyImageCube(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat,
131 virtual bool copyImage3D(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat,
133 virtual bool copyImage2DArray(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat,
formatutils9.cpp 28 GLenum destFormat;
32 D3D9FastCopyFormat(GLenum destFormat, GLenum destType, ColorCopyFunction copyFunction)
33 : destFormat(destFormat), destType(destType), copyFunction(copyFunction)
89 info.fastCopyFunctions.insert(std::make_pair(std::make_pair(i->second.destFormat, i->second.destType), i->second.copyFunction));
    [all...]
Renderer9.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
Extensions3DUtil.h 29 static bool canUseCopyTextureCHROMIUM(GLenum destFormat, GLenum destType, GLint level);
Extensions3DUtil.cpp 84 bool Extensions3DUtil::canUseCopyTextureCHROMIUM(GLenum destFormat, GLenum destType, GLint level)
88 if ((destFormat == GL_RGB || destFormat == GL_RGBA)
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
Blit11.h 38 const gl::Rectangle *scissor, GLenum destFormat, GLenum filter);
86 void add2DBlitShaderToMap(GLenum destFormat, bool signedInteger, ID3D11PixelShader *ps);
87 void add3DBlitShaderToMap(GLenum destFormat, bool signedInteger, ID3D11PixelShader *ps);
Renderer11.h 123 virtual bool copyImage2D(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat,
125 virtual bool copyImageCube(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat,
127 virtual bool copyImage3D(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat,
129 virtual bool copyImage2DArray(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat,
Blit11.cpp 511 const gl::Rectangle *scissor, GLenum destFormat, GLenum filter)
516 // Determine if the source format is a signed integer format, the destFormat will already
525 parameters.mDestinationFormat = destFormat;
    [all...]
Renderer11.cpp     [all...]
formatutils11.cpp 105 GLenum destFormat;
109 D3D11FastCopyFormat(GLenum destFormat, GLenum destType, ColorCopyFunction copyFunction)
110 : destFormat(destFormat), destType(destType), copyFunction(copyFunction)
238 info.fastCopyFunctions.insert(std::make_pair(std::make_pair(i->second.destFormat, i->second.destType), i->second.copyFunction));
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
Renderer.h 178 virtual bool copyImage2D(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat,
180 virtual bool copyImageCube(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat,
182 virtual bool copyImage3D(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat,
184 virtual bool copyImage2DArray(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat,
  /external/chromium_org/third_party/angle/src/libGLESv2/
validationES3.cpp 590 EffectiveInternalFormatInfo(GLenum effectiveFormat, GLenum destFormat, GLuint minRedBits, GLuint maxRedBits,
593 : mEffectiveFormat(effectiveFormat), mDestFormat(destFormat), mMinRedBits(minRedBits),
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
meta.c     [all...]
  /external/mesa3d/src/mesa/drivers/common/
meta.c     [all...]

Completed in 423 milliseconds