HomeSort by relevance Sort by last modified time
    Searched refs:tex (Results 251 - 275 of 622) sorted by null

<<11121314151617181920>>

  /external/deqp/modules/glshared/
glsFboUtil.cpp 249 else if (const Texture* const tex = dynamic_cast<const Texture*>(&cfg))
252 gl.bindTexture(glTarget(*tex), ret);
253 glInit(*tex, gl);
254 gl.bindTexture(glTarget(*tex), 0);
486 static void logTexture (const Texture& tex, TestLog& log)
488 logField(log, "Type", glu::getTextureTargetName(glTarget(tex)));
489 logImage(tex, log, true);
490 logField(log, "Levels", toString(tex.numLevels));
491 if (const TextureLayered* const lTex = dynamic_cast<const TextureLayered*>(&tex))
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir.cpp 879 memset(&tex, 0, sizeof(tex));
881 tex.rIndirectSrc = -1;
882 tex.sIndirectSrc = -1;
896 TexInstruction *tex = (i ? static_cast<TexInstruction *>(i) : local
899 Instruction::clone(pol, tex);
901 tex->tex = this->tex;
904 for (unsigned int c = 0; c < tex->tex.target.getDim(); ++c)
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir.cpp 879 memset(&tex, 0, sizeof(tex));
881 tex.rIndirectSrc = -1;
882 tex.sIndirectSrc = -1;
896 TexInstruction *tex = (i ? static_cast<TexInstruction *>(i) : local
899 Instruction::clone(pol, tex);
901 tex->tex = this->tex;
904 for (unsigned int c = 0; c < tex->tex.target.getDim(); ++c)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_context.c 422 struct pipe_resource *tex; local
433 tex = screen->resource_create(screen, &rtempl);
435 u_sampler_view_default_template(&vtempl, tex, tex->format);
438 r300->context.create_sampler_view(&r300->context, tex, &vtempl);
440 pipe_resource_reference(&tex, NULL);
r300_blit.c 138 return r300_resource(fb->zsbuf->texture)->tex.zmask_dwords[fb->zsbuf->u.tex.level] != 0;
146 return r300_resource(fb->zsbuf->texture)->tex.hiz_dwords[fb->zsbuf->u.tex.level] != 0;
459 unsigned src_width0 = r300_resource(src)->tex.width0;
460 unsigned src_height0 = r300_resource(src)->tex.height0;
461 unsigned dst_width0 = r300_resource(dst)->tex.width0;
462 unsigned dst_height0 = r300_resource(dst)->tex.height0;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_shader.c 442 struct r600_bytecode_tex tex; local
444 tex.inst = bytes[bytes_read++];
445 tex.resource_id = bytes[bytes_read++];
446 tex.src_gpr = bytes[bytes_read++];
447 tex.src_rel = bytes[bytes_read++];
448 tex.dst_gpr = bytes[bytes_read++];
449 tex.dst_rel = bytes[bytes_read++];
450 tex.dst_sel_x = bytes[bytes_read++];
451 tex.dst_sel_y = bytes[bytes_read++];
452 tex.dst_sel_z = bytes[bytes_read++]
3758 struct r600_bytecode_tex tex; local
    [all...]
r600_asm.h 164 struct list_head tex; member in struct:r600_bytecode_cf
229 int r600_bytecode_add_tex(struct r600_bytecode *bc, const struct r600_bytecode_tex *tex);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/
xa_tracker.c 323 srf->tex = xa->screen->resource_create(xa->screen, template);
324 if (!srf->tex)
409 0, 0, 0, 0, srf->tex, 0, &src_box);
413 pipe_resource_reference(&srf->tex, texture);
424 pipe_resource_reference(&srf->tex, NULL);
447 res = screen->resource_get_handle(screen, srf->tex, &whandle);
  /external/mesa3d/src/gallium/drivers/r300/
r300_context.c 422 struct pipe_resource *tex; local
433 tex = screen->resource_create(screen, &rtempl);
435 u_sampler_view_default_template(&vtempl, tex, tex->format);
438 r300->context.create_sampler_view(&r300->context, tex, &vtempl);
440 pipe_resource_reference(&tex, NULL);
r300_blit.c 138 return r300_resource(fb->zsbuf->texture)->tex.zmask_dwords[fb->zsbuf->u.tex.level] != 0;
146 return r300_resource(fb->zsbuf->texture)->tex.hiz_dwords[fb->zsbuf->u.tex.level] != 0;
459 unsigned src_width0 = r300_resource(src)->tex.width0;
460 unsigned src_height0 = r300_resource(src)->tex.height0;
461 unsigned dst_width0 = r300_resource(dst)->tex.width0;
462 unsigned dst_height0 = r300_resource(dst)->tex.height0;
  /external/mesa3d/src/gallium/drivers/r600/
r600_shader.c 442 struct r600_bytecode_tex tex; local
444 tex.inst = bytes[bytes_read++];
445 tex.resource_id = bytes[bytes_read++];
446 tex.src_gpr = bytes[bytes_read++];
447 tex.src_rel = bytes[bytes_read++];
448 tex.dst_gpr = bytes[bytes_read++];
449 tex.dst_rel = bytes[bytes_read++];
450 tex.dst_sel_x = bytes[bytes_read++];
451 tex.dst_sel_y = bytes[bytes_read++];
452 tex.dst_sel_z = bytes[bytes_read++]
3758 struct r600_bytecode_tex tex; local
    [all...]
r600_asm.h 164 struct list_head tex; member in struct:r600_bytecode_cf
229 int r600_bytecode_add_tex(struct r600_bytecode *bc, const struct r600_bytecode_tex *tex);
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_tracker.c 323 srf->tex = xa->screen->resource_create(xa->screen, template);
324 if (!srf->tex)
409 0, 0, 0, 0, srf->tex, 0, &src_box);
413 pipe_resource_reference(&srf->tex, texture);
424 pipe_resource_reference(&srf->tex, NULL);
447 res = screen->resource_get_handle(screen, srf->tex, &whandle);
  /external/chromium_org/third_party/angle/tests/angle_tests/
CompressedTextureTest.cpp 38 uniform sampler2D tex;
43 gl_FragColor = texture2D(tex, texcoord);
53 mTextureUniformLocation = glGetUniformLocation(mTextureProgram, "tex");
  /external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/
p_state.h 346 } tex; member in union:pipe_surface::__anon18760
370 } tex; member in union:pipe_sampler_view::__anon18763
  /external/deqp/modules/egl/
teglImageTests.cpp 425 deUint32 tex = 1; local
426 GLU_CHECK_CALL(glBindTexture(GL_TEXTURE_2D, tex));
440 EGLImageKHR image = CHECK_EXT_CALL_ERR(eglCreateImageKHR(context.getEglDisplay(), context.getEglContext(), EGL_GL_TEXTURE_2D_KHR, (EGLClientBuffer)(deUintptr)tex, attribs), EGL_SUCCESS);
453 GLU_CHECK_CALL(glDeleteTextures(1, &tex));
465 deUint32 tex = 1; local
466 GLU_CHECK_CALL(glBindTexture(GL_TEXTURE_CUBE_MAP, tex));
489 EGLImageKHR image = CHECK_EXT_CALL_ERR(eglCreateImageKHR(context.getEglDisplay(), context.getEglContext(), m_target, (EGLClientBuffer)(deUintptr)tex, attribs), EGL_SUCCESS);
502 GLU_CHECK_CALL(glDeleteTextures(1, &tex));
  /external/libunwind/doc/
unw_destroy_addr_space.tex 4 \input{common.tex}
unw_regname.tex 4 \input{common.tex}
unw_strerror.tex 4 \input{common.tex}
  /external/mesa3d/src/gallium/include/pipe/
p_state.h 346 } tex; member in union:pipe_surface::__anon32157
370 } tex; member in union:pipe_sampler_view::__anon32160
  /frameworks/native/include/gui/
GLConsumer.h 60 // the tex parameter is used, tex indicates the name of the OpenGL ES
74 // If the constructor with the tex parameter is used, the GLConsumer is
82 // If the constructor without the tex parameter is used, the GLConsumer is
86 uint32_t tex, uint32_t texureTarget, bool useFenceSync,
224 // The tex argument specifies the OpenGL ES texture object name in the
229 status_t attachToContext(uint32_t tex);
  /packages/apps/Camera2/src/com/android/camera/
SurfaceTextureRenderer.java 67 public SurfaceTextureRenderer(SurfaceTexture tex,
72 initialize(tex);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/interface/
mathjax_interface.js 60 * Get MathML representation of images with tex or latex class if it has an
64 * @param {Node} texNode Node with img tag and tex or latex class.
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_surface.c 248 dst->u.tex.level,
249 dst->u.tex.first_layer,
299 dst->u.tex.level,
300 dst->u.tex.first_layer,
u_surfaces.h 92 us->u.array[ps->u.tex.level] = 0;

Completed in 747 milliseconds

<<11121314151617181920>>