Home
last modified time | relevance | path

Searched refs:computePixelBytes (Results 1 – 5 of 5) sorted by relevance

/external/angle/src/libANGLE/renderer/gl/
DFramebufferGL.cpp361 GLuint originalReadFormatPixelBytes = glFormatOriginal.computePixelBytes(type); in RearrangeEXTTextureNorm16Pixels()
1504 glFormat.computePixelBytes(type), pixels); in readPixelsRowByRow()
1527 glFormat.computePixelBytes(type), pack, originalReadFormatPixels, workaround.Pixels()); in readPixelsRowByRow()
1559 glFormat.computePixelBytes(type), pixels); in readPixelsAllAtOnce()
1589 glFormat.computePixelBytes(type), pack, originalReadFormatPixels, workaround.Pixels()); in readPixelsAllAtOnce()
Drenderergl_utils.cpp2579 CheckedNumeric<size_t> checkedPixelBytes = glFormat.computePixelBytes(type); in ShouldApplyLastRowPaddingWorkaround()
/external/angle/src/libANGLE/
Dformatutils.h139 GLuint computePixelBytes(GLenum formatType) const;
Dformatutils.cpp1481 GLuint InternalFormat::computePixelBytes(GLenum formatType) const in computePixelBytes() function in gl::InternalFormat
1532 CheckedNumeric<GLuint> checkedRowBytes = checkedWidth * computePixelBytes(formatType); in computeRowPitch()
1644 CheckedNumeric<GLuint> checkedPixelBytes(computePixelBytes(formatType)); in computeSkipBytes()
1685 CheckedNumeric<GLuint> bytes = computePixelBytes(formatType); in computePackUnpackEndByte()
/external/angle/src/libANGLE/renderer/vulkan/
DTextureVk.cpp489 pixelSize = formatInfo.computePixelBytes(type); in setSubImageImpl()