HomeSort by relevance Sort by last modified time
    Searched full:cubemap (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_texture.h 35 * Convert 2D texture coordinates of 4 vertices into cubemap coordinates
39 * \param face Cubemap face.
42 * \param out_str STR cubemap texture coordinates to compute.
  /external/mesa3d/src/gallium/auxiliary/util/
u_texture.h 35 * Convert 2D texture coordinates of 4 vertices into cubemap coordinates
39 * \param face Cubemap face.
42 * \param out_str STR cubemap texture coordinates to compute.
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
SkyFactory.java 28 * Creates a sky using the given texture (cubemap or spheremap).
50 * Creates a sky using the given texture (cubemap or spheremap).
86 // make sure its a cubemap
185 TextureCubeMap cubeMap = new TextureCubeMap(cubeImage);
186 cubeMap.setAnisotropicFilter(0);
187 cubeMap.setMagFilter(Texture.MagFilter.Bilinear);
188 cubeMap.setMinFilter(Texture.MinFilter.NearestNoMipMaps);
189 cubeMap.setWrap(Texture.WrapMode.EdgeClamp);
192 skyMat.setTexture("Texture", cubeMap);
  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/Simple_TextureCubemap/
Simple_TextureCubemap.c 13 // This is a simple example that draws a sphere with a cubemap image applied.
42 // Create a simple cubemap with a 1x1 face with a different
219 esCreateWindow ( &esContext, TEXT("Simple Texture Cubemap"), 320, 240, ES_WINDOW_RGB );
  /external/jmonkeyengine/engine/src/core/com/jme3/texture/
TextureCubeMap.java 42 * Describes a cubemap texture.
63 * Face of the Cubemap as described by its directional offset from the
162 return Type.CubeMap;
  /frameworks/base/graphics/java/android/renderscript/
Allocation.java 1710 Allocation cubemap = Allocation.createTyped(rs, t, mips, usage); local
    [all...]
Program.java 172 throw new IllegalArgumentException("Cannot bind cubemap to 2d texture slot");
325 * Cubemap, etc.)
337 * Cubemap, etc.)
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Allocation.java     [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_cubemap_normalize.cpp 27 * IR lower pass to perform the normalization of the cubemap coordinates to
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_cubemap_normalize.cpp 27 * IR lower pass to perform the normalization of the cubemap coordinates to
  /frameworks/rs/
rsProgram.cpp 187 ALOGE("Attempt to bind cubemap to slot %u but 2d texture needed", slot);
188 rsc->setError(RS_ERROR_BAD_SHADER, "Cannot bind cubemap to 2d texture slot");
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
DDSLoader.java 132 ((TextureKey) info.getKey()).setTextureTypeHint(Type.CubeMap);
214 depth = 6; // somewhat of a hack, force loading 6 textures if a cubemap
717 * If the file contains a cubemap image, it is loaded as 6 ByteBuffers
722 * For cubemaps, each of the cubemap faces is flipped individually.
724 * @return An ArrayList containing a single ByteBuffer for a 2D image, or 6 ByteBuffers for a cubemap.
725 * The cubemap ByteBuffer order is PositiveX, NegativeX, PositiveY, NegativeY, PositiveZ, NegativeZ.
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_tex_layout.c 122 assert(lvlWidth == lvlHeight); /* cubemap images are square */
320 assert(lvlWidth == lvlHeight); /* cubemap images are square */
323 * determined either by the old-style packing of cubemap faces,
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_tex_layout.c 122 assert(lvlWidth == lvlHeight); /* cubemap images are square */
320 assert(lvlWidth == lvlHeight); /* cubemap images are square */
323 * determined either by the old-style packing of cubemap faces,
  /frameworks/rs/scriptc/
rs_allocation.rsh 109 * @param dstFace Cubemap face of the destination allocation,
117 * @param srcFace Cubemap face of the source allocation,
  /prebuilts/sdk/renderscript/include/
rs_allocation.rsh 109 * @param dstFace Cubemap face of the destination allocation,
117 * @param srcFace Cubemap face of the source allocation,
  /external/chromium_org/third_party/mesa/src/docs/
relnotes-8.0.2.html 145 <li>i915: fallback for NPOT cubemap texture</li>
  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
TextureKey.java 95 // also flip -y and +y image in cubemap
  /external/mesa3d/docs/
relnotes-8.0.2.html 145 <li>i915: fallback for NPOT cubemap texture</li>
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLStateType.java 176 FRAMEBUFFER_ATTACHEMENT_TEXTURE_CUBE_MAP_FACE("Framebuffer texture cubemap face");
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_resource_texture.c 302 assert(pt->width0 == pt->height0); /* cubemap images are square */
561 assert(pt->width0 == pt->height0); /* cubemap images are square */
567 * determined either by the old-style packing of cubemap faces,
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
LwjglGL1Renderer.java 632 // case CubeMap:
694 // case CubeMap:
764 + "Cubemap textures must contain 6 data units.", img);
    [all...]
TextureUtil.java 435 //all other targets use 2D: array, cubemap, 2d
  /external/mesa3d/src/gallium/drivers/i915/
i915_resource_texture.c 302 assert(pt->width0 == pt->height0); /* cubemap images are square */
561 assert(pt->width0 == pt->height0); /* cubemap images are square */
567 * determined either by the old-style packing of cubemap faces,
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_tex.c 178 /* r100 chips can't handle mipmaps/aniso for cubemap/volume textures */

Completed in 955 milliseconds

1 2