Lines Matching refs:pixels
3002 void glReadPixels_enc(void *self , GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid* pixels)
3032 stream->readback(pixels, __size_pixels);
3033 if (useChecksum) checksumCalculator->addBuffer(pixels, __size_pixels);
3313 void glTexImage2D_enc(void *self , GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid* pixels)
3321 const unsigned int __size_pixels = ((pixels != NULL) ? glesv2_enc::pixelDataSize(self, width, height, format, type, 0) : 0);
3345 if (pixels != NULL) {
3346 stream->writeFully(pixels, __size_pixels);
3347 if (useChecksum) checksumCalculator->addBuffer(pixels, __size_pixels);
3466 void glTexSubImage2D_enc(void *self , GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid* pixels)
3474 const unsigned int __size_pixels = ((pixels != NULL) ? glesv2_enc::pixelDataSize(self, width, height, format, type, 0) : 0);
3498 if (pixels != NULL) {
3499 stream->writeFully(pixels, __size_pixels);
3500 if (useChecksum) checksumCalculator->addBuffer(pixels, __size_pixels);
4441 void glTexImage3DOES_enc(void *self , GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels)
4449 const unsigned int __size_pixels = ((pixels != NULL) ? glesv2_enc::pixelDataSize3D(self, width, height, depth, format, type, 0) : 0);
4474 if (pixels != NULL) {
4475 stream->writeFully(pixels, __size_pixels);
4476 if (useChecksum) checksumCalculator->addBuffer(pixels, __size_pixels);
4483 void glTexSubImage3DOES_enc(void *self , GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels)
4491 const unsigned int __size_pixels = ((pixels != NULL) ? glesv2_enc::pixelDataSize3D(self, width, height, depth, format, type, 0) : 0);
4517 if (pixels != NULL) {
4518 stream->writeFully(pixels, __size_pixels);
4519 if (useChecksum) checksumCalculator->addBuffer(pixels, __size_pixels);