HomeSort by relevance Sort by last modified time
    Searched refs:flipY (Results 1 - 25 of 35) 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/chromium_org/third_party/WebKit/Source/core/svg/
SVGMatrix.h 78 SVGMatrix flipY()
81 copy.flipY();
SVGMatrix.idl 41 [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/public/web/
WebMediaPlayer.h 139 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/core/html/
HTMLVideoElement.h 67 bool copyVideoTextureToPlatformTexture(GraphicsContext3D*, Platform3DObject texture, GC3Dint level, GC3Denum type, GC3Denum internalFormat, bool premultiplyAlpha, bool flipY);
HTMLVideoElement.cpp 208 bool HTMLVideoElement::copyVideoTextureToPlatformTexture(GraphicsContext3D* context, Platform3DObject texture, GC3Dint level, GC3Denum type, GC3Denum internalFormat, bool premultiplyAlpha, bool flipY)
212 return player()->copyVideoTextureToPlatformTexture(context, texture, level, type, internalFormat, premultiplyAlpha, flipY);
  /external/skia/src/core/
SkRRect.cpp 298 const bool flipY = yScale < 0;
299 if (flipY) {
311 if (flipY) {
320 } else if (flipY) {
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
AffineTransform.h 100 AffineTransform& flipY();
TransformationMatrix.h 229 TransformationMatrix& 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/core/platform/graphics/
GraphicsContext3DImagePacking.cpp     [all...]
GraphicsContext3D.h 772 // according to the given format and type, and obeying the flipY and AlphaOp flags.
774 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);
778 // and obeying the flipY and premultiplyAlpha flags. Returns true
780 static bool extractImageData(ImageData*, GC3Denum format, GC3Denum type, bool flipY, bool premultiplyAlpha, Vector<uint8_t>& data);
783 // data, applying the flipY and premultiplyAlpha parameters.
787 static bool extractTextureData(unsigned width, unsigned height, GC3Denum format, GC3Denum type, unsigned unpackAlignment, bool flipY, bool premultiplyAlpha, const void* pixels, Vector<uint8_t>& data);
    [all...]
ImageBuffer.cpp 211 bool ImageBuffer::copyToPlatformTexture(GraphicsContext3D& context, Platform3DObject texture, GC3Denum internalFormat, GC3Denum destType, GC3Dint level, bool premultiplyAlpha, bool flipY)
230 context.pixelStorei(Extensions3D::UNPACK_FLIP_Y_CHROMIUM, !flipY);
  /external/chromium_org/third_party/WebKit/Source/web/
WebMediaPlayerClientImpl.h 123 virtual bool copyVideoTextureToPlatformTexture(WebCore::GraphicsContext3D*, Platform3DObject texture, GC3Dint level, GC3Denum type, GC3Denum internalFormat, bool premultiplyAlpha, bool flipY) OVERRIDE;
WebMediaPlayerClientImpl.cpp 516 bool WebMediaPlayerClientImpl::copyVideoTextureToPlatformTexture(WebCore::GraphicsContext3D* context, Platform3DObject texture, GC3Dint level, GC3Denum type, GC3Denum internalFormat, bool premultiplyAlpha, bool flipY)
525 return m_webMediaPlayer->copyVideoTextureToPlatformTexture(webGraphicsContext3D, texture, level, internalFormat, type, premultiplyAlpha, flipY);
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGpuGL.cpp     [all...]

Completed in 1385 milliseconds

1 2