HomeSort by relevance Sort by last modified time
    Searched refs:cubemap (Results 1 - 13 of 13) sorted by null

  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/assets/loaders/
CubemapLoader.java 7 import com.badlogic.gdx.graphics.Cubemap;
16 /** {@link AssetLoader} for {@link Cubemap} instances. The pixel data is loaded asynchronously. The texture is then created on the
19 * various Cubemap constructors, e.g. filtering and so on.
21 public class CubemapLoader extends AsynchronousAssetLoader<Cubemap, CubemapLoader.CubemapParameter> {
25 Cubemap cubemap; field in class:CubemapLoader.CubemapLoaderInfo
41 info.cubemap = null;
45 info.cubemap = parameter.cubemap;
49 info.cubemap = parameter.cubemap
79 public Cubemap cubemap = null; field in class:CubemapLoader.CubemapParameter
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/assets/loaders/
CubemapLoader.java 23 import com.badlogic.gdx.graphics.Cubemap;
37 /** {@link AssetLoader} for {@link Cubemap} instances. The pixel data is loaded asynchronously. The texture is then created on the
40 * various Cubemap constructors, e.g. filtering and so on.
42 public class CubemapLoader extends AsynchronousAssetLoader<Cubemap, CubemapLoader.CubemapParameter> {
46 Cubemap cubemap; field in class:CubemapLoader.CubemapLoaderInfo
62 info.cubemap = null;
66 info.cubemap = parameter.cubemap;
74 info.cubemap = parameter.cubemap;
104 public Cubemap cubemap = null; field in class:CubemapLoader.CubemapParameter
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
Cubemap.java 38 /** Wraps a standard OpenGL ES Cubemap. Must be disposed when it is no longer used.
40 public class Cubemap extends GLTexture {
42 final static Map<Application, Array<Cubemap>> managedCubemaps = new HashMap<Application, Array<Cubemap>>();
44 /** Enum to identify each side of a Cubemap */
46 /** The positive X and first side of the cubemap */
48 /** The negative X and second side of the cubemap */
50 /** The positive Y and third side of the cubemap */
52 /** The negative Y and fourth side of the cubemap */
54 /** The positive Z and fifth side of the cubemap */
221 Cubemap cubemap = managedCubemapArray.get(i); local
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
KTXTest.java 22 import com.badlogic.gdx.graphics.Cubemap;
51 // 3D texture cubemap example
58 private Cubemap cubemap; field in class:KTXTest
72 // Cubemap test
98 cubemap = new Cubemap(new KTXTextureData(Gdx.files.internal("data/cubemap.zktx"), true));
99 cubemap.setFilter(TextureFilter.MipMapLinearLinear, TextureFilter.Linear);
104 environment.set(new CubemapAttribute(CubemapAttribute.EnvironmentMap, cubemap));
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
ShaderCollectionTest.java 23 import com.badlogic.gdx.graphics.Cubemap;
24 import com.badlogic.gdx.graphics.Cubemap.CubemapSide;
59 protected String shaders[] = new String[] {"<default>", "depth", "gouraud", "phong", "normal", "fur", "cubemap", "reflect",
128 Cubemap cubemap; field in class:ShaderCollectionTest
156 if (cubemap != null) cubemap.dispose();
157 cubemap = null;
163 if (cubemap != null) {
164 cubemap.dispose();
    [all...]
FrameBufferCubemapTest.java 5 import com.badlogic.gdx.graphics.Cubemap;
28 protected Cubemap cubemap; field in class:FrameBufferCubemapTest
50 cubeBatch = new ModelBatch(Gdx.files.internal("data/shaders/cubemap-vert.glsl"),
51 Gdx.files.internal("data/shaders/cubemap-frag.glsl"));
53 cubeMesh.materials.get(0).set(new CubemapAttribute(CubemapAttribute.EnvironmentMap, cubemap));
76 // Render scene to cubemap
96 cubemap = fb.getColorBufferTexture();
  /frameworks/rs/api/
rs_object_info.spec 73 If the Allocation is a cubemap, this function returns 1 if there's more than one face
rs_object_types.spec 98 An enum used to specify one the six faces of a cubemap.
rs_allocation_create.spec 83 arg: bool faces, "Flag indicating if the Type is a cubemap"
99 faces indicates the presence of cubemap faces.
rs_for_each.spec 358 If the kernel is iterating over a cubemap, this function returns true if there's more
  /frameworks/base/rs/java/android/renderscript/
Allocation.java 3185 Allocation cubemap = Allocation.createTyped(rs, t, mips, usage); local
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
AllocationTest.java 283 Allocation cubemap = Allocation.createTyped(mRS, b.create(), local
286 AllocationAdapter adapter = AllocationAdapter.create2D(mRS, cubemap);
  /external/ImageMagick/coders/
dds.c 1640 cubemap = MagickFalse, local
    [all...]

Completed in 556 milliseconds