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

  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_tex_layout.c 163 GLuint img_height; local
168 img_height = ALIGN(height, mt->align_h);
170 img_height /= mt->align_h;
175 mt->total_height = MAX2(mt->total_height, y + img_height);
183 y += img_height;
i915_tex_layout.c 204 GLuint img_height; local
216 img_height = ALIGN(height, 4) / 4;
218 img_height = ALIGN(height, 2);
220 mt->total_height += img_height;
  /external/eigen/demos/mandelbrot/
mandelbrot.cpp 31 template<typename Real> void MandelbrotThread::render(int img_width, int img_height)
41 const double yradius = xradius * img_height / img_width;
45 Vector2 step(2*widget->xradius/img_width, 2*yradius/img_height);
48 for(int y = id; y < img_height; y += threadcount)
118 int img_height = widget->height()/widget->draft; local
122 render<float>(img_width, img_height);
124 render<double>(img_width, img_height);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_tex_layout.c 333 unsigned img_height; local
337 img_height = ALIGN_NPOT(height, mt->valign);
339 img_height /= bh;
343 img_height *= depth;
349 mt->total_height = MAX2(mt->total_height, y + img_height);
356 y += img_height;
490 unsigned img_height; local
491 img_height = ALIGN_NPOT(height, mt->valign);
493 img_height /= mt->valign;
497 intel_miptree_set_image_offset(mt, level, q, 0, q * img_height);
    [all...]
  /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/
VrView.java 393 int img_height = getHeight() / sample; local
394 state.createOutputAllocation(mSurface, img_width, img_height);
423 addLine("vr(" + img_width + "," + img_height + "): " + (time - start) / 1E6f + " ms");
  /external/vulkan-validation-layers/tests/
layer_validation_tests.cpp 14805 const int32_t img_height = 32; local
    [all...]

Completed in 440 milliseconds