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

1 2

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_sampler_view.h 65 int max_lod; member in struct:svga_sampler_view
78 unsigned min_lod, unsigned max_lod);
svga_state_tss.c 75 unsigned max_lod; local
90 max_lod = MIN2(s->view_max_lod + sv->u.tex.first_level,
95 max_lod = 0;
100 view->max_lod != max_lod) {
107 view->max_lod = max_lod;
113 max_lod);
svga_context.h 268 unsigned max_lod; member in struct:svga_hw_view_state
  /external/mesa3d/src/gallium/drivers/svga/
svga_sampler_view.h 65 int max_lod; member in struct:svga_sampler_view
78 unsigned min_lod, unsigned max_lod);
svga_state_tss.c 75 unsigned max_lod; local
90 max_lod = MIN2(s->view_max_lod + sv->u.tex.first_level,
95 max_lod = 0;
100 view->max_lod != max_lod) {
107 view->max_lod = max_lod;
113 max_lod);
svga_context.h 268 unsigned max_lod; member in struct:svga_hw_view_state
  /external/chromium_org/third_party/mesa/src/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);
305 unsigned max_lod = num_levels * 4; local
329 * set max_lod = 1 to make sure i915 chooses between min/mag filtering.
333 if (max_lod > (sampler->maxlod >> 2)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/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 46 unsigned max_lod; member in struct:nv30_sampler_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);
305 unsigned max_lod = num_levels * 4; local
329 * set max_lod = 1 to make sure i915 chooses between min/mag filtering.
333 if (max_lod > (sampler->maxlod >> 2)
    [all...]
  /external/mesa3d/src/gallium/drivers/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 46 unsigned max_lod; member in struct:nv30_sampler_state
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_jit.h 61 float max_lod; member in struct:lp_jit_texture
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_jit.h 61 float max_lod; member in struct:lp_jit_texture
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_sample.h 94 unsigned min_max_lod_equal:1; /**< min_lod == max_lod ? */
97 unsigned apply_max_lod:1; /**< max_lod < last_level ? */
173 (*max_lod)(const struct lp_sampler_dynamic_state *state, member in struct:lp_sampler_dynamic_state
lp_bld_sample.c 137 if (view->u.tex.last_level && sampler->max_lod > 0.0f) {
148 /* If min_lod == max_lod we can greatly simplify mipmap selection.
151 if (sampler->min_lod == sampler->max_lod) {
158 if (sampler->max_lod < (float)view->u.tex.last_level) {
581 LLVMValueRef max_lod = local
582 bld->dynamic_state->max_lod(bld->dynamic_state, bld->gallivm, unit);
583 max_lod = lp_build_broadcast_scalar(perquadf_bld, max_lod);
585 lod = lp_build_min(perquadf_bld, lod, max_lod);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_sample.h 94 unsigned min_max_lod_equal:1; /**< min_lod == max_lod ? */
97 unsigned apply_max_lod:1; /**< max_lod < last_level ? */
173 (*max_lod)(const struct lp_sampler_dynamic_state *state, member in struct:lp_sampler_dynamic_state
lp_bld_sample.c 137 if (view->u.tex.last_level && sampler->max_lod > 0.0f) {
148 /* If min_lod == max_lod we can greatly simplify mipmap selection.
151 if (sampler->min_lod == sampler->max_lod) {
158 if (sampler->max_lod < (float)view->u.tex.last_level) {
581 LLVMValueRef max_lod = local
582 bld->dynamic_state->max_lod(bld->dynamic_state, bld->gallivm, unit);
583 max_lod = lp_build_broadcast_scalar(perquadf_bld, max_lod);
585 lod = lp_build_min(perquadf_bld, lod, max_lod);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_llvm.h 54 float max_lod; member in struct:draw_jit_texture
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_llvm.h 54 float max_lod; member in struct:draw_jit_texture
  /external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/
p_state.h 318 float min_lod, max_lod; /**< LOD clamp range, after bias */ member in struct:pipe_sampler_state
  /external/mesa3d/src/gallium/include/pipe/
p_state.h 318 float min_lod, max_lod; /**< LOD clamp range, after bias */ member in struct:pipe_sampler_state
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_context.h 192 unsigned min_lod, max_lod; member in struct:r300_sampler_state

Completed in 1414 milliseconds

1 2