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

12

/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
H A DImageLoader.java60 * @param flipY
64 public Image loadImage(BlenderInputStream inputStream, int startPosition, boolean flipY) { argument
67 Image result = this.loadImage(inputStream, ImageType.AWT, flipY);
71 result = this.loadImage(inputStream, ImageType.TGA, flipY);
76 result = this.loadImage(inputStream, ImageType.DDS, flipY);
93 * @param flipY
97 public Image loadImage(InputStream inputStream, ImageType imageType, boolean flipY) { argument
102 result = this.load(inputStream, flipY);
116 result = TGALoader.load(inputStream, flipY);
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DTextureKey.java46 private boolean flipY; field in class:TextureKey
52 public TextureKey(String name, boolean flipY) { argument
54 this.flipY = flipY;
59 this.flipY = true;
67 return name + (flipY ? " (Flipped)" : "") + (asCube ? " (Cube)" : "") + (generateMips ? " (Mipmaped)" : "");
120 return flipY;
175 oc.write(flipY, "flip_y", false);
185 flipY = ic.readBoolean("flip_y", false);
H A DDesktopAssetManager.java347 public Texture loadTexture(String name, boolean generateMipmaps, boolean flipY, boolean asCube, int aniso){ argument
348 TextureKey key = new TextureKey(name, flipY);
/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/jmonkeyengine/engine/src/desktop/com/jme3/texture/plugins/
H A DAWTLoader.java104 public Image load(BufferedImage img, boolean flipY){ argument
111 if (flipY)
119 if (flipY)
127 if (flipY)
134 if (flipY)
150 if (flipY){
169 if (flipY){
186 public Image load(InputStream in, boolean flipY) throws IOException{ argument
192 return load(img, flipY);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGMatrix.idl43 [Immutable] SVGMatrix flipY();
H A DSVGMatrix.h78 SVGMatrix flipY() function in class:WebCore::SVGMatrix
81 copy.flipY();
/external/jmonkeyengine/engine/src/core/com/jme3/ui/
H A DPicture.java64 * @param flipY If true, the Y coordinates of the texture will be flipped.
66 public Picture(String name, boolean flipY){ argument
67 super(name, new Quad(1, 1, flipY));
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLVideoElement.cpp192 bool HTMLVideoElement::copyVideoTextureToPlatformTexture(GraphicsContext3D* context, Platform3DObject texture, GC3Dint level, GC3Denum type, GC3Denum internalFormat, bool premultiplyAlpha, bool flipY) argument
196 return player()->copyVideoTextureToPlatformTexture(context, texture, level, type, internalFormat, premultiplyAlpha, flipY);
H A DHTMLVideoElement.h58 bool copyVideoTextureToPlatformTexture(GraphicsContext3D*, Platform3DObject texture, GC3Dint level, GC3Denum type, GC3Denum internalFormat, bool premultiplyAlpha, bool flipY);
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DImageBasedHeightMap.java93 public boolean load(boolean flipX, boolean flipY) { argument
111 if (flipY) {
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebMediaPlayer.h146 virtual bool copyVideoTextureToPlatformTexture(WebGraphicsContext3D*, unsigned texture, unsigned level, unsigned internalFormat, unsigned type, bool premultiplyAlpha, bool flipY) { return false; } argument
/external/chromium_org/third_party/skia/src/core/
H A DSkRRect.cpp279 const bool flipY = yScale < 0;
280 if (flipY) {
292 if (flipY) {
301 } else if (flipY) {
/external/skia/src/core/
H A DSkRRect.cpp279 const bool flipY = yScale < 0;
280 if (flipY) {
292 if (flipY) {
301 } else if (flipY) {
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsContext3D.h460 // according to the given format and type, and obeying the flipY and AlphaOp flags.
462 static bool packImageData(Image*, const void* pixels, GC3Denum format, GC3Denum type, bool flipY, AlphaOp, DataFormat sourceFormat, unsigned width, unsigned height, unsigned sourceUnpackAlignment, Vector<uint8_t>& data);
466 // and obeying the flipY and premultiplyAlpha flags. Returns true
468 static bool extractImageData(const uint8_t*, const IntSize&, GC3Denum format, GC3Denum type, bool flipY, bool premultiplyAlpha, Vector<uint8_t>& data);
471 // data, applying the flipY and premultiplyAlpha parameters.
475 static bool extractTextureData(unsigned width, unsigned height, GC3Denum format, GC3Denum type, unsigned unpackAlignment, bool flipY, bool premultiplyAlpha, const void* pixels, Vector<uint8_t>& data);
501 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 DGraphicsContext3DImagePacking.cpp1467 bool flipY,
1484 if (!packPixels(reinterpret_cast<const uint8_t*>(pixels), sourceFormat, width, height, sourceUnpackAlignment, format, type, alphaOp, data.data(), flipY))
1496 bool flipY,
1511 if (!packPixels(imageData, DataFormatRGBA8, width, height, 0, format, type, premultiplyAlpha ? AlphaDoPremultiply : AlphaDoNothing, data.data(), flipY))
1522 bool flipY, bool premultiplyAlpha,
1536 if (!packPixels(static_cast<const uint8_t*>(pixels), sourceDataFormat, width, height, unpackAlignment, format, type, (premultiplyAlpha ? AlphaDoPremultiply : AlphaDoNothing), data.data(), flipY))
1552 bool flipY)
1560 if (flipY) {
1462 packImageData( Image* image, const void* pixels, GC3Denum format, GC3Denum type, bool flipY, AlphaOp alphaOp, DataFormat sourceFormat, unsigned width, unsigned height, unsigned sourceUnpackAlignment, Vector<uint8_t>& data) argument
1491 extractImageData( const uint8_t* imageData, const IntSize& imageDataSize, GC3Denum format, GC3Denum type, bool flipY, bool premultiplyAlpha, Vector<uint8_t>& data) argument
1517 extractTextureData( unsigned width, unsigned height, GC3Denum format, GC3Denum type, unsigned unpackAlignment, bool flipY, bool premultiplyAlpha, const void* pixels, Vector<uint8_t>& data) argument
1542 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 DImageBuffer.cpp135 bool ImageBuffer::copyToPlatformTexture(GraphicsContext3D& context, Platform3DObject texture, GC3Denum internalFormat, GC3Denum destType, GC3Dint level, bool premultiplyAlpha, bool flipY) argument
152 context.pixelStorei(Extensions3D::UNPACK_FLIP_Y_CHROMIUM, !flipY);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
H A DDrawingBuffer.h133 GC3Denum destType, GC3Dint level, bool premultiplyAlpha, bool flipY);
H A DDrawingBuffer.cpp301 bool DrawingBuffer::copyToPlatformTexture(GraphicsContext3D& context, Platform3DObject texture, GC3Denum internalFormat, GC3Denum destType, GC3Dint level, bool premultiplyAlpha, bool flipY) argument
333 context.pixelStorei(Extensions3D::UNPACK_FLIP_Y_CHROMIUM, flipY);
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DAffineTransform.h98 AffineTransform& flipY();
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/material/plugins/
H A DJ3MLoader.java128 boolean flipY = false;
132 flipY = true;
136 flipY = true;
142 TextureKey texKey = new TextureKey(texturePath, flipY);
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
H A DHDRLoader.java222 public Image load(InputStream in, boolean flipY) throws IOException{ argument
304 if (flipY)
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebMediaPlayerClientImpl.h122 virtual bool copyVideoTextureToPlatformTexture(WebCore::GraphicsContext3D*, Platform3DObject texture, GC3Dint level, GC3Denum type, GC3Denum internalFormat, bool premultiplyAlpha, bool flipY) OVERRIDE;

Completed in 613 milliseconds

12