/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11app/ |
d3d11winmain.cpp | 153 ID3D11Texture2D* tex; local 155 ensure(swap_chain->GetBuffer(0, __uuidof(tex), (void**)&tex)); 156 ensure(dev->CreateRenderTargetView(tex, NULL, &rtv)); 166 tex->Release();
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10app/ |
d3d10winmain.cpp | 169 ID3D10Texture2D* tex; local 171 ensure(swap_chain->GetBuffer(0, __uuidof(tex), (void**)&tex)); 172 ensure(dev->CreateRenderTargetView(tex, NULL, &rtv)); 182 tex->Release();
|
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/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11app/ |
d3d11winmain.cpp | 153 ID3D11Texture2D* tex; local 155 ensure(swap_chain->GetBuffer(0, __uuidof(tex), (void**)&tex)); 156 ensure(dev->CreateRenderTargetView(tex, NULL, &rtv)); 166 tex->Release();
|
/external/chromium_org/third_party/mesa/src/src/gallium/tests/trivial/ |
quad-tex.c | 85 struct pipe_resource *tex; member in struct:program 172 p->tex = p->screen->resource_create(p->screen, &t_tmplt); 178 t = p->pipe->get_transfer(p->pipe, p->tex, 0, PIPE_TRANSFER_WRITE, &box); 189 u_sampler_view_default_template(&v_tmplt, p->tex, p->tex->format); 191 p->view = p->pipe->create_sampler_view(p->pipe, p->tex, &v_tmplt); 219 surf_tmpl.u.tex.level = 0; 220 surf_tmpl.u.tex.first_layer = 0; 221 surf_tmpl.u.tex.last_layer = 0; 296 pipe_resource_reference(&p->tex, NULL) [all...] |
/external/mesa3d/src/gallium/tests/trivial/ |
quad-tex.c | 85 struct pipe_resource *tex; member in struct:program 172 p->tex = p->screen->resource_create(p->screen, &t_tmplt); 178 t = p->pipe->get_transfer(p->pipe, p->tex, 0, PIPE_TRANSFER_WRITE, &box); 189 u_sampler_view_default_template(&v_tmplt, p->tex, p->tex->format); 191 p->view = p->pipe->create_sampler_view(p->pipe, p->tex, &v_tmplt); 219 surf_tmpl.u.tex.level = 0; 220 surf_tmpl.u.tex.first_layer = 0; 221 surf_tmpl.u.tex.last_layer = 0; 296 pipe_resource_reference(&p->tex, NULL) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_blitter.c | 559 struct pipe_resource *tex = src->texture; local 560 unsigned level = src->u.tex.first_level; 561 boolean normalized = tex->target != PIPE_TEXTURE_RECT && 562 tex->nr_samples <= 1; 621 src->u.tex.first_level); 683 struct pipe_resource *tex) 687 assert(tex->target < PIPE_MAX_TEXTURE_TYPES); 689 if (tex->nr_samples > 1) { 690 void **shader = &ctx->fs_texfetch_col_msaa[tex->target]; 694 unsigned tgsi_tex = util_pipe_tex_to_tgsi_tex(tex->target [all...] |
u_inlines.h | 134 pipe_resource_reference(struct pipe_resource **ptr, struct pipe_resource *tex) 138 if (pipe_reference_described(&(*ptr)->reference, &tex->reference, 141 *ptr = tex; 199 ps->u.tex.level = level; 200 ps->u.tex.first_layer = ps->u.tex.last_layer = layer; 224 (s1->u.tex.level == s2->u.tex.level && 225 s1->u.tex.first_layer == s2->u.tex.first_layer & [all...] |
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;
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrGpu.cpp | 122 GrTexture *tex = NULL; local 133 tex = this->onCreateCompressedTexture(desc, srcData); 136 tex = this->onCreateTexture(desc, srcData, rowBytes); 137 if (NULL != tex && 140 SkASSERT(NULL != tex->asRenderTarget()); 142 if (!this->attachStencilBufferToRenderTarget(tex->asRenderTarget())) { 143 tex->unref(); 148 return tex; 185 GrTexture* tex = this->onWrapBackendTexture(desc); local 186 if (NULL == tex) { [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
u_blitter.c | 559 struct pipe_resource *tex = src->texture; local 560 unsigned level = src->u.tex.first_level; 561 boolean normalized = tex->target != PIPE_TEXTURE_RECT && 562 tex->nr_samples <= 1; 621 src->u.tex.first_level); 683 struct pipe_resource *tex) 687 assert(tex->target < PIPE_MAX_TEXTURE_TYPES); 689 if (tex->nr_samples > 1) { 690 void **shader = &ctx->fs_texfetch_col_msaa[tex->target]; 694 unsigned tgsi_tex = util_pipe_tex_to_tgsi_tex(tex->target [all...] |
u_inlines.h | 134 pipe_resource_reference(struct pipe_resource **ptr, struct pipe_resource *tex) 138 if (pipe_reference_described(&(*ptr)->reference, &tex->reference, 141 *ptr = tex; 199 ps->u.tex.level = level; 200 ps->u.tex.first_layer = ps->u.tex.last_layer = layer; 224 (s1->u.tex.level == s2->u.tex.level && 225 s1->u.tex.first_layer == s2->u.tex.first_layer & [all...] |
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;
|
/external/skia/src/gpu/ |
GrGpu.cpp | 122 GrTexture *tex = NULL; local 133 tex = this->onCreateCompressedTexture(desc, srcData); 136 tex = this->onCreateTexture(desc, srcData, rowBytes); 137 if (NULL != tex && 140 SkASSERT(NULL != tex->asRenderTarget()); 142 if (!this->attachStencilBufferToRenderTarget(tex->asRenderTarget())) { 143 tex->unref(); 148 return tex; 185 GrTexture* tex = this->onWrapBackendTexture(desc); local 186 if (NULL == tex) { [all...] |
/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/ |
xorg_dri2.c | 58 struct pipe_resource *tex; member in struct:__anon17853 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/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:__anon31412 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/glsl/ |
ir_reader.cpp | 921 { "tex", s_type, s_sampler, s_coord, s_offset, s_proj, s_shadow }; 944 ir_texture *tex = new(mem_ctx) ir_texture(op); local 950 tex->opcode_string()); 958 tex->opcode_string()); 961 tex->set_sampler(sampler, type); 965 tex->coordinate = read_rvalue(s_coord); 966 if (tex->coordinate == NULL) { 968 tex->opcode_string()); 975 tex->offset = read_rvalue(s_offset); 976 if (tex->offset == NULL) [all...] |
/external/mesa3d/src/glsl/ |
ir_reader.cpp | 921 { "tex", s_type, s_sampler, s_coord, s_offset, s_proj, s_shadow }; 944 ir_texture *tex = new(mem_ctx) ir_texture(op); local 950 tex->opcode_string()); 958 tex->opcode_string()); 961 tex->set_sampler(sampler, type); 965 tex->coordinate = read_rvalue(s_coord); 966 if (tex->coordinate == NULL) { 968 tex->opcode_string()); 975 tex->offset = read_rvalue(s_offset); 976 if (tex->offset == NULL) [all...] |
/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/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/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();
|