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

  /external/eigen/demos/mandelbrot/
mandelbrot.cpp 31 template<typename Real> void MandelbrotThread::render(int img_width, int img_height)
38 const int alignedWidth = (img_width/packetSize)*packetSize;
41 const double yradius = xradius * img_height / img_width;
45 Vector2 step(2*widget->xradius/img_width, 2*yradius/img_height);
50 int pix = y * img_width;
105 for(int x = alignedWidth; x < img_width; x++, pix++)
117 int img_width = widget->width()/widget->draft; local
122 render<float>(img_width, img_height);
124 render<double>(img_width, img_height);
  /external/pdfium/core/fxcodec/codec/
fx_codec_progress.cpp 692 int32_t img_width = m_GifFrameRect.Width(); local
695 for (int i = 0; i < img_width; i++) {
710 memcpy(m_pDecodeBuf + left, row_buf, img_width);
    [all...]

Completed in 170 milliseconds