Lines Matching refs:inputPitch
1003 int inputPitch; member
1014 …har *inputStart = static_cast<const unsigned char*>(input) + (z * rect.inputPitch * rect.inputHeig… in Transfer()
1018 const unsigned char *source = inputStart + y * rect.inputPitch; in Transfer()
1368 …void Image::loadImageData(GLsizei width, GLsizei height, GLsizei depth, int inputPitch, int inputH… in loadImageData() argument
1375 rect.inputPitch = inputPitch; in loadImageData()
1699 …void Image::loadStencilData(GLsizei width, GLsizei height, GLsizei depth, int inputPitch, int inpu… in loadStencilData() argument
1706 rect.inputPitch = inputPitch; in loadStencilData()
1722 GLsizei inputPitch = gl::ComputePitch(inputWidth, format, type, unpackParameters.alignment); in loadImageData() local
1730 loadImageData(width, height, depth, inputPitch, inputHeight, format, type, input, buffer); in loadImageData()
1741 loadStencilData(width, height, depth, inputPitch, inputHeight, format, type, input, stencil); in loadImageData()
1750 int inputPitch = gl::ComputeCompressedPitch(width, internalformat); in loadCompressedData() local
1752 int rows = inputSlice / inputPitch; in loadCompressedData()
1763 GLbyte *source = (GLbyte*)pixels + y * inputPitch + z * inputSlice; in loadCompressedData()
1764 memcpy(dest, source, inputPitch); in loadCompressedData()