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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/cc/resources/
prioritized_resource_unittest.cc 106 // Create textures for double our memory limit.
107 scoped_ptr<PrioritizedResource> textures[kMaxTextures * 2]; local
110 textures[i] =
115 textures[i]->set_request_priority(100 + i);
119 EXPECT_TRUE(ValidateTexture(textures[0].get(), false));
120 EXPECT_TRUE(ValidateTexture(textures[7].get(), false));
121 EXPECT_FALSE(ValidateTexture(textures[8].get(), false));
122 EXPECT_FALSE(ValidateTexture(textures[15].get(), false));
126 textures[i]->set_request_priority(100 - i);
130 EXPECT_FALSE(ValidateTexture(textures[0].get(), false))
151 scoped_ptr<PrioritizedResource> textures[kMaxTextures]; local
218 scoped_ptr<PrioritizedResource> textures[kMaxTextures]; local
    [all...]
  /frameworks/native/opengl/tests/textures/
Android.mk 5 textures.cpp
15 LOCAL_MODULE:= test-opengl-textures
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
MaterialLoader.java 64 private Texture[] textures = new Texture[4]; field in class:MaterialLoader
139 textures[texUnit].setImage(loadedTexture.getImage());
140 textures[texUnit].setMinFilter(loadedTexture.getMinFilter());
141 textures[texUnit].setKey(loadedTexture.getKey());
144 textures[texUnit].setWrap(WrapMode.Repeat);
146 textures[texUnit].setName(texName);
149 textures[texUnit].setName(texKey.getName());
153 textures[texUnit].setImage(PlaceholderAssets.getPlaceholderImage());
165 textures[texUnit].setWrap(WrapMode.Repeat);
167 textures[texUnit].setWrap(WrapMode.Clamp)
    [all...]
  /cts/tests/tests/effect/src/android/effect/cts/
GLEnv.java 77 int textures[] = new int[1]; local
78 GLES20.glGenTextures(1, textures, 0);
79 return textures[0];
90 int[] textures = new int[1]; local
91 textures[0] = texId;
92 GLES20.glDeleteTextures(1, textures, 0);
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLES11IdImpl.java 47 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset) {
49 gl.glDeleteTextures(n, textures, offset);
GLId.java 28 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset);
GLES20IdImpl.java 25 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset) {
26 GLES20.glDeleteTextures(n, textures, offset);
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
GLId.java 28 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset);
GLES20IdImpl.java 25 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset) {
26 GLES20.glDeleteTextures(n, textures, offset);
  /packages/apps/Launcher3/src/com/android/gallery3d/glrenderer/
GLId.java 28 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset);
GLES20IdImpl.java 25 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset) {
26 GLES20.glDeleteTextures(n, textures, offset);
  /cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/
ProgramFragmentTest.java 81 ProgramFragment buildShader(Allocation[] textures, Allocation[] constInput, String shader) {
84 if (textures != null) {
85 for (int i = 0; i < textures.length; i++) {
87 if (textures[i].getType().hasFaces()) {
90 // Add textures through the base program builder
113 if (textures != null) {
114 for (int i = 0; i < textures.length; i++) {
115 pf.bindTexture(textures[i], i);
119 p.bindTexture(textures[i], i);
179 Allocation[] textures = new Allocation[2] local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
stw_st.c 44 struct pipe_resource *textures[ST_ATTACHMENT_COUNT]; member in struct:stw_st_framebuffer
56 * Remove outdated textures and create the requested ones.
67 /* remove outdated textures */
70 pipe_resource_reference(&stwfb->textures[i], NULL);
86 if (stwfb->textures[i] || !(mask & (1 << i))) {
88 if (stwfb->textures[i])
113 stwfb->textures[i] =
146 pipe_resource_reference(&out[i], stwfb->textures[statts[i]]);
165 resource = stwfb->textures[statt];
217 pipe_resource_reference(&stwfb->textures[i], NULL)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_st.c 44 struct pipe_resource *textures[ST_ATTACHMENT_COUNT]; member in struct:stw_st_framebuffer
56 * Remove outdated textures and create the requested ones.
67 /* remove outdated textures */
70 pipe_resource_reference(&stwfb->textures[i], NULL);
86 if (stwfb->textures[i] || !(mask & (1 << i))) {
88 if (stwfb->textures[i])
113 stwfb->textures[i] =
146 pipe_resource_reference(&out[i], stwfb->textures[statts[i]]);
165 resource = stwfb->textures[statt];
217 pipe_resource_reference(&stwfb->textures[i], NULL)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/glx/xlib/
xm_st.c 44 struct pipe_resource *textures[ST_ATTACHMENT_COUNT]; member in struct:xmesa_st_framebuffer
63 struct pipe_resource *ptex = xstfb->textures[statt];
92 struct pipe_resource *src_ptex = xstfb->textures[src_statt];
93 struct pipe_resource *dst_ptex = xstfb->textures[dst_statt];
110 * Remove outdated textures and create the requested ones.
122 /* remove outdated textures */
125 pipe_resource_reference(&xstfb->textures[i], NULL);
141 if (xstfb->textures[i] || !(mask & (1 << i))) {
143 if (xstfb->textures[i])
170 xstfb->textures[i]
    [all...]
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
xm_st.c 44 struct pipe_resource *textures[ST_ATTACHMENT_COUNT]; member in struct:xmesa_st_framebuffer
63 struct pipe_resource *ptex = xstfb->textures[statt];
92 struct pipe_resource *src_ptex = xstfb->textures[src_statt];
93 struct pipe_resource *dst_ptex = xstfb->textures[dst_statt];
110 * Remove outdated textures and create the requested ones.
122 /* remove outdated textures */
125 pipe_resource_reference(&xstfb->textures[i], NULL);
141 if (xstfb->textures[i] || !(mask & (1 << i))) {
143 if (xstfb->textures[i])
170 xstfb->textures[i]
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv40_verttex.c 37 struct nv30_sampler_view *sv = (void *)nv30->fragprog.textures[unit];
81 pipe_sampler_view_reference(&nv30->vertprog.textures[i], views[i]);
87 pipe_sampler_view_reference(&nv30->vertprog.textures[i], NULL);
  /external/mesa3d/src/gallium/drivers/nv30/
nv40_verttex.c 37 struct nv30_sampler_view *sv = (void *)nv30->fragprog.textures[unit];
81 pipe_sampler_view_reference(&nv30->vertprog.textures[i], views[i]);
87 pipe_sampler_view_reference(&nv30->vertprog.textures[i], NULL);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texobj.h 143 _mesa_GenTextures( GLsizei n, GLuint *textures );
147 _mesa_DeleteTextures( GLsizei n, const GLuint *textures );
155 _mesa_PrioritizeTextures( GLsizei n, const GLuint *textures,
160 _mesa_AreTexturesResident( GLsizei n, const GLuint *textures,
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
TextureBlender.java 1 package com.jme3.scene.plugins.blender.textures.blending;
  /external/mesa3d/src/mesa/main/
texobj.h 143 _mesa_GenTextures( GLsizei n, GLuint *textures );
147 _mesa_DeleteTextures( GLsizei n, const GLuint *textures );
155 _mesa_PrioritizeTextures( GLsizei n, const GLuint *textures,
160 _mesa_AreTexturesResident( GLsizei n, const GLuint *textures,
  /frameworks/native/opengl/libagl/
texture.cpp 47 c->textures.packAlignment = 4;
48 c->textures.unpackAlignment = 4;
51 c->textures.defaultTexture = new EGLTextureObject();
52 c->textures.defaultTexture->incStrong(c);
56 bindTextureTmu(c, i, 0, c->textures.defaultTexture);
64 if (c->textures.ggl)
65 gglUninit(c->textures.ggl);
66 c->textures.defaultTexture->decStrong(c);
68 if (c->textures.tmu[i].texture)
69 c->textures.tmu[i].texture->decStrong(c)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
xorg_renderer.h 59 struct pipe_resource **textures);
73 struct pipe_sampler_view **textures,
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_renderer.h 59 struct pipe_resource **textures);
73 struct pipe_sampler_view **textures,
  /frameworks/native/opengl/tests/
Android.mk 20 textures \

Completed in 429 milliseconds

1 2 3 4 5 6 7 8 91011>>