Searched defs:upload (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/libs/hwui/
H A DPixelBuffer.cpp42 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) override;
71 void CpuPixelBuffer::upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) { function in class:android::uirenderer::CpuPixelBuffer
89 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) override;
149 void GpuPixelBuffer::upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) { function in class:android::uirenderer::GpuPixelBuffer
H A DPixelBuffer.h36 * Before the buffer can be used by the GPU, for instance to upload
43 * using a PixelBuffer to upload to a texture.
112 virtual void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) = 0;
122 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height) { function in class:android::uirenderer::PixelBuffer
123 upload(x, y, width, height, getOffset(x, y));
H A DTexture.cpp104 void Texture::upload(GLint internalformat, uint32_t width, uint32_t height, function in class:android::uirenderer::Texture
202 void Texture::upload(const SkBitmap& bitmap) { function in class:android::uirenderer::Texture
/frameworks/base/libs/hwui/font/
H A DCacheTexture.cpp125 // as glTexSubImage2D(). This allows us to upload a sub-rectangle of a texture.
126 // With OpenGL ES 2.0 we have to upload entire stripes instead.
188 bool CacheTexture::upload() { function in class:android::uirenderer::CacheTexture
202 mPixelBuffer->upload(x, y, width, height);

Completed in 158 milliseconds