Home | History | Annotate | Download | only in hwui

Lines Matching refs:format

60      * Creates a new PixelBuffer object with the specified format and
67 static PixelBuffer* create(GLenum format, uint32_t width, uint32_t height,
74 * Returns the format of this render buffer.
155 * Returns the number of bytes per pixel in the specified format.
161 static uint32_t formatSize(GLenum format) {
162 switch (format) {
172 * Returns the alpha channel offset in the specified format.
178 static uint32_t formatAlphaOffset(GLenum format) {
179 switch (format) {
186 ALOGE("unsupported format: %d",format);
192 * Creates a new render buffer in the specified format and dimensions.
193 * The format must be GL_ALPHA or GL_RGBA.
195 PixelBuffer(GLenum format, uint32_t width, uint32_t height):
196 mFormat(format), mWidth(width), mHeight(height), mAccessMode(kAccessMode_None) {