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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/cc/resources/
prioritized_resource_unittest.cc 130 // Create textures for double our memory limit.
131 scoped_ptr<PrioritizedResource> textures[kMaxTextures * 2]; local
134 textures[i] =
139 textures[i]->set_request_priority(100 + i);
143 EXPECT_TRUE(ValidateTexture(textures[0].get(), false));
144 EXPECT_TRUE(ValidateTexture(textures[7].get(), false));
145 EXPECT_FALSE(ValidateTexture(textures[8].get(), false));
146 EXPECT_FALSE(ValidateTexture(textures[15].get(), false));
150 textures[i]->set_request_priority(100 - i);
154 EXPECT_FALSE(ValidateTexture(textures[0].get(), false))
175 scoped_ptr<PrioritizedResource> textures[kMaxTextures]; local
242 scoped_ptr<PrioritizedResource> textures[kMaxTextures]; local
312 scoped_ptr<PrioritizedResource> textures[kMaxTextures]; local
392 scoped_ptr<PrioritizedResource> textures[kMaxTextures]; local
    [all...]
  /frameworks/native/opengl/tests/textures/
Android.mk 5 textures.cpp
19 LOCAL_MODULE:= test-opengl-textures
  /external/chromium_org/third_party/angle/tests/angle_tests/
ClearTest.cpp 113 GLuint textures[2]; local
114 glGenTextures(2, &textures[0]);
116 glBindTexture(GL_TEXTURE_2D, textures[0]);
118 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, textures[0], 0);
120 glBindTexture(GL_TEXTURE_2D, textures[1]);
122 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT1, GL_TEXTURE_2D, textures[1], 0);
138 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, textures[1], 0);
141 glDeleteTextures(2, textures);
149 GLuint textures[2]; local
150 glGenTextures(2, &textures[0])
    [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/WallpaperPicker/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);
  /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/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/chromium_org/third_party/skia/src/gpu/effects/
GrSimpleTextureEffect.cpp 59 GrTexture* textures[]) {
81 return GrSimpleTextureEffect::Create(textures[texIdx], matrix, coordSet);
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_renderer.h 59 struct pipe_resource **textures);
73 struct pipe_sampler_view **textures,
  /external/skia/src/gpu/effects/
GrSimpleTextureEffect.cpp 57 GrTexture* textures[]) {
79 return GrSimpleTextureEffect::Create(textures[texIdx], matrix, coordSet);
  /frameworks/native/opengl/tests/
Android.mk 20 textures \

Completed in 574 milliseconds

1 2 3 4 5 6 7 8 91011>>