HomeSort by relevance Sort by last modified time
    Searched refs:Texture (Results 76 - 100 of 174) sorted by null

1 2 34 5 6 7

  /external/jmonkeyengine/engine/src/core/com/jme3/material/
MatParam.java 40 import com.jme3.texture.Texture;
41 import com.jme3.texture.Texture.WrapMode;
259 Texture texVal = (Texture) value;
269 if (texVal.getWrap(Texture.WrapAxis.S) == WrapMode.Repeat) {
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/post/ssao/
SSAOFilter.java 48 import com.jme3.texture.Image.Format;
49 import com.jme3.texture.Texture;
147 Texture random = manager.loadTexture("Common/MatDefs/SSAO/Textures/random.png");
148 random.setWrap(Texture.WrapMode.Repeat);
160 ssaoPass.getRenderedTexture().setMinFilter(Texture.MinFilter.Trilinear);
161 ssaoPass.getRenderedTexture().setMagFilter(Texture.MagFilter.Bilinear);
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/scene/plugins/
MTLLoader.java 40 import com.jme3.texture.Texture;
41 import com.jme3.texture.Texture.WrapMode;
42 import com.jme3.texture.Texture2D;
64 protected Texture diffuseMap, normalMap, specularMap, alphaMap;
173 protected Texture loadTexture(String path){
182 Texture texture; local
184 texture = assetManager.loadTexture(texKey)
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestBrickTower.java 61 import com.jme3.texture.Texture;
62 import com.jme3.texture.Texture.WrapMode;
197 Texture tex = assetManager.loadTexture(key);
203 Texture tex2 = assetManager.loadTexture(key2);
209 Texture tex3 = assetManager.loadTexture(key3);
TestBrickWall.java 56 import com.jme3.texture.Texture;
57 import com.jme3.texture.Texture.WrapMode;
170 Texture tex = assetManager.loadTexture(key);
176 Texture tex2 = assetManager.loadTexture(key2);
182 Texture tex3 = assetManager.loadTexture(key3);
  /external/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloPhysics.java 50 import com.jme3.texture.Texture;
51 import com.jme3.texture.Texture.WrapMode;
138 Texture tex = assetManager.loadTexture(key);
144 Texture tex2 = assetManager.loadTexture(key2);
150 Texture tex3 = assetManager.loadTexture(key3);
  /external/jmonkeyengine/engine/src/test/jme3test/terrain/
TerrainGridTest.java 26 import com.jme3.texture.Texture;
27 import com.jme3.texture.Texture.WrapMode;
59 // TERRAIN TEXTURE material
63 // regionXColorMap: X = 1..4 the texture that should be appliad to state X
67 // regionX.z: the texture scale for the region
69 // slopeColorMap: the texture to be used for cliffs, and steep mountain sites
70 // slopeTileFactor: the texture scale for slopes
71 // terrainSize: the total size of the terrain (used for scaling the texture)
    [all...]
TerrainGridTileLoaderTest.java 24 import com.jme3.texture.Texture;
25 import com.jme3.texture.Texture.WrapMode;
57 // TERRAIN TEXTURE material
61 // regionXColorMap: X = 1..4 the texture that should be appliad to state X
65 // regionX.z: the texture scale for the region
67 // slopeColorMap: the texture to be used for cliffs, and steep mountain sites
68 // slopeTileFactor: the texture scale for slopes
69 // terrainSize: the total size of the terrain (used for scaling the texture)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCVideoLayerImpl.cpp 72 void CCVideoLayerImpl::setTexture(size_t i, VideoLayerChromium::Texture texture)
75 m_textures[i] = texture;
107 VideoLayerChromium::Texture yTexture = m_textures[VideoFrameChromium::yPlane];
108 VideoLayerChromium::Texture uTexture = m_textures[VideoFrameChromium::uPlane];
109 VideoLayerChromium::Texture vTexture = m_textures[VideoFrameChromium::vPlane];
138 // Reset active texture back to texture 0.
145 VideoLayerChromium::Texture texture = m_textures[VideoFrameChromium::rgbPlane] local
    [all...]
  /external/jmonkeyengine/engine/src/android/jme3test/android/
SimpleTexturedTest.java 22 import com.jme3.texture.Texture;
54 Texture texture = assetManager.loadTexture(new TextureKey("Interface/Logo/Monkey.jpg")); local
55 Texture textureMonkey = assetManager.loadTexture(new TextureKey("Interface/Logo/Monkey.jpg"));
66 material.setTexture("DiffuseMap", texture);
76 material.setTexture("ColorMap", texture);
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
Caps.java 36 import com.jme3.texture.FrameBuffer;
37 import com.jme3.texture.FrameBuffer.RenderBuffer;
38 import com.jme3.texture.Image;
39 import com.jme3.texture.Image.Format;
40 import com.jme3.texture.Texture;
76 * Supports texture multi-sampling
163 * Supports texture arrays
168 * Supports texture buffers
209 * support for ATI's 3Dc texture compression
    [all...]
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
TranslucentBucketFilter.java 19 import com.jme3.texture.FrameBuffer;
20 import com.jme3.texture.Texture;
21 import com.jme3.texture.Texture2D;
35 private Texture depthTexture;
54 material.setTexture("Texture", tex);
76 protected void setDepthTexture(Texture depthTexture) {
84 * Override this method and return false if your Filter does not need the scene texture
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/matext/
MaterialExtensionLoader.java 42 import com.jme3.texture.Texture;
43 import com.jme3.texture.Texture.WrapMode;
44 import com.jme3.texture.Texture2D;
79 Texture tex;
  /external/jmonkeyengine/engine/src/test/jme3test/texture/
TestTexture3D.java 5 package jme3test.texture;
18 import com.jme3.texture.Image;
19 import com.jme3.texture.Image.Format;
20 import com.jme3.texture.Texture;
21 import com.jme3.texture.Texture3D;
57 //apply new texture coordinates
62 //create geometry, and apply material and our 3D texture
64 Material material = new Material(assetManager, "jme3test/texture/tex3D.j3md");
66 Texture texture = this.getTexture() local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AbstractSlotRenderer.java 27 import com.android.gallery3d.glrenderer.Texture;
47 Texture content, int width, int height, int rotation) {
114 protected static void drawFrame(GLCanvas canvas, Rect padding, Texture frame,
  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
DesktopAssetManager.java 43 import com.jme3.texture.Texture;
320 * Loads a texture.
324 public Texture loadTexture(TextureKey key){
325 return (Texture) loadAsset(key);
333 * Loads a texture.
336 * @param generateMipmaps Enable if applying texture to 3D objects, disable
340 public Texture loadTexture(String name, boolean generateMipmaps){
347 public Texture loadTexture(String name, boolean generateMipmaps, boolean flipY, boolean asCube, int aniso){
355 public Texture loadTexture(String name){
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureGeneratorNoise.java 37 import com.jme3.texture.Image;
38 import com.jme3.texture.Image.Format;
39 import com.jme3.texture.Texture;
40 import com.jme3.texture.Texture3D;
46 * This class generates the 'noise' texture.
61 protected Texture generate(Structure tex, int width, int height, int depth, BlenderContext blenderContext) {
  /external/jmonkeyengine/engine/src/core/com/jme3/system/
NullRenderer.java 46 import com.jme3.texture.FrameBuffer;
47 import com.jme3.texture.Image;
48 import com.jme3.texture.Texture;
128 public void setTexture(int unit, Texture tex) {
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/grid/
ImageTileLoader.java 16 import com.jme3.texture.Texture;
90 final Texture texture = assetManager.loadTexture(new TextureKey(name)); local
91 heightmap = new ImageBasedHeightMap(texture.getImage());
  /external/jmonkeyengine/engine/src/test/jme3test/post/
TestCartoonEdge.java 49 import com.jme3.texture.Texture;
80 Texture t = assetManager.loadTexture("Textures/ColorRamp/toon.png");
81 // t.setMinFilter(Texture.MinFilter.NearestNoMipMaps);
82 // t.setMagFilter(Texture.MagFilter.Nearest);
  /external/replicaisland/src/com/replica/replicaisland/
MotionBlurComponent.java 32 public Texture texture; field in class:MotionBlurComponent.BlurRecord
50 mHistory[x].texture = null;
70 Texture currentTexture = drawable.getTexture();
72 mHistory[mCurrentStep].texture = currentTexture;
95 if (record.texture != null) {
97 stepImage.setTexture(record.texture);
  /external/webkit/Source/WebCore/platform/graphics/skia/
PlatformContextSkia.h 51 class Texture;
227 mutable RefPtr<Texture> m_uploadTexture;
  /frameworks/base/libs/hwui/
TextDropShadowCache.h 28 #include "Texture.h"
114 * Alpha texture used to represent a shadow.
116 struct ShadowTexture: public Texture {
117 ShadowTexture(): Texture() {
134 void operator()(ShadowText& text, ShadowTexture*& texture);
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
TextureBlenderAWT.java 9 import com.jme3.texture.Image;
10 import com.jme3.texture.Texture;
11 import com.jme3.texture.Texture2D;
12 import com.jme3.texture.Texture3D;
13 import com.jme3.texture.Image.Format;
17 * The class that is responsible for blending the following texture types:
42 public Texture blend(float[] materialColor, Texture texture, float[] color, float affectFactor, int blendType, boolean neg, BlenderContext blenderContext) {
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/font/plugins/
BitmapFontLoader.java 42 import com.jme3.texture.Texture;
85 // number of texture pages
92 Texture tex = null;
106 tex.setMagFilter(Texture.MagFilter.Bilinear);
107 tex.setMinFilter(Texture.MinFilter.BilinearNoMipMaps);

Completed in 2182 milliseconds

1 2 34 5 6 7