HomeSort by relevance Sort by last modified time
    Searched refs:flipY (Results 1 - 25 of 28) sorted by null

1 2

  /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/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/webkit/Source/WebCore/svg/
SVGMatrix.h 78 SVGMatrix flipY()
81 copy.flipY();
SVGMatrix.idl 45 [Immutable] SVGMatrix flipY();
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
MediaLayer.cpp 77 m.flipY();
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
ImageBasedHeightMap.java 93 public boolean load(boolean flipX, boolean flipY) {
111 if (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/webkit/Source/WebCore/platform/graphics/transforms/
AffineTransform.h 108 AffineTransform& flipY();
AffineTransform.cpp 240 AffineTransform& AffineTransform::flipY()
TransformationMatrix.h 233 TransformationMatrix& 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/webkit/Source/WebCore/platform/graphics/chromium/
LayerRendererChromium.h 159 void setDrawViewportRect(const IntRect&, bool flipY);
LayerRendererChromium.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext3D.cpp 171 bool flipY,
180 if (flipY) {
198 bool flipY,
218 if (flipY) {
236 bool flipY, bool premultiplyAlpha,
315 if (flipY)
    [all...]
GraphicsContext3D.h 527 // and obeying the flipY, premultiplyAlpha, and ignoreGammaAndColorProfile
532 bool flipY,
539 // and obeying the flipY and premultiplyAlpha flags. Returns true
544 bool flipY,
549 // data, applying the flipY and premultiplyAlpha parameters.
556 bool flipY, bool premultiplyAlpha,
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
WebGLRenderingContext.h 491 bool flipY, bool premultiplyAlpha, ExceptionCode&);
497 Image* image, bool flipY, bool premultiplyAlpha, ExceptionCode&);
WebGLRenderingContext.cpp     [all...]
  /external/skia/src/gpu/
GrContext.cpp     [all...]
  /external/opencv/cvaux/include/
cvmat.hpp 546 void flipY();
1311 inline void CvMAT::flipY()
    [all...]

Completed in 665 milliseconds

1 2