/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/ |
ImageLoader.java | 60 * @param flipY 64 public Image loadImage(BlenderInputStream inputStream, int startPosition, boolean flipY) { 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) { 102 result = this.load(inputStream, flipY); 116 result = TGALoader.load(inputStream, flipY);
|
/external/jmonkeyengine/engine/src/core/com/jme3/asset/ |
TextureKey.java | 46 private boolean flipY; 52 public TextureKey(String name, boolean flipY) { 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);
|
DesktopAssetManager.java | 347 public Texture loadTexture(String name, boolean generateMipmaps, boolean flipY, boolean asCube, int aniso){
348 TextureKey key = new TextureKey(name, flipY);
|
/external/replicaisland/src/com/replica/replicaisland/ |
CollisionVolume.java | 82 if (flip != null && flip.flipY) { 93 if (flip != null && flip.flipY) { 110 public boolean flipY;
|
SphereCollisionVolume.java | 160 if (flip != null && (flip.flipX || flip.flipY)) { 167 if (flip.flipY) {
|
GameObjectCollisionSystem.java | 109 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/ |
AWTLoader.java | 104 public Image load(BufferedImage img, boolean flipY){ 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{ 192 return load(img, flipY);
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGMatrix.h | 78 SVGMatrix flipY() 81 copy.flipY();
|
SVGMatrix.idl | 43 [Immutable] SVGMatrix flipY();
|
/external/jmonkeyengine/engine/src/core/com/jme3/ui/ |
Picture.java | 64 * @param flipY If true, the Y coordinates of the texture will be flipped. 66 public Picture(String name, boolean flipY){ 67 super(name, new Quad(1, 1, flipY));
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLVideoElement.h | 58 bool copyVideoTextureToPlatformTexture(GraphicsContext3D*, Platform3DObject texture, GC3Dint level, GC3Denum type, GC3Denum internalFormat, bool premultiplyAlpha, bool flipY);
|
HTMLVideoElement.cpp | 192 bool HTMLVideoElement::copyVideoTextureToPlatformTexture(GraphicsContext3D* context, Platform3DObject texture, GC3Dint level, GC3Denum type, GC3Denum internalFormat, bool premultiplyAlpha, bool flipY) 196 return player()->copyVideoTextureToPlatformTexture(context, texture, level, type, internalFormat, premultiplyAlpha, flipY);
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebMediaPlayer.h | 146 virtual bool copyVideoTextureToPlatformTexture(WebGraphicsContext3D*, unsigned texture, unsigned level, unsigned internalFormat, unsigned type, bool premultiplyAlpha, bool flipY) { return false; }
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/ |
ImageBasedHeightMap.java | 93 public boolean load(boolean flipX, boolean flipY) {
111 if (flipY) {
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/ |
DrawingBuffer.h | 133 GC3Denum destType, GC3Dint level, bool premultiplyAlpha, bool flipY);
|
DrawingBuffer.cpp | 301 bool DrawingBuffer::copyToPlatformTexture(GraphicsContext3D& context, Platform3DObject texture, GC3Denum internalFormat, GC3Denum destType, GC3Dint level, bool premultiplyAlpha, bool flipY) 333 context.pixelStorei(Extensions3D::UNPACK_FLIP_Y_CHROMIUM, flipY);
|
/external/chromium_org/third_party/skia/src/core/ |
SkRRect.cpp | 279 const bool flipY = yScale < 0; 280 if (flipY) { 292 if (flipY) { 301 } else if (flipY) {
|
/external/skia/src/core/ |
SkRRect.cpp | 279 const bool flipY = yScale < 0; 280 if (flipY) { 292 if (flipY) { 301 } else if (flipY) {
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
GraphicsContext3D.h | 460 // 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);
|
GraphicsContext3DImagePacking.cpp | [all...] |
ImageBuffer.cpp | 135 bool ImageBuffer::copyToPlatformTexture(GraphicsContext3D& context, Platform3DObject texture, GC3Denum internalFormat, GC3Denum destType, GC3Dint level, bool premultiplyAlpha, bool flipY) 152 context.pixelStorei(Extensions3D::UNPACK_FLIP_Y_CHROMIUM, !flipY);
|
/external/chromium_org/third_party/WebKit/Source/platform/transforms/ |
AffineTransform.h | 98 AffineTransform& flipY();
|
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/material/plugins/ |
J3MLoader.java | 128 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/ |
HDRLoader.java | 222 public Image load(InputStream in, boolean flipY) throws IOException{ 304 if (flipY)
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebMediaPlayerClientImpl.h | 122 virtual bool copyVideoTextureToPlatformTexture(WebCore::GraphicsContext3D*, Platform3DObject texture, GC3Dint level, GC3Denum type, GC3Denum internalFormat, bool premultiplyAlpha, bool flipY) OVERRIDE;
|