1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_GPU_WEBGL_IMAGE_CONVERSION_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_GPU_WEBGL_IMAGE_CONVERSION_H_
#include <optional>
#include "base/memory/scoped_refptr.h"
#include "third_party/blink/renderer/platform/graphics/image.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/platform_export.h"
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
#include "third_party/khronos/GLES2/gl2.h"
#include "third_party/khronos/GLES2/gl2ext.h"
#include "third_party/khronos/GLES3/gl3.h"
namespace gfx {
class Size;
}
namespace blink {
class Image;
// Helper functions for texture uploading and pixel readback.
class PLATFORM_EXPORT WebGLImageConversion final {
STATIC_ONLY(WebGLImageConversion);
public:
// Attempt to enumerate all possible native image formats to
// reduce the amount of temporary allocations during texture
// uploading. This enum must be public because it is accessed
// by non-member functions.
// "_S" postfix indicates signed type.
enum DataFormat {
kDataFormatRGBA8 = 0,
kDataFormatRGBA8_S,
kDataFormatRGBA16,
kDataFormatRGBA16_S,
kDataFormatRGBA32,
kDataFormatRGBA32_S,
kDataFormatRGBA16F,
kDataFormatRGBA32F,
kDataFormatRGBA2_10_10_10,
kDataFormatRGB8,
kDataFormatRGB8_S,
kDataFormatRGB16,
kDataFormatRGB16_S,
kDataFormatRGB32,
kDataFormatRGB32_S,
kDataFormatRGB16F,
kDataFormatRGB32F,
kDataFormatBGR8,
kDataFormatBGRA8,
kDataFormatARGB8,
kDataFormatABGR8,
kDataFormatRGBA5551,
kDataFormatRGBA4444,
kDataFormatRGB565,
kDataFormatRGB10F11F11F,
kDataFormatRGB5999,
kDataFormatRG8,
kDataFormatRG8_S,
kDataFormatRG16,
kDataFormatRG16_S,
kDataFormatRG32,
kDataFormatRG32_S,
kDataFormatRG16F,
kDataFormatRG32F,
kDataFormatR8,
kDataFormatR8_S,
kDataFormatR16,
kDataFormatR16_S,
kDataFormatR32,
kDataFormatR32_S,
kDataFormatR16F,
kDataFormatR32F,
kDataFormatRA8,
kDataFormatRA16F,
kDataFormatRA32F,
kDataFormatAR8,
kDataFormatA8,
kDataFormatA16F,
kDataFormatA32F,
kDataFormatD16,
kDataFormatD32,
kDataFormatD32F,
kDataFormatDS24_8,
kDataFormatNumFormats
};
enum ChannelBits {
kChannelRed = 1,
kChannelGreen = 2,
kChannelBlue = 4,
kChannelAlpha = 8,
kChannelDepth = 16,
kChannelStencil = 32,
kChannelRG = kChannelRed | kChannelGreen,
kChannelRGB = kChannelRed | kChannelGreen | kChannelBlue,
kChannelRGBA = kChannelRGB | kChannelAlpha,
kChannelDepthStencil = kChannelDepth | kChannelStencil,
};
// Possible alpha operations that may need to occur during
// pixel packing. FIXME: kAlphaDoUnmultiply is lossy and must
// be removed.
enum AlphaOp {
kAlphaDoNothing = 0,
kAlphaDoPremultiply = 1,
kAlphaDoUnmultiply = 2
};
struct PLATFORM_EXPORT PixelStoreParams final {
PixelStoreParams();
GLint alignment;
GLint row_length;
GLint image_height;
GLint skip_pixels;
GLint skip_rows;
GLint skip_images;
};
// Convert a GL format and GL type to a DataFormat. This will return
// kDataFormatNumFormats if combination is invalid.
static DataFormat GetDataFormat(GLenum format, GLenum type);
// Convert a DataFormat to an SkColorType. If there is no exactly matching
// SkColorType, return the specified `default_color_type`.
static SkColorType DataFormatToSkColorType(DataFormat data_format,
SkColorType default_color_type);
// Convert an SkColorType to the most appropriate DataFormat.
static DataFormat SkColorTypeToDataFormat(SkColorType color_type);
// Computes the components per pixel and bytes per component
// for the given format and type combination. Returns false if
// either was an invalid enum.
static bool ComputeFormatAndTypeParameters(GLenum format,
GLenum type,
unsigned* components_per_pixel,
unsigned* bytes_per_component);
// Computes the image size in bytes. If paddingInBytes is not null, padding
// is also calculated in return. Returns NO_ERROR if succeed, otherwise
// return the suggested GL error indicating the cause of the failure:
// INVALID_VALUE if width/height/depth is negative or overflow happens.
// INVALID_ENUM if format/type is illegal.
// Note that imageSizeBytes does not include skipSizeInBytes, but it is
// guaranteed if NO_ERROR is returned, adding the two sizes won't cause
// overflow.
// |paddingInBytes| and |skipSizeInBytes| are optional and can be null, but
// the overflow validation is still performed.
static GLenum ComputeImageSizeInBytes(GLenum format,
GLenum type,
GLsizei width,
GLsizei height,
GLsizei depth,
const PixelStoreParams&,
unsigned* image_size_in_bytes,
unsigned* padding_in_bytes,
unsigned* skip_size_in_bytes);
// Check if the format is one of the formats from ImageData DOM elements, or
// ImageBitmap. The format from ImageData is always RGBA8. The formats from
// DOM elements vary with Graphics ports, but can only be RGBA8 or BGRA8.
// ImageBitmap can use RGBA16F when colorspace conversion is performed.
ALWAYS_INLINE static bool SrcFormatComesFromDOMElementOrImageData(
DataFormat src_format) {
return src_format == kDataFormatBGRA8 || src_format == kDataFormatRGBA8 ||
src_format == kDataFormatRGBA16F;
}
// The input can be either format or internalformat.
static unsigned GetChannelBitsByFormat(GLenum);
// The Following functions are implemented in
// GraphicsContext3DImagePacking.cpp.
// Packs the contents of the given SkPixmap into the passed Vector according
// to the given format and type, and obeying the flipY and AlphaOp flags.
// Returns true upon success.
static bool PackSkPixmap(const SkPixmap* source,
GLenum format,
GLenum type,
bool flip_y,
AlphaOp,
const gfx::Rect& source_image_sub_rectangle,
int depth,
unsigned source_unpack_alignment,
int unpack_image_height,
Vector<uint8_t>& data);
// Packs the contents of the given Image, which is passed in |pixels|, into
// the passed Vector according to the given format and type, and obeying the
// flipY and AlphaOp flags. Returns true upon success.
static bool PackImageData(Image*,
const void* pixels,
GLenum format,
GLenum type,
bool flip_y,
AlphaOp,
DataFormat source_format,
unsigned source_image_width,
unsigned source_image_height,
const gfx::Rect& source_image_sub_rectangle,
int depth,
unsigned source_unpack_alignment,
int unpack_image_height,
Vector<uint8_t>& data);
// Extracts the contents of the given ImageData into the passed Vector,
// packing the pixel data according to the given format and type,
// and obeying the flipY and premultiplyAlpha flags. Returns true
// upon success.
static bool ExtractImageData(const void* image_data,
DataFormat source_data_format,
const gfx::Size& image_data_size,
const gfx::Rect& source_image_sub_rectangle,
int depth,
int unpack_image_height,
GLenum format,
GLenum type,
bool flip_y,
bool premultiply_alpha,
Vector<uint8_t>& data);
// Helper function which extracts the user-supplied texture
// data, applying the flipY and premultiplyAlpha parameters.
// If the data is not tightly packed according to the passed
// unpackAlignment, the output data will be tightly packed.
// Returns true if successful, false if any error occurred.
static bool ExtractTextureData(unsigned width,
unsigned height,
GLenum format,
GLenum type,
const PixelStoreParams& unpack_params,
bool flip_y,
bool premultiply_alpha,
const void* pixels,
Vector<uint8_t>& data);
// End GraphicsContext3DImagePacking.cpp functions
private:
friend class WebGLImageConversionTest;
// Helper for packImageData/extractImageData/extractTextureData, which
// implement packing of pixel data into the specified OpenGL destination
// format and type. A sourceUnpackAlignment of zero indicates that the source
// data is tightly packed. Non-zero values may take a slow path. Destination
// data will have no gaps between rows. Implemented in
// GraphicsContext3DImagePacking.cpp.
static bool PackPixels(const void* source_data,
DataFormat source_data_format,
unsigned source_data_width,
unsigned source_data_height,
const gfx::Rect& source_data_sub_rectangle,
int depth,
unsigned source_unpack_alignment,
int unpack_image_height,
unsigned destination_format,
unsigned destination_type,
AlphaOp,
void* destination_data,
bool flip_y);
static void UnpackPixels(const uint16_t* source_data,
DataFormat source_data_format,
unsigned pixels_per_row,
uint8_t* destination_data);
static void PackPixels(const uint8_t* source_data,
DataFormat source_data_format,
unsigned pixels_per_row,
uint8_t* destination_data);
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_GPU_WEBGL_IMAGE_CONVERSION_H_
|