Home
last modified time | relevance | path

Searched refs:unpackInfo (Results 1 – 7 of 7) sorted by relevance

/external/swiftshader/src/OpenGL/libGLESv2/
DTexture.h122 …void setImage(GLenum format, GLenum type, const egl::Image::UnpackInfo& unpackInfo, const void *pi…
123 …sizei depth, GLenum format, GLenum type, const egl::Image::UnpackInfo& unpackInfo, const void *pix…
171 …izei height, GLenum format, GLenum type, const egl::Image::UnpackInfo& unpackInfo, const void *pix…
173 …izei height, GLenum format, GLenum type, const egl::Image::UnpackInfo& unpackInfo, const void *pix…
230 …izei height, GLenum format, GLenum type, const egl::Image::UnpackInfo& unpackInfo, const void *pix…
233 …izei height, GLenum format, GLenum type, const egl::Image::UnpackInfo& unpackInfo, const void *pix…
291 …sizei depth, GLenum format, GLenum type, const egl::Image::UnpackInfo& unpackInfo, const void *pix…
293 …sizei depth, GLenum format, GLenum type, const egl::Image::UnpackInfo& unpackInfo, const void *pix…
DTexture.cpp409 void Texture::setImage(GLenum format, GLenum type, const egl::Image::UnpackInfo& unpackInfo, const … in setImage() argument
414 …ImageData(0, 0, 0, image->getWidth(), image->getHeight(), depth, format, type, unpackInfo, pixels); in setImage()
427 …sizei depth, GLenum format, GLenum type, const egl::Image::UnpackInfo& unpackInfo, const void *pix… in subImage() argument
451 …image->loadImageData(xoffset, yoffset, zoffset, width, height, depth, format, type, unpackInfo, pi… in subImage()
640 …izei height, GLenum format, GLenum type, const egl::Image::UnpackInfo& unpackInfo, const void *pix… in setImage() argument
654 Texture::setImage(format, type, unpackInfo, pixels, image[level]); in setImage()
725 …izei height, GLenum format, GLenum type, const egl::Image::UnpackInfo& unpackInfo, const void *pix… in subImage() argument
727 …Texture::subImage(xoffset, yoffset, 0, width, height, 1, format, type, unpackInfo, pixels, image[l… in subImage()
1158 …izei height, GLenum format, GLenum type, const egl::Image::UnpackInfo& unpackInfo, const void *pix… in subImage() argument
1160 …Texture::subImage(xoffset, yoffset, 0, width, height, 1, format, type, unpackInfo, pixels, image[C… in subImage()
[all …]
DContext.cpp158 mState.unpackInfo.alignment = 4; in Context()
164 mState.unpackInfo.rowLength = 0; in Context()
165 mState.unpackInfo.imageHeight = 0; in Context()
166 mState.unpackInfo.skipPixels = 0; in Context()
167 mState.unpackInfo.skipRows = 0; in Context()
168 mState.unpackInfo.skipImages = 0; in Context()
842 mState.unpackInfo.alignment = alignment; in setUnpackAlignment()
847 return mState.unpackInfo; in getUnpackInfo()
877 mState.unpackInfo.rowLength = rowLength; in setUnpackRowLength()
882 mState.unpackInfo.imageHeight = imageHeight; in setUnpackImageHeight()
[all …]
DContext.h416 egl::Image::UnpackInfo unpackInfo; member
/external/swiftshader/src/OpenGL/libGLES_CM/
DTexture.cpp234 egl::Image::UnpackInfo unpackInfo; in setImage() local
235 unpackInfo.alignment = unpackAlignment; in setImage()
236 …image->loadImageData(0, 0, 0, image->getWidth(), image->getHeight(), 1, format, type, unpackInfo, … in setImage()
272 egl::Image::UnpackInfo unpackInfo; in subImage() local
273 unpackInfo.alignment = unpackAlignment; in subImage()
274 image->loadImageData(xoffset, yoffset, 0, width, height, 1, format, type, unpackInfo, pixels); in subImage()
/external/swiftshader/src/OpenGL/common/
DImage.cpp1223 …i height, GLsizei depth, GLenum format, GLenum type, const UnpackInfo& unpackInfo, const void *inp… in loadImageData() argument
1225 GLsizei inputWidth = (unpackInfo.rowLength == 0) ? width : unpackInfo.rowLength; in loadImageData()
1226 GLsizei inputPitch = ComputePitch(inputWidth, format, type, unpackInfo.alignment); in loadImageData()
1227 GLsizei inputHeight = (unpackInfo.imageHeight == 0) ? height : unpackInfo.imageHeight; in loadImageData()
1228 …ormat, type, inputWidth, inputHeight, unpackInfo.alignment, unpackInfo.skipImages, unpackInfo.skip… in loadImageData()
DImage.hpp163 …i height, GLsizei depth, GLenum format, GLenum type, const UnpackInfo& unpackInfo, const void *inp…