Searched refs:flipY (Results 1 - 25 of 26) 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/swiftshader/src/OpenGL/libGLESv2/
H A DDevice.hpp78 static void ClipDstRect(sw::RectF &srcRect, sw::Rect &dstRect, sw::Rect &clipRect, bool flipX = false, bool flipY = false);
79 static void ClipSrcRect(sw::RectF &srcRect, sw::Rect &dstRect, sw::Rect &clipRect, bool flipX = false, bool flipY = false);
91 void copyBuffer(sw::byte *sourceBuffer, sw::byte *destBuffer, unsigned int width, unsigned int height, unsigned int sourcePitch, unsigned int destPitch, unsigned int bytes, bool flipX, bool flipY);
H A DDevice.cpp390 void Device::copyBuffer(byte *sourceBuffer, byte *destBuffer, unsigned int width, unsigned int height, unsigned int sourcePitch, unsigned int destPitch, unsigned int bytes, bool flipX, bool flipY) argument
394 if(flipY)
424 if(flipY)
456 bool flipY = false; local
460 flipY = (sourceRect->y0 < sourceRect->y1) ^ (destRect->y0 < destRect->y1);
465 flipY = (sourceRect->y0 > sourceRect->y1);
470 flipY = (destRect->y0 > destRect->y1);
525 ClipSrcRect(sRect, dRect, srcClipRect, flipX, flipY);
528 ClipDstRect(sRect, dRect, dstClipRect, flipX, flipY);
573 if(fullCopy && !scaling && !isOutOfBounds && equalFormats && !alpha0xFF && equalSlice && smallMargin && !flipX && !flipY)
876 ClipDstRect(sw::RectF &srcRect, sw::Rect &dstRect, sw::Rect &clipRect, bool flipX, bool flipY) argument
932 ClipSrcRect(sw::RectF &srcRect, sw::Rect &dstRect, sw::Rect &clipRect, bool flipX, bool flipY) argument
[all...]
H A DContext.cpp4009 bool flipY = (srcY0 < srcY1) ^ (dstY0 < dstY1); local
4062 Device::ClipDstRect(sourceScissoredRect, destScissoredRect, scissorRect, flipX, flipY);
4071 Device::ClipSrcRect(sourceTrimmedRect, destTrimmedRect, sourceTrimRect, flipX, flipY);
4074 Device::ClipDstRect(sourceTrimmedRect, destTrimmedRect, destTrimRect, flipX, flipY);
4236 if(flipY)
/external/skia/src/gpu/glsl/
H A DGrGLSLXferProcessor.cpp44 bool flipY = kBottomLeft_GrSurfaceOrigin == args.fDstTextureOrigin; local
76 if (flipY) {
/external/skqp/src/gpu/glsl/
H A DGrGLSLXferProcessor.cpp44 bool flipY = kBottomLeft_GrSurfaceOrigin == args.fDstTextureOrigin; local
76 if (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/skqp/tests/
H A DGpuSampleLocationsTest.cpp94 const GrGpu::MultisampleSpecs& specs, bool flipY) {
102 if (flipY) {
93 assert_equal(skiatest::Reporter* reporter, const SamplePattern& pattern, const GrGpu::MultisampleSpecs& specs, bool flipY) argument
/external/mesa3d/src/mesa/drivers/common/
H A Dmeta_blit.c606 GLenum filter, GLint flipX, GLint flipY,
653 flipY = -flipY;
782 verts[0].y = -1.0F * flipY;
784 verts[1].y = -1.0F * flipY;
786 verts[2].y = 1.0F * flipY;
788 verts[3].y = 1.0F * flipY;
601 blitframebuffer_texture(struct gl_context *ctx, const struct gl_framebuffer *readFb, const struct gl_framebuffer *drawFb, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLenum filter, GLint flipX, GLint flipY, GLboolean glsl_version, GLboolean do_depth) argument
/external/skia/src/core/
H A DSkRRect.cpp411 const bool flipY = yScale < 0;
412 if (flipY) {
424 if (flipY) {
433 } else if (flipY) {
/external/skqp/src/core/
H A DSkRRect.cpp411 const bool flipY = yScale < 0;
412 if (flipY) {
424 if (flipY) {
433 } 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/deqp/external/vulkancts/modules/vulkan/geometry/
H A DvktGeometryInstancedRenderingTests.cpp480 const float flipY = rng.getBool() ? 1.0f : -1.0f; local
482 const float y = flipY * rng.getFloat(0.0f, 0.7f);
/external/skia/src/gpu/vk/
H A DGrVkGpu.cpp654 bool flipY = (kBottomLeft_GrSurfaceOrigin == texOrigin && mipLevelCount); local
714 if (flipY) {
731 region.imageOffset = { left, flipY ? layerHeight - top - currentHeight : top, 0 };
1964 bool flipY = kBottomLeft_GrSurfaceOrigin == origin; local
1973 (uint32_t)(flipY ? surface->height() - top : top + height),
1979 flipY ? surface->height() - top - height : top,
2026 if (flipY) {
/external/skqp/src/gpu/vk/
H A DGrVkGpu.cpp680 bool flipY = (kBottomLeft_GrSurfaceOrigin == texOrigin && mipLevelCount); local
740 if (flipY) {
757 region.imageOffset = { left, flipY ? layerHeight - top - currentHeight : top, 0 };
2009 bool flipY = kBottomLeft_GrSurfaceOrigin == origin; local
2018 (uint32_t)(flipY ? surface->height() - top : top + height),
2024 flipY ? surface->height() - top - height : top,
2071 if (flipY) {
/external/skia/src/gpu/gl/
H A DGrGLGpu.cpp2347 bool flipY = kBottomLeft_GrSurfaceOrigin == origin; local
2397 if (flipY && this->glCaps().packFlipYSupport()) {
2409 if (flipY && this->glCaps().packFlipYSupport()) {
2411 flipY = false;
2419 if (flipY) {
2441 if (flipY) {
2447 if (!flipY) {
/external/skqp/src/gpu/gl/
H A DGrGLGpu.cpp2380 bool flipY = kBottomLeft_GrSurfaceOrigin == origin; local
2430 if (flipY && this->glCaps().packFlipYSupport()) {
2442 if (flipY && this->glCaps().packFlipYSupport()) {
2444 flipY = false;
2452 if (flipY) {
2474 if (flipY) {
2480 if (!flipY) {
/external/opencv/cvaux/include/
H A Dcvmat.hpp546 void flipY();
1311 inline void CvMAT::flipY()
/external/swiftshader/src/Renderer/
H A DBlitter.cpp153 bool flipY = destRect.y0 > destRect.y1; local
160 if(flipY)
/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceContext.hpp786 deUint32 blitResolveMultisampleFramebuffer (deUint32 mask, const tcu::IVec4& srcRect, const tcu::IVec4& dstRect, bool flipX, bool flipY);

Completed in 2584 milliseconds

12