flipY             196 Source/core/html/HTMLVideoElement.cpp bool HTMLVideoElement::copyVideoTextureToPlatformTexture(blink::WebGraphicsContext3D* context, Platform3DObject texture, GLint level, GLenum type, GLenum internalFormat, bool premultiplyAlpha, bool flipY)
flipY             200 Source/core/html/HTMLVideoElement.cpp     return player()->copyVideoTextureToPlatformTexture(context, texture, level, type, internalFormat, premultiplyAlpha, flipY);
flipY              63 Source/core/html/HTMLVideoElement.h     bool copyVideoTextureToPlatformTexture(blink::WebGraphicsContext3D*, Platform3DObject texture, GC3Dint level, GC3Denum type, GC3Denum internalFormat, bool premultiplyAlpha, bool flipY);
flipY            3279 Source/core/html/canvas/WebGLRenderingContextBase.cpp void WebGLRenderingContextBase::texImage2DImpl(GLenum target, GLint level, GLenum internalformat, GLenum format, GLenum type, Image* image, WebGLImageConversion::ImageHtmlDomSource domSource, bool flipY, bool premultiplyAlpha, ExceptionState& exceptionState)
flipY            3293 Source/core/html/canvas/WebGLRenderingContextBase.cpp     if (type == GL_UNSIGNED_BYTE && sourceDataFormat == WebGLImageConversion::DataFormatRGBA8 && format == GL_RGBA && alphaOp == WebGLImageConversion::AlphaDoNothing && !flipY)
flipY            3296 Source/core/html/canvas/WebGLRenderingContextBase.cpp         if (!WebGLImageConversion::packImageData(image, imagePixelData, format, type, flipY, alphaOp, sourceDataFormat, imageExtractor.imageWidth(), imageExtractor.imageHeight(), imageExtractor.imageSourceUnpackAlignment(), data)) {
flipY            3575 Source/core/html/canvas/WebGLRenderingContextBase.cpp void WebGLRenderingContextBase::texSubImage2DImpl(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLenum format, GLenum type, Image* image, WebGLImageConversion::ImageHtmlDomSource domSource, bool flipY, bool premultiplyAlpha, ExceptionState& exceptionState)
flipY            3589 Source/core/html/canvas/WebGLRenderingContextBase.cpp     if (type == GL_UNSIGNED_BYTE && sourceDataFormat == WebGLImageConversion::DataFormatRGBA8 && format == GL_RGBA && alphaOp == WebGLImageConversion::AlphaDoNothing && !flipY)
flipY            3592 Source/core/html/canvas/WebGLRenderingContextBase.cpp         if (!WebGLImageConversion::packImageData(image, imagePixelData, format, type, flipY, alphaOp, sourceDataFormat, imageExtractor.imageWidth(), imageExtractor.imageHeight(), imageExtractor.imageSourceUnpackAlignment(), data)) {
flipY             683 Source/core/html/canvas/WebGLRenderingContextBase.h     void texImage2DImpl(GLenum target, GLint level, GLenum internalformat, GLenum format, GLenum type, Image*, WebGLImageConversion::ImageHtmlDomSource, bool flipY, bool premultiplyAlpha, ExceptionState&);
flipY             685 Source/core/html/canvas/WebGLRenderingContextBase.h     void texSubImage2DImpl(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLenum format, GLenum type, Image*, WebGLImageConversion::ImageHtmlDomSource, bool flipY, bool premultiplyAlpha, ExceptionState&);
flipY             135 Source/core/svg/SVGMatrixTearOff.cpp     matrix->mutableValue()->flipY();
flipY              79 Source/core/svg/SVGMatrixTearOff.h     PassRefPtr<SVGMatrixTearOff> flipY();
flipY             153 Source/platform/graphics/ImageBuffer.cpp bool ImageBuffer::copyToPlatformTexture(blink::WebGraphicsContext3D* context, Platform3DObject texture, GLenum internalFormat, GLenum destType, GLint level, bool premultiplyAlpha, bool flipY)
flipY             192 Source/platform/graphics/ImageBuffer.cpp     context->pixelStorei(GC3D_UNPACK_FLIP_Y_CHROMIUM, !flipY);
flipY             319 Source/platform/graphics/gpu/DrawingBuffer.cpp bool DrawingBuffer::copyToPlatformTexture(blink::WebGraphicsContext3D* context, Platform3DObject texture, GLenum internalFormat, GLenum destType, GLint level, bool premultiplyAlpha, bool flipY)
flipY             369 Source/platform/graphics/gpu/DrawingBuffer.cpp     context->pixelStorei(GC3D_UNPACK_FLIP_Y_CHROMIUM, flipY);
flipY             139 Source/platform/graphics/gpu/DrawingBuffer.h         GLenum destType, GLint level, bool premultiplyAlpha, bool flipY);
flipY            1659 Source/platform/graphics/gpu/WebGLImageConversion.cpp     bool flipY,
flipY            1676 Source/platform/graphics/gpu/WebGLImageConversion.cpp     if (!packPixels(reinterpret_cast<const uint8_t*>(pixels), sourceFormat, width, height, sourceUnpackAlignment, format, type, alphaOp, data.data(), flipY))
flipY            1688 Source/platform/graphics/gpu/WebGLImageConversion.cpp     bool flipY,
flipY            1703 Source/platform/graphics/gpu/WebGLImageConversion.cpp     if (!packPixels(imageData, DataFormatRGBA8, width, height, 0, format, type, premultiplyAlpha ? AlphaDoPremultiply : AlphaDoNothing, data.data(), flipY))
flipY            1714 Source/platform/graphics/gpu/WebGLImageConversion.cpp     bool flipY, bool premultiplyAlpha,
flipY            1728 Source/platform/graphics/gpu/WebGLImageConversion.cpp     if (!packPixels(static_cast<const uint8_t*>(pixels), sourceDataFormat, width, height, unpackAlignment, format, type, (premultiplyAlpha ? AlphaDoPremultiply : AlphaDoNothing), data.data(), flipY))
flipY            1744 Source/platform/graphics/gpu/WebGLImageConversion.cpp     bool flipY)
flipY            1752 Source/platform/graphics/gpu/WebGLImageConversion.cpp     if (flipY) {
flipY             139 Source/platform/graphics/gpu/WebGLImageConversion.h     static bool packImageData(Image*, const void* pixels, GLenum format, GLenum type, bool flipY, AlphaOp, DataFormat sourceFormat, unsigned width, unsigned height, unsigned sourceUnpackAlignment, Vector<uint8_t>& data);
flipY             145 Source/platform/graphics/gpu/WebGLImageConversion.h     static bool extractImageData(const uint8_t*, const IntSize&, GLenum format, GLenum type, bool flipY, bool premultiplyAlpha, Vector<uint8_t>& data);
flipY             152 Source/platform/graphics/gpu/WebGLImageConversion.h     static bool extractTextureData(unsigned width, unsigned height, GLenum format, GLenum type, unsigned unpackAlignment, bool flipY, bool premultiplyAlpha, const void* pixels, Vector<uint8_t>& data);
flipY             163 Source/platform/graphics/gpu/WebGLImageConversion.h     static bool packPixels(const uint8_t* sourceData, DataFormat sourceDataFormat, unsigned width, unsigned height, unsigned sourceUnpackAlignment, unsigned destinationFormat, unsigned destinationType, AlphaOp, void* destinationData, bool flipY);
flipY              99 Source/platform/transforms/AffineTransform.h     AffineTransform& flipY();
flipY             229 Source/platform/transforms/TransformationMatrix.h     TransformationMatrix& flipY();
flipY             374 Source/web/WebMediaPlayerClientImpl.cpp bool WebMediaPlayerClientImpl::copyVideoTextureToPlatformTexture(WebGraphicsContext3D* context, Platform3DObject texture, GLint level, GLenum type, GLenum internalFormat, bool premultiplyAlpha, bool flipY)
flipY             381 Source/web/WebMediaPlayerClientImpl.cpp     return m_webMediaPlayer->copyVideoTextureToPlatformTexture(context, texture, level, internalFormat, type, premultiplyAlpha, flipY);
flipY             118 Source/web/WebMediaPlayerClientImpl.h     virtual bool copyVideoTextureToPlatformTexture(WebGraphicsContext3D*, Platform3DObject texture, GLint level, GLenum type, GLenum internalFormat, bool premultiplyAlpha, bool flipY) OVERRIDE;
flipY             146 public/platform/WebMediaPlayer.h     virtual bool copyVideoTextureToPlatformTexture(WebGraphicsContext3D*, unsigned texture, unsigned level, unsigned internalFormat, unsigned type, bool premultiplyAlpha, bool flipY) { return false; }