HomeSort by relevance Sort by last modified time
    Searched defs:max_lod (Results 1 - 20 of 20) sorted by null

  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_texture.h 44 unsigned min_lod, max_lod; member in struct:etna_sampler_state
63 unsigned min_lod, max_lod; /* 5.5 fixp */ member in struct:etna_sampler_view
  /external/mesa3d/src/gallium/drivers/svga/
svga_sampler_view.h 67 int max_lod; member in struct:svga_sampler_view
80 unsigned min_lod, unsigned max_lod);
svga_state_tss.c 83 unsigned last_level, min_lod, max_lod; local
89 min_lod = max_lod = sv->u.tex.first_level;
95 max_lod = MIN2(s->view_max_lod + sv->u.tex.first_level, last_level);
101 max_lod = 0;
106 view->max_lod != max_lod) {
113 view->max_lod = max_lod;
119 max_lod);
svga_pipe_sampler.c 170 float min_lod, max_lod; local
188 assert(ps->min_lod <= ps->max_lod);
192 min_lod = max_lod = 0.0f;
196 max_lod = ps->max_lod;
213 max_lod); /* float */
259 cso->view_max_lod = MAX2((int) (sampler->max_lod + 0.5), 0);
svga_context.h 333 unsigned max_lod; member in struct:svga_hw_view_state
  /external/mesa3d/src/gallium/drivers/i915/
i915_state_sampler.c 39 * A note about min_lod & max_lod.
45 * min_lod =< max_lod == true
46 * max_lod =< last_level == true
49 * This is all fine and dandy if it were for the fact that max_lod
51 * the max_lod we submit on map is:
52 * max_lod = MIN2(last_level, max_lod);
309 unsigned max_lod = num_levels * 4; local
320 max_lod = 1;
343 * set max_lod = 1 to make sure i915 chooses between min/mag filtering
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv30_fragtex.c 52 unsigned min_lod, max_lod; local
63 max_lod = sv->base_lod;
66 max_lod = MIN2(ss->max_lod + sv->base_lod, sv->high_lod);
67 min_lod = MIN2(ss->min_lod + sv->base_lod, max_lod);
87 enable |= (min_lod << 19) | (max_lod << 7);
123 enable |= (min_lod << 18) | (max_lod << 6);
nv30_texture.c 133 const float max_lod = 15.0 + (255.0 / 256.0); local
178 so->max_lod = (int)(CLAMP(cso->max_lod, 0.0, max_lod) * 256.0);
179 so->min_lod = (int)(CLAMP(cso->min_lod, 0.0, max_lod) * 256.0);
nv30_state.h 48 unsigned max_lod; member in struct:nv30_sampler_state
  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_state_sampler.h 43 float max_lod; member in struct:ilo_state_sampler_info
ilo_state_sampler.c 85 info->max_lod == 0.0f &&
329 uint16_t lod_bias, max_lod, min_lod; local
379 max_lod = get_gen6_lod_clamp(dev, info->max_lod);
429 max_lod << GEN7_SAMPLER_DW1_MAX_LOD__SHIFT |
434 max_lod << GEN6_SAMPLER_DW1_MAX_LOD__SHIFT |
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sampler_state.c 93 unsigned max_lod,
123 SET_FIELD(max_lod, GEN7_SAMPLER_MAX_LOD) |
155 SET_FIELD(max_lod, GEN4_SAMPLER_MAX_LOD) |
526 const unsigned max_lod = local
553 base_level, min_lod, max_lod, lod_bias,
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_jit.h 68 float max_lod; member in struct:lp_jit_sampler
  /external/mesa3d/src/gallium/drivers/swr/
swr_context.h 78 float max_lod; member in struct:swr_jit_sampler
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_llvm.h 76 float max_lod; member in struct:draw_jit_sampler
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_sample.h 166 unsigned min_max_lod_equal:1; /**< min_lod == max_lod ? */
169 unsigned apply_max_lod:1; /**< max_lod < last_level ? */
266 (*max_lod)(const struct lp_sampler_dynamic_state *state, member in struct:lp_sampler_dynamic_state
lp_bld_sample.c 161 if (sampler->max_lod > 0.0f) {
173 /* If min_lod == max_lod we can greatly simplify mipmap selection.
176 if (sampler->min_lod == sampler->max_lod) {
185 * sets max_lod to not more than actually present mip maps...
187 if (sampler->max_lod < (PIPE_MAX_TEXTURE_LEVELS - 1)) {
844 LLVMValueRef max_lod = local
845 dynamic_state->max_lod(dynamic_state, bld->gallivm,
847 max_lod = lp_build_broadcast_scalar(lodf_bld, max_lod);
849 lod = lp_build_min(lodf_bld, lod, max_lod);
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_context.h 184 unsigned min_lod, max_lod; member in struct:r300_sampler_state
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_tex_sample.c 1798 const float max_lod = sampler->max_lod; local
1890 const float max_lod = sampler->max_lod; local
1918 const float max_lod = sp_samp->base.max_lod; local
    [all...]
  /external/mesa3d/src/gallium/include/pipe/
p_state.h 381 float min_lod, max_lod; /**< LOD clamp range, after bias */ member in struct:pipe_sampler_state

Completed in 468 milliseconds