Searched refs:flipY (Results 1 - 25 of 36) sorted by relevance

12

/external/replicaisland/src/com/replica/replicaisland/
H A DCollisionVolume.java82 if (flip != null && flip.flipY) {
93 if (flip != null && flip.flipY) {
110 public boolean flipY; field in class:CollisionVolume.FlipInfo
H A DSphereCollisionVolume.java160 if (flip != null && (flip.flipX || flip.flipY)) {
167 if (flip.flipY) {
H A DGameObjectCollisionSystem.java109 sFlip.flipY = (record.object.facingDirection.y < 0.0f);
122 sOtherFlip.flipY = (other.object.facingDirection.y < 0.0f);
329 sCompareFlip.flipY = (object1.object.facingDirection.y < 0.0f);
337 sCompareFlip.flipY = (object2.object.facingDirection.y < 0.0f);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
H A DWebGLImageConversion.h137 // according to the given format and type, and obeying the flipY and AlphaOp flags.
139 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);
143 // and obeying the flipY and premultiplyAlpha flags. Returns true
145 static bool extractImageData(const uint8_t*, const IntSize&, GLenum format, GLenum type, bool flipY, bool premultiplyAlpha, Vector<uint8_t>& data);
148 // data, applying the flipY and premultiplyAlpha parameters.
152 static bool extractTextureData(unsigned width, unsigned height, GLenum format, GLenum type, unsigned unpackAlignment, bool flipY, bool premultiplyAlpha, const void* pixels, Vector<uint8_t>& data);
163 static bool packPixels(const uint8_t* sourceData, DataFormat sourceDataFormat, unsigned width, unsigned height, unsigned sourceUnpackAlignment, unsigned destinationFormat, unsigned destinationType, AlphaOp, void* destinationData, bool flipY);
H A DWebGLImageConversion.cpp1659 bool flipY,
1676 if (!packPixels(reinterpret_cast<const uint8_t*>(pixels), sourceFormat, width, height, sourceUnpackAlignment, format, type, alphaOp, data.data(), flipY))
1688 bool flipY,
1703 if (!packPixels(imageData, DataFormatRGBA8, width, height, 0, format, type, premultiplyAlpha ? AlphaDoPremultiply : AlphaDoNothing, data.data(), flipY))
1714 bool flipY, bool premultiplyAlpha,
1728 if (!packPixels(static_cast<const uint8_t*>(pixels), sourceDataFormat, width, height, unpackAlignment, format, type, (premultiplyAlpha ? AlphaDoPremultiply : AlphaDoNothing), data.data(), flipY))
1744 bool flipY)
1752 if (flipY) {
1654 packImageData( Image* image, const void* pixels, GLenum format, GLenum type, bool flipY, AlphaOp alphaOp, DataFormat sourceFormat, unsigned width, unsigned height, unsigned sourceUnpackAlignment, Vector<uint8_t>& data) argument
1683 extractImageData( const uint8_t* imageData, const IntSize& imageDataSize, GLenum format, GLenum type, bool flipY, bool premultiplyAlpha, Vector<uint8_t>& data) argument
1709 extractTextureData( unsigned width, unsigned height, GLenum format, GLenum type, unsigned unpackAlignment, bool flipY, bool premultiplyAlpha, const void* pixels, Vector<uint8_t>& data) argument
1734 packPixels( const uint8_t* sourceData, DataFormat sourceDataFormat, unsigned width, unsigned height, unsigned sourceUnpackAlignment, unsigned destinationFormat, unsigned destinationType, AlphaOp alphaOp, void* destinationData, bool flipY) argument
H A DDrawingBuffer.h159 GLenum destType, GLint level, bool premultiplyAlpha, bool flipY, bool fromFrontBuffer = false);
H A DDrawingBuffer.cpp445 bool DrawingBuffer::copyToPlatformTexture(WebGraphicsContext3D* context, Platform3DObject texture, GLenum internalFormat, GLenum destType, GLint level, bool premultiplyAlpha, bool flipY, bool fromFrontBuffer) argument
485 context->pixelStorei(GC3D_UNPACK_FLIP_Y_CHROMIUM, flipY);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGMatrix.idl45 SVGMatrix flipY();
H A DSVGMatrixTearOff.h80 PassRefPtr<SVGMatrixTearOff> flipY();
H A DSVGMatrixTearOff.cpp130 PassRefPtr<SVGMatrixTearOff> SVGMatrixTearOff::flipY() function in class:blink::SVGMatrixTearOff
133 matrix->mutableValue()->flipY();
/external/deqp/modules/glshared/
H A DglsFragmentOpUtil.cpp230 bool flipY = quad.posA.y() > quad.posB.y(); local
231 rr::FaceType faceType = flipX == flipY ? rr::FACETYPE_FRONT : rr::FACETYPE_BACK;
234 int yFirst = flipY ? quad.posB.y() : quad.posA.y();
235 int yLast = flipY ? quad.posA.y() : quad.posB.y();
243 if (flipY)
H A DglsInteractionTestUtil.cpp241 bool flipY = rnd.getBool();
245 quad.posA = IVec2(flipX ? (x+width-1) : x, flipY ? (y+height-1) : y);
246 quad.posB = IVec2(flipX ? x : (x+width-1), flipY ? y : (y+height-1));
H A DglsFragOpInteractionCase.cpp200 const bool flipY = rnd.getBool(); local
204 quad.posA = tcu::IVec2(flipX ? (x+width-1) : x, flipY ? (y+height-1) : y);
205 quad.posB = tcu::IVec2(flipX ? x : (x+width-1), flipY ? y : (y+height-1));
287 const bool flipY = quad.posB.y() < quad.posA.y();
293 const Vec2 pA (flipX ? 1.0f : -1.0f, flipY ? 1.0f : -1.0f);
294 const Vec2 pB (flipX ? -1.0f : 1.0f, flipY ? -1.0f : 1.0f);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLVideoElement.h73 bool copyVideoTextureToPlatformTexture(WebGraphicsContext3D*, Platform3DObject texture, GC3Dint level, GLenum internalFormat, GLenum type, bool premultiplyAlpha, bool flipY);
H A DHTMLVideoElement.cpp212 bool HTMLVideoElement::copyVideoTextureToPlatformTexture(WebGraphicsContext3D* context, Platform3DObject texture, GLint level, GLenum internalFormat, GLenum type, bool premultiplyAlpha, bool flipY) argument
220 return webMediaPlayer()->copyVideoTextureToPlatformTexture(context, texture, level, internalFormat, type, premultiplyAlpha, flipY);
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebMediaPlayer.h154 virtual bool copyVideoTextureToPlatformTexture(WebGraphicsContext3D*, unsigned texture, unsigned level, unsigned internalFormat, unsigned type, bool premultiplyAlpha, bool flipY) { return false; } argument
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DAffineTransform.h99 AffineTransform& flipY();
H A DAffineTransform.cpp193 AffineTransform& AffineTransform::flipY() function in class:blink::AffineTransform
H A DTransformationMatrix.h231 TransformationMatrix& flipY();
/external/chromium_org/third_party/skia/src/core/
H A DSkRRect.cpp365 const bool flipY = yScale < 0;
366 if (flipY) {
378 if (flipY) {
387 } else if (flipY) {
/external/skia/src/core/
H A DSkRRect.cpp352 const bool flipY = yScale < 0;
353 if (flipY) {
365 if (flipY) {
374 } else if (flipY) {
/external/deqp/modules/gles2/functional/
H A Des2fRandomFragmentOpTests.cpp136 bool flipY = quad.posB.y() < quad.posA.y();
142 translated.posA = Vec2(flipX ? 1.0f : -1.0f, flipY ? 1.0f : -1.0f);
143 translated.posB = Vec2(flipX ? -1.0f : 1.0f, flipY ? -1.0f : 1.0f);
/external/deqp/modules/gles3/functional/
H A Des3fRandomFragmentOpTests.cpp136 bool flipY = quad.posB.y() < quad.posA.y();
142 translated.posA = Vec2(flipX ? 1.0f : -1.0f, flipY ? 1.0f : -1.0f);
143 translated.posB = Vec2(flipX ? -1.0f : 1.0f, flipY ? -1.0f : 1.0f);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DImageBuffer.cpp169 bool ImageBuffer::copyToPlatformTexture(WebGraphicsContext3D* context, Platform3DObject texture, GLenum internalFormat, GLenum destType, GLint level, bool premultiplyAlpha, bool flipY) argument
200 context->pixelStorei(GC3D_UNPACK_FLIP_Y_CHROMIUM, !flipY);
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGpuGL.cpp1584 bool flipY = kBottomLeft_GrSurfaceOrigin == target->origin(); local
1643 if (flipY && this->glCaps().packFlipYSupport()) {
1653 if (flipY && this->glCaps().packFlipYSupport()) {
1655 flipY = false;
1663 if (flipY) {
1684 if (flipY) {
1690 if (!flipY) {

Completed in 1056 milliseconds

12