HomeSort by: relevance | last modified time | path
    Searched defs:texture (Results 1 - 25 of 173) sorted by relevancy

1 2 3 4 5 6 7

  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/hud/
font.h 40 /* The font is stored in a RECT texture. There are 256 glyphs
41 * drawn in a 16x16 matrix. The texture coordinates of a glyph
50 struct pipe_resource *texture; member in struct:util_font
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/hud/
font.h 40 /* The font is stored in a RECT texture. There are 256 glyphs
41 * drawn in a 16x16 matrix. The texture coordinates of a glyph
50 struct pipe_resource *texture; member in struct:util_font
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/
etnaviv_uniforms.c 52 struct pipe_sampler_view *texture = ctx->sampler_view[index]; local
56 dim = texture->texture->width0;
58 dim = texture->texture->height0;
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
lp_linear_fastpath.c 70 const struct lp_jit_texture *texture = &context->textures[0]; local
84 src_x = x + util_iround(a0[1][0]*texture->width - 0.5f);
85 src_y = y + util_iround(a0[1][1]*texture->height - 0.5f);
87 src = texture->base;
88 src_stride = texture->row_stride[0];
94 src_x + width > texture->width ||
95 src_y + height > texture->height)
122 const struct lp_jit_texture *texture = &context->textures[0]; local
138 src_x = x + util_iround(a0[1][0]*texture->width - 0.5f);
139 src_y = y + util_iround(a0[1][1]*texture->height - 0.5f)
    [all...]
lp_linear_priv.h 22 const struct lp_jit_texture *texture; member in struct:lp_linear_sampler
143 const struct lp_jit_texture *texture,
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/
svga_sampler_view.h 45 * A sampler's view into a texture
48 * the texture and in there by holding a reference
49 * from the texture to the sampler view.
52 * texture from the sampler view. So the user
54 * texture has a reference take for as long as
58 * texture is enough.
64 struct pipe_resource *texture; member in struct:svga_sampler_view
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/
etnaviv_uniforms.c 49 struct pipe_sampler_view *texture = ctx->sampler_view[index]; local
53 dim = texture->texture->width0;
55 dim = texture->texture->height0;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/
svga_sampler_view.h 45 * A sampler's view into a texture
48 * the texture and in there by holding a reference
49 * from the texture to the sampler view.
52 * texture from the sampler view. So the user
54 * texture has a reference take for as long as
58 * texture is enough.
64 struct pipe_resource *texture; member in struct:svga_sampler_view
  /xsrc/external/mit/mesa-demos/dist/src/demos/
paltex.c 3 * Paletted texture demo. Written by Brian Paul.
97 static char texture[257] = {"\ local
162 GL_COLOR_INDEX, /* texture format */
163 GL_UNSIGNED_BYTE, /* texture type */
164 texture); /* the texture */
187 static char texture[HEIGHT][WIDTH]; local
198 texture[j][i] = i;
234 GL_COLOR_INDEX, /* texture format */
235 GL_UNSIGNED_BYTE, /* texture type *
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/
sp_tex_tile_cache.c 29 * Texture tile caching.
52 /* make sure max texture size works */
89 * Invalidate all cached tiles for the cached texture.
90 * Should be called when the texture is modified.
98 assert(tc->texture);
111 return (tc->texture == view->texture &&
126 struct pipe_resource *texture = view ? view->texture : NULL; local
132 pipe_resource_reference(&tc->texture, texture)
    [all...]
sp_screen.c 376 * Query format support for creating a texture, drawing surface, etc.
501 struct softpipe_resource *texture = softpipe_resource(resource); local
503 assert(texture->dt);
504 if (texture->dt)
505 winsys->displaytarget_display(winsys, texture->dt, context_private, sub_box);
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/
brw_surface_formats.c 218 enum isl_format texture, render; local
221 render = texture = brw_isl_format_for_mesa_format(format);
229 if (texture == ISL_FORMAT_UNSUPPORTED)
242 if (isl_format_supports_sampling(devinfo, texture) &&
243 (isl_format_supports_filtering(devinfo, texture) || is_integer))
284 if (!isl_format_supports_rendering(devinfo, texture))
288 if (!isl_format_supports_rendering(devinfo, texture))
356 * as a texture source the swizzle state is programmed to force the alpha
358 * it's a bit more difficult when the hardware doesn't support texture
502 * possible to determine if an HDR or LDR texture is being rendered, w
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/nouveau/
nv04_context.h 40 struct nouveau_surface *texture[2]; member in struct:nv04_context
  /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
st_cb_fbo.h 49 struct pipe_resource *texture; member in struct:st_renderbuffer
85 return st_renderbuffer(rb)->texture;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/softpipe/
sp_tex_tile_cache.c 29 * Texture tile caching.
52 /* make sure max texture size works */
89 * Invalidate all cached tiles for the cached texture.
90 * Should be called when the texture is modified.
98 assert(tc->texture);
111 return (tc->texture == view->texture &&
126 struct pipe_resource *texture = view ? view->texture : NULL; local
132 pipe_resource_reference(&tc->texture, texture)
    [all...]
sp_screen.c 403 * Query format support for creating a texture, drawing surface, etc.
527 struct softpipe_resource *texture = softpipe_resource(resource); local
529 assert(texture->dt);
530 if (texture->dt)
531 winsys->displaytarget_display(winsys, texture->dt, context_private, sub_box);
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/
brw_surface_formats.c 220 enum isl_format texture, render; local
223 render = texture = brw_isl_format_for_mesa_format(format);
225 if (texture == ISL_FORMAT_UNSUPPORTED)
238 if (isl_format_supports_sampling(devinfo, texture) &&
239 (isl_format_supports_filtering(devinfo, texture) || is_integer))
280 if (!isl_format_supports_rendering(devinfo, texture))
284 if (!isl_format_supports_rendering(devinfo, texture))
352 * as a texture source the swizzle state is programmed to force the alpha
354 * it's a bit more difficult when the hardware doesn't support texture
498 * possible to determine if an HDR or LDR texture is being rendered, w
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/nouveau/
nv04_context.h 40 struct nouveau_surface *texture[2]; member in struct:nv04_context
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
st_cb_fbo.h 49 struct pipe_resource *texture; member in struct:st_renderbuffer
85 return st_renderbuffer(rb)->texture;
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/driver_rbug/
rbug_context.h 70 struct rbug_resource *texture; member in struct:rbug_context::__anon1044
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/i915/
i915_state_sampler.c 65 * Compute i915 texture sampling state.
101 * "A cube map sampler is called, any of the corresponding texture images are
102 * non-power-of-two images, and either the texture wrap mode is not
107 * "When using cube map texture coordinates, only TEXCOORDMODE_CLAMP and *
182 debug_printf("i915: unsupported texture swizzle for format %d\n",
298 * still texture from a single level. This is useful to make u_blitter work.
353 /* determine unit enable/disable by looking for a bound texture */
356 struct i915_texture *texture = local
357 i915_texture(i915->fragment_sampler_views[unit]->texture);
361 texture, /* texture *
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/nine/
surface9.h 42 uint8_t texture; /* rtype of container BaseTex or 0 */ member in struct:NineSurface9
140 return This->base.usage == 0 && !This->texture;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/driver_rbug/
rbug_context.h 70 struct rbug_resource *texture; member in struct:rbug_context::__anon3556
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/i915/
i915_state_sampler.c 75 * Compute i915 texture sampling state.
157 /* determine unit enable/disable by looking for a bound texture */
160 struct i915_texture *texture = i915_texture(i915->fragment_sampler_views[unit]->texture); local
165 texture, /* texture */
169 texture, /* texture */
202 debug_printf("i915: unsupported texture swizzle for format %d\n", pipeFormat);
316 * still texture from a single level. This is useful to make u_blitter work
373 struct i915_texture *texture = i915_texture(i915->fragment_sampler_views[unit]->texture); local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/
lp_screen.c 410 * support vertex shader texture lookups when LLVM is enabled in
460 * Query format support for creating a texture, drawing surface, etc.
583 struct llvmpipe_resource *texture = llvmpipe_resource(resource); local
585 assert(texture->dt);
586 if (texture->dt)
587 winsys->displaytarget_display(winsys, texture->dt, context_private, sub_box);

Completed in 20 milliseconds

1 2 3 4 5 6 7