HomeSort by relevance Sort by last modified time
    Searched refs:inputPitch (Results 1 - 7 of 7) sorted by null

  /external/swiftshader/src/OpenGL/libGL/
Image.hpp 61 void loadAlphaImageData(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, int inputPitch, const void *input, void *buffer) const;
62 void loadAlphaFloatImageData(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, int inputPitch, const void *input, void *buffer) const;
63 void loadAlphaHalfFloatImageData(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, int inputPitch, const void *input, void *buffer) const;
64 void loadLuminanceImageData(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, int inputPitch, const void *input, void *buffer) const;
65 void loadLuminanceFloatImageData(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, int inputPitch, const void *input, void *buffer) const;
66 void loadLuminanceHalfFloatImageData(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, int inputPitch, const void *input, void *buffer) const;
67 void loadLuminanceAlphaImageData(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, int inputPitch, const void *input, void *buffer) const;
68 void loadLuminanceAlphaFloatImageData(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, int inputPitch, const void *input, void *buffer) const;
69 void loadLuminanceAlphaHalfFloatImageData(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, int inputPitch, const void *input, void *buffer) const;
70 void loadRGBUByteImageData(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, int inputPitch, const void *input, void *buffer) const
    [all...]
Image.cpp 244 GLsizei inputPitch = ComputePitch(width, format, type, unpackAlignment);
256 loadAlphaImageData(xoffset, yoffset, width, height, inputPitch, input, buffer);
259 loadLuminanceImageData(xoffset, yoffset, width, height, inputPitch, input, buffer);
262 loadLuminanceAlphaImageData(xoffset, yoffset, width, height, inputPitch, input, buffer);
265 loadRGBUByteImageData(xoffset, yoffset, width, height, inputPitch, input, buffer);
268 loadRGBAUByteImageData(xoffset, yoffset, width, height, inputPitch, input, buffer);
271 loadBGRAImageData(xoffset, yoffset, width, height, inputPitch, input, buffer);
280 loadRGB565ImageData(xoffset, yoffset, width, height, inputPitch, input, buffer);
289 loadRGBA4444ImageData(xoffset, yoffset, width, height, inputPitch, input, buffer);
298 loadRGBA5551ImageData(xoffset, yoffset, width, height, inputPitch, input, buffer)
    [all...]
Context.cpp     [all...]
  /external/swiftshader/src/OpenGL/common/
Image.cpp 404 void LoadImageData(GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, int inputPitch, int inputHeight, int destPitch, GLsizei destHeight, const void *input, void *buffer)
408 const unsigned char *inputStart = static_cast<const unsigned char*>(input) + (z * inputPitch * inputHeight);
412 const unsigned char *source = inputStart + y * inputPitch;
    [all...]
Image.hpp 208 void loadD24S8ImageData(GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, int inputPitch, int inputHeight, const void *input, void *buffer);
209 void loadD32FS8ImageData(GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, int inputPitch, int inputHeight, const void *input, void *buffer);
  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
GLESTextureUtils.cpp 222 GLsizei inputPitch = computePitch(inputWidth, format, type, unpackAlignment);
225 ALOGV("%s: input idim %d %d %d w p h %d %d %d:", __FUNCTION__, width, height, depth, inputWidth, inputPitch, inputHeight);
228 int endVal = startVal + inputPitch * inputHeight * depth;
  /external/swiftshader/src/OpenGL/libGLES_CM/
Context.cpp     [all...]

Completed in 84 milliseconds