Lines Matching refs:blockSize

139 								const IVec2&		blockSize,
150 const int numXBlocks = width / blockSize.x();
152 DE_ASSERT(width % blockSize.x() == 0 && height % blockSize.y() == 0);
162 const IVec2 blockCoord = IVec2(x, y) / blockSize;
418 const IVec2 blockSize = m_renderer->getBlockSize();
420 const int numXBlocksPerImage = de::min(m_context.getRenderTarget().getWidth(), 512) / blockSize.x();
421 const int numYBlocksPerImage = de::min(m_context.getRenderTarget().getHeight(), 512) / blockSize.y();
423 const int imageWidth = numXBlocksPerImage * blockSize.x();
424 const int imageHeight = numYBlocksPerImage * blockSize.y();
437 << ", with block size " << blockSize.x() << "x" << blockSize.y()
464 const bool compareOk = compareBlockImages(referenceFrame, renderedFrame, threshold, blockSize, curNumUsedBlocks, firstFailedBlockCoord, errorMask, maxDiff);
542 const IVec2 blockSize = m_renderer->getBlockSize();
543 m_renderer->initialize(MAX_NUM_BLOCKS_X*blockSize.x(), MAX_NUM_BLOCKS_Y*blockSize.y(), Vec4(1.0f), Vec4(0.0f));
554 const IVec2 blockSize = m_renderer->getBlockSize();
555 const int curRemainderX = m_currentIteration % blockSize.x();
556 const int curRemainderY = m_currentIteration / blockSize.x();
557 const int imageWidth = (MAX_NUM_BLOCKS_X-1)*blockSize.x() + curRemainderX;
558 const int imageHeight = (MAX_NUM_BLOCKS_Y-1)*blockSize.y() + curRemainderY;
559 const int numBlocksX = deDivRoundUp32(imageWidth, blockSize.x());
560 const int numBlocksY = deDivRoundUp32(imageHeight, blockSize.y());
567 tcu::astc::generateDefaultNormalBlocks((deUint8*)compressed.getData(), totalNumBlocks, blockSize.x(), blockSize.y());
589 << blockSize.x() << "x" << blockSize.y()
604 if (m_currentIteration == 0 && m_currentIteration+1 < blockSize.x()*blockSize.y())
609 if (m_currentIteration >= blockSize.x()*blockSize.y())
611 DE_ASSERT(m_currentIteration == blockSize.x()*blockSize.y());