Home
last modified time | relevance | path

Searched refs:GetRowPtr (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/arkui/ui_lite/frameworks/render/
H A Drender_buffer.h106 uint8_t* GetRowPtr(int32_t y) in GetRowPtr() function
114 const uint8_t* GetRowPtr(int32_t y) const in GetRowPtr() function
124 return RowData(0, width_ - 1, GetRowPtr(y)); in GetRow()
H A Drender_pixfmt_rgba_blend.h259 virtual inline uint8_t* GetRowPtr(int32_t y) in GetRowPtr() function
261 return rBuf_->GetRowPtr(y); in GetRowPtr()
270 virtual inline const uint8_t* GetRowPtr(int32_t y) const in GetRowPtr() function
272 return rBuf_->GetRowPtr(y); in GetRowPtr()
288 return rBuf_->GetRowPtr(y) + sizeof(uint8_t) * (x * PIX_STEP); in PixPtr()
293 return rBuf_->GetRowPtr(y) + sizeof(uint8_t) * (x * PIX_STEP); in PixPtr()
304 … return reinterpret_cast<PixelColorType*>(rBuf_->GetRowPtr(y) + sizeof(uint8_t) * (x * PIX_STEP)); in PixValuePtr()
315 uint8_t* pixelPtr = rBuf_->GetRowPtr(y); in PixValuePtr()