/external/mesa3d/src/gallium/auxiliary/util/ |
u_surfaces.c | 85 cso_hash_erase(us->u.hash, cso_hash_find(us->u.hash, (ps->u.tex.first_layer << 8) | ps->u.tex.level)); 88 us->u.array[ps->u.tex.level] = 0;
|
u_pstipple.c | 63 struct pipe_resource *tex, 72 transfer = pipe_get_transfer(pipe, tex, 0, 0, 109 struct pipe_resource templat, *tex; local 121 tex = screen->resource_create(screen, &templat); 123 if (tex) 124 util_pstipple_update_stipple_texture(pipe, tex, pattern); 126 return tex; 135 struct pipe_resource *tex) 139 u_sampler_view_default_template(&templat, tex, tex->format) [all...] |
/external/mesa3d/src/gallium/drivers/r600/ |
r600_resource.h | 66 #define R600_TEX_IS_TILED(tex, level) ((tex)->array_mode[level] != V_038000_ARRAY_LINEAR_GENERAL && (tex)->array_mode[level] != V_038000_ARRAY_LINEAR_ALIGNED)
|
/external/mesa3d/src/gallium/state_trackers/xorg/ |
xorg_dri2.c | 58 struct pipe_resource *tex; member in struct:__anon25325 65 struct pipe_resource *tex = NULL; local 106 pipe_resource_reference(&tex, exa_priv->depth_stencil_tex); 136 tex = ms->screen->resource_create(ms->screen, &template); 137 pipe_resource_reference(&exa_priv->depth_stencil_tex, tex); 147 if (!tex) { 154 tex = xorg_exa_get_texture(private->pPixmap); 157 if (!tex) 163 ms->screen->resource_get_handle(ms->screen, tex, &whandle); 177 private->tex = tex [all...] |
xorg_exa.h | 53 struct pipe_resource *tex; member in struct:exa_pixmap_priv
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/ |
vl_idct.c | 396 unsigned first_output, struct ureg_dst tex) 420 ureg_MUL(shader, ureg_writemask(tex, TGSI_WRITEMASK_Z), 426 calc_addr(shader, o_r_addr, ureg_src(tex), ureg_src(t_start), true, false, idct->buffer_height / 4); 428 ureg_MOV(shader, ureg_writemask(o_r_addr[0], TGSI_WRITEMASK_Z), ureg_src(tex)); 429 ureg_MOV(shader, ureg_writemask(o_r_addr[1], TGSI_WRITEMASK_Z), ureg_src(tex)); 591 struct pipe_resource *tex; local 596 tex = buffer->sampler_views.individual.source->texture; 598 buffer->fb_state_mismatch.width = tex->width0; 599 buffer->fb_state_mismatch.height = tex->height0; 603 surf_templ.format = tex->format 630 struct pipe_resource *tex; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d10app/ |
d3d10x11main.cpp | 136 ID3D10Texture2D* tex; local 138 ensure(swap_chain->GetBuffer(0, IID_ID3D10Texture2D, (void**)&tex)); 139 ensure(dev->CreateRenderTargetView(tex, NULL, &rtv)); 146 tex->Release();
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/ |
xorg_exa.h | 53 struct pipe_resource *tex; member in struct:exa_pixmap_priv
|
/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/ |
TranslucentBucketFilter.java | 53 Texture2D tex = processor.getFilterTexture(); local 54 material.setTexture("Texture", tex); 55 if (tex.getImage().getMultiSamples() > 1) { 56 material.setInt("NumSamples", tex.getImage().getMultiSamples());
|
/external/mesa3d/src/gallium/auxiliary/vl/ |
vl_idct.c | 396 unsigned first_output, struct ureg_dst tex) 420 ureg_MUL(shader, ureg_writemask(tex, TGSI_WRITEMASK_Z), 426 calc_addr(shader, o_r_addr, ureg_src(tex), ureg_src(t_start), true, false, idct->buffer_height / 4); 428 ureg_MOV(shader, ureg_writemask(o_r_addr[0], TGSI_WRITEMASK_Z), ureg_src(tex)); 429 ureg_MOV(shader, ureg_writemask(o_r_addr[1], TGSI_WRITEMASK_Z), ureg_src(tex)); 591 struct pipe_resource *tex; local 596 tex = buffer->sampler_views.individual.source->texture; 598 buffer->fb_state_mismatch.width = tex->width0; 599 buffer->fb_state_mismatch.height = tex->height0; 603 surf_templ.format = tex->format 630 struct pipe_resource *tex; local [all...] |
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10app/ |
d3d10x11main.cpp | 136 ID3D10Texture2D* tex; local 138 ensure(swap_chain->GetBuffer(0, IID_ID3D10Texture2D, (void**)&tex)); 139 ensure(dev->CreateRenderTargetView(tex, NULL, &rtv)); 146 tex->Release();
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_pstipple.c | 63 struct pipe_resource *tex, 72 transfer = pipe_get_transfer(pipe, tex, 0, 0, 109 struct pipe_resource templat, *tex; local 121 tex = screen->resource_create(screen, &templat); 123 if (tex) 124 util_pstipple_update_stipple_texture(pipe, tex, pattern); 126 return tex; 135 struct pipe_resource *tex) 139 u_sampler_view_default_template(&templat, tex, tex->format) [all...] |
u_blit.c | 461 dst->u.tex.level == src_level && 462 dst->u.tex.first_layer == srcZ0 && 503 dst->texture, dst->u.tex.level, 504 dstX0, dstY0, dst->u.tex.first_layer,/* dest */ 538 dst_surface->u.tex.level == src_level && 539 dst_surface->u.tex.first_layer == srcZ0) { 544 struct pipe_resource *tex; local 575 tex = screen->resource_create(screen, &texTemp); 576 if (!tex) 587 tex, 0, 0, 0, 0, /* dest * 827 struct pipe_resource *tex = src_sampler_view->texture; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/ |
subpicture.c | 200 struct pipe_resource tex_templ, *tex; local 249 tex = pipe->screen->resource_create(pipe->screen, &tex_templ); 252 u_sampler_view_default_template(&sampler_templ, tex, tex->format); 254 subpicture_priv->sampler = pipe->create_sampler_view(pipe, tex, &sampler_templ); 255 pipe_resource_reference(&tex, NULL); 278 tex = pipe->screen->resource_create(pipe->screen, &tex_templ); 281 u_sampler_view_default_template(&sampler_templ, tex, tex->format); 283 subpicture_priv->palette = pipe->create_sampler_view(pipe, tex, &sampler_templ) [all...] |
/external/chromium_org/third_party/skia/src/gpu/ |
GrGpu.cpp | 122 GrTexture* tex = this->onCreateTexture(desc, srcData, rowBytes); local 123 if (NULL != tex && 126 GrAssert(NULL != tex->asRenderTarget()); 128 if (!this->attachStencilBufferToRenderTarget(tex->asRenderTarget())) { 129 tex->unref(); 133 return tex; 170 GrTexture* tex = this->onWrapBackendTexture(desc); local 171 if (NULL == tex) { 175 GrRenderTarget* tgt = tex->asRenderTarget(); 178 tex->unref() [all...] |
/external/mesa3d/src/gallium/state_trackers/xvmc/ |
subpicture.c | 200 struct pipe_resource tex_templ, *tex; local 249 tex = pipe->screen->resource_create(pipe->screen, &tex_templ); 252 u_sampler_view_default_template(&sampler_templ, tex, tex->format); 254 subpicture_priv->sampler = pipe->create_sampler_view(pipe, tex, &sampler_templ); 255 pipe_resource_reference(&tex, NULL); 278 tex = pipe->screen->resource_create(pipe->screen, &tex_templ); 281 u_sampler_view_default_template(&sampler_templ, tex, tex->format); 283 subpicture_priv->palette = pipe->create_sampler_view(pipe, tex, &sampler_templ) [all...] |
/external/skia/src/gpu/ |
GrGpu.cpp | 122 GrTexture* tex = this->onCreateTexture(desc, srcData, rowBytes); local 123 if (NULL != tex && 126 GrAssert(NULL != tex->asRenderTarget()); 128 if (!this->attachStencilBufferToRenderTarget(tex->asRenderTarget())) { 129 tex->unref(); 133 return tex; 170 GrTexture* tex = this->onWrapBackendTexture(desc); local 171 if (NULL == tex) { 175 GrRenderTarget* tgt = tex->asRenderTarget(); 178 tex->unref() [all...] |
/external/bison/doc/ |
Makefile.am | 42 EXTRA_DIST = refcard.tex 45 refcard.dvi: refcard.tex 46 $(AM_V_GEN)tex refcard.tex
|
/external/chromium_org/third_party/mesa/src/src/gallium/tests/trivial/ |
compute.c | 51 struct pipe_resource *tex[MAX_RESOURCES]; member in struct:context 179 struct pipe_resource **tex = &ctx->tex[slot]; local 201 *tex = ctx->screen->resource_create(ctx->screen, &ttex); 202 assert(*tex); 204 xfer = pipe->get_transfer(pipe, *tex, 0, PIPE_TRANSFER_WRITE, 234 struct pipe_resource *tex = ctx->tex[slot]; local 235 int dx = util_format_get_blocksize(tex->format); 236 int dy = util_format_get_stride(tex->format, tex->width0) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/ |
radeon_tex.c | 276 if ( rmesa->hw.tex[unit].cmd[TEX_PP_TFACTOR] != envColor ) { 277 RADEON_STATECHANGE( rmesa, tex[unit] ); 278 rmesa->hw.tex[unit].cmd[TEX_PP_TFACTOR] = envColor; 302 if ( (rmesa->hw.tex[unit].cmd[TEX_PP_TXFILTER] & RADEON_LOD_BIAS_MASK) != b ) { 303 RADEON_STATECHANGE( rmesa, tex[unit] ); 304 rmesa->hw.tex[unit].cmd[TEX_PP_TXFILTER] &= ~RADEON_LOD_BIAS_MASK; 305 rmesa->hw.tex[unit].cmd[TEX_PP_TXFILTER] |= (b & RADEON_LOD_BIAS_MASK); 370 rmesa->hw.tex[i].dirty = GL_FALSE;
|
/external/mesa3d/src/gallium/tests/trivial/ |
compute.c | 51 struct pipe_resource *tex[MAX_RESOURCES]; member in struct:context 179 struct pipe_resource **tex = &ctx->tex[slot]; local 201 *tex = ctx->screen->resource_create(ctx->screen, &ttex); 202 assert(*tex); 204 xfer = pipe->get_transfer(pipe, *tex, 0, PIPE_TRANSFER_WRITE, 234 struct pipe_resource *tex = ctx->tex[slot]; local 235 int dx = util_format_get_blocksize(tex->format); 236 int dy = util_format_get_stride(tex->format, tex->width0) [all...] |
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_tex.c | 276 if ( rmesa->hw.tex[unit].cmd[TEX_PP_TFACTOR] != envColor ) { 277 RADEON_STATECHANGE( rmesa, tex[unit] ); 278 rmesa->hw.tex[unit].cmd[TEX_PP_TFACTOR] = envColor; 302 if ( (rmesa->hw.tex[unit].cmd[TEX_PP_TXFILTER] & RADEON_LOD_BIAS_MASK) != b ) { 303 RADEON_STATECHANGE( rmesa, tex[unit] ); 304 rmesa->hw.tex[unit].cmd[TEX_PP_TXFILTER] &= ~RADEON_LOD_BIAS_MASK; 305 rmesa->hw.tex[unit].cmd[TEX_PP_TXFILTER] |= (b & RADEON_LOD_BIAS_MASK); 370 rmesa->hw.tex[i].dirty = GL_FALSE;
|
/sdk/emulator/opengl/host/libs/Translator/GLES_CM/ |
GLEScmContext.h | 37 void setActiveTexture(GLenum tex); 38 void setClientActiveTexture(GLenum tex);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/noop/ |
noop_state.c | 121 surface->u.tex.first_layer = surf_tmpl->u.tex.first_layer; 122 surface->u.tex.last_layer = surf_tmpl->u.tex.last_layer; 123 surface->u.tex.level = surf_tmpl->u.tex.level;
|
/external/e2fsprogs/doc/ |
Makefile.in | 58 clean-all:: clean-tex clean-backup clean-final clean-tarfiles clean-html 64 .PHONY: clean-tex 65 clean-tex::
|