Searched refs:blockHeight (Results 1 - 21 of 21) sorted by relevance

/external/chromium_org/third_party/angle/samples/dds_to_header/
H A Dmain.cpp58 std::size_t blockHeight = 0; local
64 blockHeight = 1;
117 blockHeight = 4;
124 blockHeight = 4;
131 blockHeight = 4;
138 blockHeight = 1;
144 blockHeight = 1;
150 blockHeight = 1;
156 blockHeight = 1;
162 blockHeight
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A Dformatutils9.h33 GLuint blockHeight; member in struct:rx::d3d9::D3DFormat
H A Drenderer9_utils.cpp513 GLuint numBlocksHight = (height + d3dFormatInfo.blockHeight - 1) / d3dFormatInfo.blockHeight;
522 // Don't expand the size of full textures that are at least (blockWidth x blockHeight) already.
524 *requestHeight < static_cast<GLsizei>(d3dFormatInfo.blockHeight))
526 while (*requestWidth % d3dFormatInfo.blockWidth != 0 || *requestHeight % d3dFormatInfo.blockHeight != 0)
H A Dformatutils9.cpp59 blockHeight(0),
74 GLuint blockHeight, GLenum internalFormat, MipGenerationFunction mipFunc,
80 info.blockHeight = blockHeight;
73 InsertD3DFormatInfo(D3D9FormatInfoMap *map, D3DFORMAT format, GLuint bits, GLuint blockWidth, GLuint blockHeight, GLenum internalFormat, MipGenerationFunction mipFunc, ColorReadFunction colorReadFunc) argument
H A DImage9.cpp109 unsigned int rows = desc.Height / d3dFormatInfo.blockHeight;
111 unsigned int bytes = d3d9::ComputeBlockSize(desc.Format, desc.Width, d3dFormatInfo.blockHeight);
429 ASSERT(yoffset % d3d9::GetD3DFormatInfo(d3d9FormatInfo.texFormat).blockHeight == 0);
/external/chromium_org/third_party/skia/gm/
H A Detc1bitmap.cpp38 int blockHeight = (origH + 3) >> 2; local
41 if (blockWidth < 2 || blockHeight < 2) {
46 int newHeight = (blockHeight - 1) << 2;
57 for (int j = 0; j < blockHeight - 1; ++j) {
/external/skia/gm/
H A Detc1bitmap.cpp38 int blockHeight = (origH + 3) >> 2; local
41 if (blockWidth < 2 || blockHeight < 2) {
46 int newHeight = (blockHeight - 1) << 2;
57 for (int j = 0; j < blockHeight - 1; ++j) {
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A Dformatutils11.h31 GLuint blockHeight; member in struct:rx::d3d11::DXGIFormat
H A Drenderer11_utils.cpp996 // Don't expand the size of full textures that are at least (blockWidth x blockHeight) already.
998 *requestHeight < static_cast<GLsizei>(dxgiFormatInfo.blockHeight))
1000 while (*requestWidth % dxgiFormatInfo.blockWidth != 0 || *requestHeight % dxgiFormatInfo.blockHeight != 0)
H A DImage11.cpp289 GLuint outputBlockHeight = dxgiFormatInfo.blockHeight;
H A Dformatutils11.cpp181 blockHeight(0),
200 void AddDXGIFormat(DXGIFormatInfoMap *map, DXGI_FORMAT dxgiFormat, GLuint pixelBits, GLuint blockWidth, GLuint blockHeight, argument
206 info.blockHeight = blockHeight;
H A DTextureStorage11.cpp330 srcBox.bottom = copyArea.y + roundUp((unsigned int)height, dxgiFormatInfo.blockHeight);
/external/deqp/modules/gles3/functional/
H A Des3fASTCDecompressionCases.hpp117 static void generateDefaultBlockData (deUint8* dst, int numBlocks, int blockWidth, int blockHeight);
H A Des3fASTCDecompressionCases.cpp440 static inline bool isValidBlockParams (const NormalBlockParams& params, int blockWidth, int blockHeight)
450 params.weightGridHeight <= blockHeight &&
829 static AssignBlock128 generateNormalBlock (const NormalBlockParams& blockParams, int blockWidth, int blockHeight, const NormalBlockISEInputs& iseInputs)
831 DE_ASSERT(isValidBlockParams(blockParams, blockWidth, blockHeight));
833 DE_UNREF(blockHeight); // \note For non-debug builds.
1997 void ASTCBlockSizeRemainderCase2D::generateDefaultBlockData (deUint8* dst, int numBlocks, int blockWidth, int blockHeight)
2021 generateNormalBlock(blockParams, blockWidth, blockHeight, iseInputs).assignToMemory(dst + blockNdx*ASTC_BLOCK_SIZE_BYTES);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dradeon_mipmap_tree.c47 unsigned blockWidth, blockHeight; local
50 _mesa_get_format_block_size(format, &blockWidth, &blockHeight);
81 unsigned blockWidth, blockHeight; local
83 _mesa_get_format_block_size(format, &blockWidth, &blockHeight);
85 return rowStride * ((height + blockHeight - 1) / blockHeight) * depth;
454 uint32_t blockWidth, blockHeight; local
455 _mesa_get_format_block_size(image->base.Base.TexFormat, &blockWidth, &blockHeight);
456 rows = (rows + blockHeight - 1) / blockHeight;
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_mipmap_tree.c47 unsigned blockWidth, blockHeight; local
50 _mesa_get_format_block_size(format, &blockWidth, &blockHeight);
81 unsigned blockWidth, blockHeight; local
83 _mesa_get_format_block_size(format, &blockWidth, &blockHeight);
85 return rowStride * ((height + blockHeight - 1) / blockHeight) * depth;
454 uint32_t blockWidth, blockHeight; local
455 _mesa_get_format_block_size(image->base.Base.TexFormat, &blockWidth, &blockHeight);
456 rows = (rows + blockHeight - 1) / blockHeight;
[all...]
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_mipmap_tree.c47 unsigned blockWidth, blockHeight; local
50 _mesa_get_format_block_size(format, &blockWidth, &blockHeight);
81 unsigned blockWidth, blockHeight; local
83 _mesa_get_format_block_size(format, &blockWidth, &blockHeight);
85 return rowStride * ((height + blockHeight - 1) / blockHeight) * depth;
454 uint32_t blockWidth, blockHeight; local
455 _mesa_get_format_block_size(image->base.Base.TexFormat, &blockWidth, &blockHeight);
456 rows = (rows + blockHeight - 1) / blockHeight;
[all...]
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_mipmap_tree.c47 unsigned blockWidth, blockHeight; local
50 _mesa_get_format_block_size(format, &blockWidth, &blockHeight);
81 unsigned blockWidth, blockHeight; local
83 _mesa_get_format_block_size(format, &blockWidth, &blockHeight);
85 return rowStride * ((height + blockHeight - 1) / blockHeight) * depth;
454 uint32_t blockWidth, blockHeight; local
455 _mesa_get_format_block_size(image->base.Base.TexFormat, &blockWidth, &blockHeight);
456 rows = (rows + blockHeight - 1) / blockHeight;
[all...]
/external/deqp/framework/common/
H A DtcuCompressedTexture.cpp1466 static inline void setASTCErrorColorBlock (void* dst, int blockWidth, int blockHeight, bool isSRGB) argument
1472 for (int i = 0; i < blockWidth*blockHeight; i++)
1484 for (int i = 0; i < blockWidth*blockHeight; i++)
1494 static void decodeVoidExtentBlock (void* dst, const Block128& blockData, int blockWidth, int blockHeight, bool isSRGB, bool isLDRMode) argument
1505 setASTCErrorColorBlock(dst, blockWidth, blockHeight, isSRGB);
1520 for (int i = 0; i < blockWidth*blockHeight; i++)
1536 for (int i = 0; i < blockWidth*blockHeight; i++)
1542 for (int i = 0; i < blockWidth*blockHeight; i++)
2309 static void interpolateWeights (TexelWeightPair* dst, const deUint32* unquantizedWeights, int blockWidth, int blockHeight, const ASTCBlockMode& blockMode)
2313 const deUint32 scaleY = (1024 + blockHeight/
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
H A DBreakingContextInlineHeaders.h207 LayoutUnit blockHeight = block->logicalHeight(); local
212 toRenderInline(containerBlock)->layer()->setStaticInlinePosition(block->startAlignedOffsetForLine(blockHeight, false));
213 toRenderInline(containerBlock)->layer()->setStaticBlockPosition(blockHeight);
219 block->updateStaticInlinePositionForChild(child, blockHeight);
220 child->layer()->setStaticBlockPosition(blockHeight);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A Dloadimage.h166 template <size_t blockWidth, size_t blockHeight, size_t blockSize>

Completed in 1121 milliseconds