copyVideoTextureToPlatformTexture  200 Source/core/html/HTMLVideoElement.cpp     return player()->copyVideoTextureToPlatformTexture(context, texture, level, type, internalFormat, premultiplyAlpha, flipY);
copyVideoTextureToPlatformTexture   63 Source/core/html/HTMLVideoElement.h     bool copyVideoTextureToPlatformTexture(blink::WebGraphicsContext3D*, Platform3DObject texture, GC3Dint level, GC3Denum type, GC3Denum internalFormat, bool premultiplyAlpha, bool flipY);
copyVideoTextureToPlatformTexture 3493 Source/core/html/canvas/WebGLRenderingContextBase.cpp         if (video->copyVideoTextureToPlatformTexture(m_context.get(), texture->object(), level, type, internalformat, m_unpackPremultiplyAlpha, m_unpackFlipY)) {
copyVideoTextureToPlatformTexture  153 Source/platform/graphics/media/MediaPlayer.h     virtual bool copyVideoTextureToPlatformTexture(blink::WebGraphicsContext3D*, Platform3DObject, GC3Dint, GC3Denum, GC3Denum, bool, bool) = 0;
copyVideoTextureToPlatformTexture  381 Source/web/WebMediaPlayerClientImpl.cpp     return m_webMediaPlayer->copyVideoTextureToPlatformTexture(context, texture, level, internalFormat, type, premultiplyAlpha, flipY);
copyVideoTextureToPlatformTexture  483 Source/web/WebMediaPlayerClientImpl.cpp     if (!m_webMediaPlayer->copyVideoTextureToPlatformTexture(context3D, textureId, 0, GL_RGBA, GL_UNSIGNED_BYTE, true, false))
copyVideoTextureToPlatformTexture  118 Source/web/WebMediaPlayerClientImpl.h     virtual bool copyVideoTextureToPlatformTexture(WebGraphicsContext3D*, Platform3DObject texture, GLint level, GLenum type, GLenum internalFormat, bool premultiplyAlpha, bool flipY) OVERRIDE;
copyVideoTextureToPlatformTexture  146 public/platform/WebMediaPlayer.h     virtual bool copyVideoTextureToPlatformTexture(WebGraphicsContext3D*, unsigned texture, unsigned level, unsigned internalFormat, unsigned type, bool premultiplyAlpha, bool flipY) { return false; }