Lines Matching refs:blockHeight
456 inline void setASTCErrorColorBlock (void* dst, int blockWidth, int blockHeight, bool isSRGB) in setASTCErrorColorBlock() argument
462 for (int i = 0; i < blockWidth*blockHeight; i++) in setASTCErrorColorBlock()
474 for (int i = 0; i < blockWidth*blockHeight; i++) in setASTCErrorColorBlock()
484 …ExtentBlock (void* dst, const Block128& blockData, int blockWidth, int blockHeight, bool isSRGB, b… in decodeVoidExtentBlock() argument
495 setASTCErrorColorBlock(dst, blockWidth, blockHeight, isSRGB); in decodeVoidExtentBlock()
510 for (int i = 0; i < blockWidth*blockHeight; i++) in decodeVoidExtentBlock()
526 for (int i = 0; i < blockWidth*blockHeight; i++) in decodeVoidExtentBlock()
532 for (int i = 0; i < blockWidth*blockHeight; i++) in decodeVoidExtentBlock()
1270 …r* dst, const deUint32 (&unquantizedWeights) [64], int blockWidth, int blockHeight, const ASTCBloc… in interpolateWeights() argument
1274 const deUint32 scaleY = (1024 + blockHeight/2) / (blockHeight-1); in interpolateWeights()
1278 for (int texelY = 0; texelY < blockHeight; texelY++) in interpolateWeights()
1319 … (TexelWeightPair* dst, const Block128& blockData, int blockWidth, int blockHeight, const ASTCBloc… in computeTexelWeights() argument
1331 interpolateWeights(dst, unquantizedWeights, blockWidth, blockHeight, blockMode); in computeTexelWeights()
1409 …int numPartitions, int blockWidth, int blockHeight, bool isSRGB, bool isLDRMode, const deUint32* c… in setTexelColors() argument
1411 const bool smallBlock = blockWidth*blockHeight < 31; in setTexelColors()
1418 for (int texelY = 0; texelY < blockHeight; texelY++) in setTexelColors()
1486 …mpressBlock (void* dst, const Block128& blockData, int blockWidth, int blockHeight, bool isSRGB, b… in decompressBlock() argument
1498 setASTCErrorColorBlock(dst, blockWidth, blockHeight, isSRGB); in decompressBlock()
1505 return decodeVoidExtentBlock(dst, blockData, blockWidth, blockHeight, isSRGB, isLDR); in decompressBlock()
1519 blockMode.weightGridHeight > blockHeight || in decompressBlock()
1522 setASTCErrorColorBlock(dst, blockWidth, blockHeight, isSRGB); in decompressBlock()
1548 setASTCErrorColorBlock(dst, blockWidth, blockHeight, isSRGB); in decompressBlock()
1561 computeTexelWeights(&texelWeights[0], blockData, blockWidth, blockHeight, blockMode); in decompressBlock()
1568 … &texelWeights[0], ccs, partitionIndexSeed, numPartitions, blockWidth, blockHeight, isSRGB, isLDR,… in decompressBlock()
1576 const int blockHeight = dst.getHeight(); in decompress() local
1590 for (int i = 0; i < blockHeight; i++) in decompress()
1601 for (int i = 0; i < blockHeight; i++) in decompress()
1882 …c inline bool isValidBlockParams (const NormalBlockParams& params, int blockWidth, int blockHeight) in isValidBlockParams() argument
1892 params.weightGridHeight <= blockHeight && in isValidBlockParams()
2233 …NormalBlock (const NormalBlockParams& blockParams, int blockWidth, int blockHeight, const NormalBl… in generateNormalBlock() argument
2235 DE_ASSERT(isValidBlockParams(blockParams, blockWidth, blockHeight)); in generateNormalBlock()
2237 DE_UNREF(blockHeight); // \note For non-debug builds. in generateNormalBlock()
2907 void generateDummyNormalBlocks (deUint8* dst, size_t numBlocks, int blockWidth, int blockHeight) in generateDummyNormalBlocks() argument
2929 …generateNormalBlock(blockParams, blockWidth, blockHeight, iseInputs).assignToMemory(dst + blockNdx… in generateDummyNormalBlocks()