Searched defs:flip (Results 1 - 19 of 19) sorted by relevance

/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
H A DTGALoader.java85 boolean flip = ((TextureKey)info.getKey()).isFlipY();
89 Image img = load(in, flip);
104 * @param flip
112 public static Image load(InputStream in, boolean flip) throws IOException { argument
153 if ((imageDescriptor & 32) != 0) // bit 5 : if 1, flip top/bottom ordering
154 flip = !flip;
155 if ((imageDescriptor & 16) != 0) // bit 4 : if 1, flip left/right ordering
222 if (!flip)
242 if (!flip)
[all...]
H A DHDRLoader.java116 private short flip(int in){ method in class:HDRLoader
319 boolean flip = ((TextureKey) info.getKey()).isFlipY();
323 Image img = load(in, flip);
H A DDDSLoader.java432 * @param flip Flip the loaded image by Y axis
437 public ByteBuffer readGrayscale2D(boolean flip, int totalSize) throws IOException { argument
452 if (flip) {
467 * @param flip Flip the image on the Y axis
472 public ByteBuffer readRGB2D(boolean flip, int totalSize) throws IOException { argument
508 if (flip) {
538 public ByteBuffer readDXT2D(boolean flip, int totalSize) throws IOException { argument
547 if (flip) {
570 * @param flip Flip the loaded image by Y axis
575 public ByteBuffer readGrayscale3D(boolean flip, in argument
613 readRGB3D(boolean flip, int totalSize) argument
681 readDXT3D(boolean flip, int totalSize) argument
729 readData(boolean flip) argument
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DCollisionVolume.java55 public abstract boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other, argument
58 public float getMinXPosition(FlipInfo flip) { argument
60 if (flip != null && flip.flipX) {
62 value = flip.parentWidth - maxX;
69 public float getMaxXPosition(FlipInfo flip) { argument
71 if (flip != null && flip.flipX) {
73 value = flip.parentWidth - minX;
80 public float getMinYPosition(FlipInfo flip) { argument
91 getMaxYPosition(FlipInfo flip) argument
[all...]
H A DAABoxCollisionVolume.java73 public boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other, argument
75 final float left = getMinXPosition(flip) + position.x;
76 final float right = getMaxXPosition(flip) + position.x;
77 final float bottom = getMinYPosition(flip) + position.y;
78 final float top = getMaxYPosition(flip) + position.y;
H A DSphereCollisionVolume.java85 public boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other, argument
91 result = other.intersects(otherPosition, otherFlip, this, position, flip);
94 offsetByCenter(mWorkspaceVector, mCenter, flip);
159 private static void offsetByCenter(Vector2 position, Vector2 center, FlipInfo flip) { argument
160 if (flip != null && (flip.flipX || flip.flipY)) {
161 if (flip.flipX) {
162 position.x += flip.parentWidth - center.x;
167 if (flip
[all...]
/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedInts.java50 static int flip(int value) { method in class:UnsignedInts
64 return Ints.compare(flip(a), flip(b));
84 int min = flip(array[0]);
86 int next = flip(array[i]);
91 return flip(min);
104 int max = flip(array[0]);
106 int next = flip(array[i]);
111 return flip(max);
H A DUnsignedLongs.java58 private static long flip(long a) { method in class:UnsignedLongs
72 return Longs.compare(flip(a), flip(b));
85 long min = flip(array[0]);
87 long next = flip(array[i]);
92 return flip(min);
105 long max = flip(array[0]);
107 long next = flip(array[i]);
112 return flip(max);
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestwin.c22 int speedy, int flip, int nofade)
125 if ( flip ) {
238 int speedy, flip, nofade; local
248 flip = 0;
332 if ( strcmp(argv[1], "-flip") == 0 ) {
359 flip = 1;
368 DrawPict(screen, argv[1], speedy, flip, nofade);
372 DrawPict(screen, argv[1], speedy, flip, nofade);
21 DrawPict(SDL_Surface *screen, char *bmpfile, int speedy, int flip, int nofade) argument
H A Dtestoverlay.c312 fprintf(stderr, " -flip\n");
324 int flip; local
335 flip = 0;
430 if ( strcmp(argv[1], "-flip") == 0 ) {
476 flip = 1;
/external/llvm/include/llvm/ADT/
H A DBitVector.h228 // Set, reset, flip
250 BitVector &flip() { function in class:llvm::BitVector
257 BitVector &flip(unsigned Idx) { function in class:llvm::BitVector
H A DSmallBitVector.h286 // Set, reset, flip
319 SmallBitVector &flip() { function in class:llvm::SmallBitVector
323 getPointer()->flip();
327 SmallBitVector &flip(unsigned Idx) { function in class:llvm::SmallBitVector
331 getPointer()->flip(Idx);
335 // No argument flip.
337 return SmallBitVector(*this).flip();
/external/stlport/stlport/stl/
H A D_bitset.h407 // for b[i].flip();
408 reference& flip() { function in struct:bitset::reference
479 // Versions of single-bit set, reset, flip, test with no range checking.
510 // Set, reset, and flip.
542 bitset<_Nb>& flip() { function in class:bitset
548 bitset<_Nb>& flip(size_t __pos) { function in class:bitset
556 return bitset<_Nb>(*this).flip();
H A D_bvector.h79 void flip() { *_M_p ^= _M_mask; } function in struct:_Bit_reference
806 void flip() { function in class:__BVECTOR_QUALIFIED
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DPropertyTable.java424 propertyInfo.flip();
443 m_activePropertyInfo.flip();
1409 public void flip() throws Exception { method in class:PropertyTable.PropertyInfo
/external/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp310 bool CoalescerPair::flip() { function in class:CoalescerPair
990 CP.flip();
/external/webkit/Source/WebCore/platform/graphics/opengl/
H A DTextureMapperGL.cpp534 static inline TransformationMatrix createProjectionMatrix(const IntSize& size, bool flip) argument
537 0, (flip ? -2.0 : 2.0) / float(size.height()), 0, 0,
539 -1, flip ? 1 : -1, 0, 1);
/external/skia/src/ports/
H A DSkFontHost_mac_coretext.cpp557 static void flip(SkMatrix* matrix) { function
652 flip(&fUnitMatrix); // flip to fix up bounds later
916 flip(&fAdjustBadMatrix);
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...

Completed in 730 milliseconds