Home
last modified time | relevance | path

Searched refs:textBlob_ (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/texgine/texgine_drawing/src/
H A Dtexgine_text_blob.cpp23 return textBlob_; in GetTextBlob()
28 textBlob_ = textBlob; in SetTextBlob()
33 RSTextBlob::GetDrawingGlyphIDforTextBlob(textBlob_.get(), glyphIds); in GetGlyphIDs()
38 return RSTextBlob::GetDrawingPathforTextBlob(glyphId, textBlob_.get()); in GetPathbyGlyphID()
H A Dtexgine_text_blob.h43 std::shared_ptr<RSTextBlob> textBlob_ = nullptr;
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/drawing_ets/ets/testcase/interface/
H A Dtextblobtest.ts139 private textBlob_: drawing.TextBlob;
144 …this.textBlob_ = drawing.TextBlob.makeFromString(this.text_, this.font_, drawing.TextEncoding.TEXT…
148 this.textBlob_.uniqueID();
150 canvas.drawTextBlob(this.textBlob_, 10, 100);
155 let id = this.textBlob_.uniqueID();
157 let same_id = this.textBlob_.uniqueID();
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/recording/
H A Ddraw_cmd.cpp1272 if (textBlob_ == nullptr) { in Playback()
1283 auto bounds = textBlob_->Bounds(); in Playback()
1294 canvas->DrawTextBlob(textBlob_.get(), x_, y_); in Playback()
1305 auto textBlobBounds = textBlob_->Bounds(); in GetOffScreenSurfaceAndCanvas()
1326 canvas->DrawTextBlob(textBlob_.get(), x_, y_); in DrawHighContrastEnabled()
1367 …offScreen ? canvas->DrawTextBlob(textBlob_.get(), 0, 0) : canvas->DrawTextBlob(textBlob_.get(), x_… in DrawHighContrast()
1374 …offScreen ? canvas->DrawTextBlob(textBlob_.get(), 0, 0) : canvas->DrawTextBlob(textBlob_.get(), x_… in DrawHighContrast()
1435 if (!textBlob_) { in GenerateCachedOpItem()
1440 auto bounds = textBlob_->Bounds(); in GenerateCachedOpItem()
1495 if (!textBlob_) { in GenerateCachedOpItem()
[all …]
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/recording/
H A Ddraw_cmd.h880 textBlob_(std::make_shared<TextBlob>(*blob)) {} in DrawTextBlobOpItem()
896 std::shared_ptr<TextBlob> textBlob_; variable