HomeSort by relevance Sort by last modified time
    Searched refs:maxLevels (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/third_party/skia/tools/skpdiff/
SkPMetric.cpp 278 int maxLevels = 0;
283 maxLevels++;
286 // We'll be creating new arrays with maxLevels - 2, and ImageL3D requires maxLevels > 0,
288 if (maxLevels <= 2) {
296 ImageL3D baselineL(width, height, maxLevels);
297 ImageL3D testL(width, height, maxLevels);
299 float* cyclesPerDegree = SkNEW_ARRAY(float, maxLevels);
300 float* thresholdFactorFrequency = SkNEW_ARRAY(float, maxLevels - 2);
301 float* contrast = SkNEW_ARRAY(float, maxLevels - 2)
    [all...]
  /external/skia/tools/skpdiff/
SkPMetric.cpp 278 int maxLevels = 0;
283 maxLevels++;
286 // We'll be creating new arrays with maxLevels - 2, and ImageL3D requires maxLevels > 0,
288 if (maxLevels <= 2) {
296 ImageL3D baselineL(width, height, maxLevels);
297 ImageL3D testL(width, height, maxLevels);
299 float* cyclesPerDegree = SkNEW_ARRAY(float, maxLevels);
300 float* thresholdFactorFrequency = SkNEW_ARRAY(float, maxLevels - 2);
301 float* contrast = SkNEW_ARRAY(float, maxLevels - 2)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texobj.c 446 GLint maxLog2 = 0, maxLevels = 0;
503 maxLevels = ctx->Const.MaxTextureLevels;
509 maxLevels = ctx->Const.MaxTextureLevels;
515 maxLevels = ctx->Const.Max3DTextureLevels;
520 maxLevels = ctx->Const.MaxCubeTextureLevels;
526 maxLevels = 1; /* no mipmapping */
533 ASSERT(maxLevels > 0);
537 t->_MaxLevel = MIN2(t->_MaxLevel, maxLevels - 1); /* 'q' in the GL spec */
594 for (i = baseLevel + 1; i < maxLevels; i++) {
    [all...]
texgetimage.c 703 const GLint maxLevels = _mesa_max_texture_levels(ctx, target);
712 assert(maxLevels != 0);
713 if (level < 0 || level >= maxLevels) {
867 const GLint maxLevels = _mesa_max_texture_levels(ctx, target);
876 assert(maxLevels != 0);
877 if (level < 0 || level >= maxLevels) {
texparam.c     [all...]
teximage.c     [all...]
  /external/mesa3d/src/mesa/main/
texobj.c 446 GLint maxLog2 = 0, maxLevels = 0;
503 maxLevels = ctx->Const.MaxTextureLevels;
509 maxLevels = ctx->Const.MaxTextureLevels;
515 maxLevels = ctx->Const.Max3DTextureLevels;
520 maxLevels = ctx->Const.MaxCubeTextureLevels;
526 maxLevels = 1; /* no mipmapping */
533 ASSERT(maxLevels > 0);
537 t->_MaxLevel = MIN2(t->_MaxLevel, maxLevels - 1); /* 'q' in the GL spec */
594 for (i = baseLevel + 1; i < maxLevels; i++) {
    [all...]
texgetimage.c 703 const GLint maxLevels = _mesa_max_texture_levels(ctx, target);
712 assert(maxLevels != 0);
713 if (level < 0 || level >= maxLevels) {
867 const GLint maxLevels = _mesa_max_texture_levels(ctx, target);
876 assert(maxLevels != 0);
877 if (level < 0 || level >= maxLevels) {
texparam.c     [all...]
teximage.c     [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_tile_cache.c 88 int maxLevels, maxTexSize;
91 maxLevels = pipe->screen->get_param(pipe->screen, PIPE_CAP_MAX_TEXTURE_2D_LEVELS);
92 maxTexSize = 1 << (maxLevels - 1);
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_tile_cache.c 88 int maxLevels, maxTexSize;
91 maxLevels = pipe->screen->get_param(pipe->screen, PIPE_CAP_MAX_TEXTURE_2D_LEVELS);
92 maxTexSize = 1 << (maxLevels - 1);

Completed in 264 milliseconds