Searched refs:img_height (Results 1 – 11 of 11) sorted by relevance
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_tex_layout.c | 163 GLuint img_height; in i945_miptree_layout_2d() local 168 img_height = ALIGN(height, mt->align_h); in i945_miptree_layout_2d() 170 img_height /= mt->align_h; in i945_miptree_layout_2d() 175 mt->total_height = MAX2(mt->total_height, y + img_height); in i945_miptree_layout_2d() 183 y += img_height; in i945_miptree_layout_2d()
|
D | i915_tex_layout.c | 204 GLuint img_height; in i915_miptree_layout_2d() local 216 img_height = ALIGN(height, 4) / 4; in i915_miptree_layout_2d() 218 img_height = ALIGN(height, 2); in i915_miptree_layout_2d() 220 mt->total_height += img_height; in i915_miptree_layout_2d()
|
/external/eigen/demos/mandelbrot/ |
D | mandelbrot.cpp | 31 template<typename Real> void MandelbrotThread::render(int img_width, int img_height) in render() argument 41 const double yradius = xradius * img_height / img_width; in render() 45 Vector2 step(2*widget->xradius/img_width, 2*yradius/img_height); in render() 48 for(int y = id; y < img_height; y += threadcount) in render() 118 int img_height = widget->height()/widget->draft; in run() local 122 render<float>(img_width, img_height); in run() 124 render<double>(img_width, img_height); in run()
|
D | mandelbrot.h | 31 template<typename Real> void render(int img_width, int img_height);
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_tex_layout.c | 333 unsigned img_height; in brw_miptree_layout_2d() local 337 img_height = ALIGN_NPOT(height, mt->valign); in brw_miptree_layout_2d() 339 img_height /= bh; in brw_miptree_layout_2d() 343 img_height *= depth; in brw_miptree_layout_2d() 349 mt->total_height = MAX2(mt->total_height, y + img_height); in brw_miptree_layout_2d() 356 y += img_height; in brw_miptree_layout_2d() 490 unsigned img_height; in brw_miptree_layout_texture_array() local 491 img_height = ALIGN_NPOT(height, mt->valign); in brw_miptree_layout_texture_array() 493 img_height /= mt->valign; in brw_miptree_layout_texture_array() 497 intel_miptree_set_image_offset(mt, level, q, 0, q * img_height); in brw_miptree_layout_texture_array()
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_blit.c | 250 static inline void calc_tex_coords(float img_width, float img_height, in calc_tex_coords() argument 257 buf[2] = y / img_height; in calc_tex_coords() 258 buf[3] = buf[2] + reg_height / img_height; in calc_tex_coords()
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | r200_blit.c | 402 static inline void calc_tex_coords(float img_width, float img_height, in calc_tex_coords() argument 409 buf[2] = y / img_height; in calc_tex_coords() 410 buf[3] = buf[2] + reg_height / img_height; in calc_tex_coords()
|
/external/mesa3d/src/mapi/glapi/gen/ |
D | gl_API.dtd | 54 img_height NMTOKEN #IMPLIED attribute 105 img_width / img_height / img_depth / img_extent - name of parameters
|
/external/llvm/test/CodeGen/Mips/ |
D | delay-slot-fill-forward.ll | 18 @img_height = external global i16, align 2 55 store i16 0, i16* @img_height, align 2, !tbaa !5
|
/external/libvncserver/webclients/novnc/include/ |
D | display.js | 151 var img_height = canvas.height < vp.h ? canvas.height : vp.h; 152 saveImg = this._drawCtx.getImageData(0, 0, img_width, img_height);
|
/external/vulkan-validation-layers/tests/ |
D | layer_validation_tests.cpp | 14805 const int32_t img_height = 32; in TEST_F() local 14812 image_create_info.extent.height = img_height; in TEST_F()
|