Home
last modified time | relevance | path

Searched refs:RGBA_SIZE_PER_PIXEL (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/multimedia/image_effect/frameworks/native/efilter/filterimpl/brightness/
H A Dgpu_brightness_algo.cpp144 dst->bufferInfo_->rowStride_ = tex->Width() * RGBA_SIZE_PER_PIXEL; in OnApplyRGBA8888()
145 dst->bufferInfo_->len_ = tex->Width() * tex->Height() * RGBA_SIZE_PER_PIXEL; in OnApplyRGBA8888()
/ohos5.0/foundation/multimedia/image_effect/frameworks/native/efilter/filterimpl/contrast/
H A Dgpu_contrast_algo.cpp145 dst->bufferInfo_->rowStride_ = tex->Width() * RGBA_SIZE_PER_PIXEL; in OnApplyRGBA8888()
146 dst->bufferInfo_->len_ = tex->Width() * tex->Height() * RGBA_SIZE_PER_PIXEL; in OnApplyRGBA8888()
/ohos5.0/foundation/multimedia/image_effect/frameworks/native/render_environment/core/
H A Drender_default_data.h24 constexpr const int RGBA_SIZE_PER_PIXEL = 4; variable
/ohos5.0/foundation/multimedia/image_effect/frameworks/native/render_environment/
H A Drender_environment.cpp305 auto data = std::make_unique<unsigned char[]>(width * height * RGBA_SIZE_PER_PIXEL); in ConvertFromYUVToRGB()
340 auto rgbData = std::make_unique<unsigned char[]>(width * height * RGBA_SIZE_PER_PIXEL); in ConvertFromRGBToYUV()
348 uint32_t rgb_index = i * width * RGBA_SIZE_PER_PIXEL + j * RGBA_SIZE_PER_PIXEL; in ConvertFromRGBToYUV()
446 …ixelsFromTex(source, output->buffer_, w, h, output->bufferInfo_->rowStride_ / RGBA_SIZE_PER_PIXEL); in ConvertTextureToBuffer()