Searched refs:factor (Results 1 – 13 of 13) sorted by relevance
/lvgl-latest/src/libs/thorvg/ |
D | tvgPaint.cpp | 187 bool Paint::Impl::scale(float factor) in scale() argument 190 if (tvg::equal(factor, tr.scale)) return true; in scale() 191 tr.scale = factor; in scale() 408 Result Paint::scale(float factor) noexcept in scale() argument 410 if (pImpl->scale(factor)) return Result::Success; in scale()
|
D | tvgPaint.h | 172 bool scale(float factor);
|
D | tvgCapi.cpp | 163 TVG_API Tvg_Result tvg_paint_scale(Tvg_Paint* paint, float factor) in tvg_paint_scale() argument 166 return (Tvg_Result) reinterpret_cast<Paint*>(paint)->scale(factor); in tvg_paint_scale()
|
D | thorvg_capi.h | 852 TVG_API Tvg_Result tvg_paint_scale(Tvg_Paint* paint, float factor);
|
D | thorvg.h | 327 Result scale(float factor) noexcept;
|
/lvgl-latest/docs/details/widgets/ |
D | image.rst | 119 You can zoom images in or out by using :cpp:expr:`lv_image_set_scale(img, factor)`. 120 Set ``factor`` to ``256`` or :c:macro:`LV_SCALE_NONE` to disable zooming. A 125 :cpp:expr:`lv_image_set_scale_x(img, factor)` and 126 :cpp:expr:`lv_image_set_scale_y(img, factor)` can also be used to
|
/lvgl-latest/tests/unity/ |
D | unity.c | 385 UNITY_DOUBLE factor = 1.0f; in UnityPrintFloat() local 388 while (number * factor < (UNITY_DOUBLE)min_scaled) { factor *= 10.0f; exponent--; } in UnityPrintFloat() 390 number *= factor; in UnityPrintFloat() 408 UNITY_DOUBLE factor = 1.0f; in UnityPrintFloat() local 412 while (n_int < min_scaled) { n_int *= 10; factor *= 10.0f; exponent--; } in UnityPrintFloat() 414 number *= factor; in UnityPrintFloat()
|
/lvgl-latest/docs/intro/add-lvgl-to-your-project/ |
D | connecting_lvgl.rst | 48 all of its tasks for which time is a factor: refreshing displays, reading user
|
/lvgl-latest/src/libs/qrcode/ |
D | qrcodegen.c | 398 uint8_t factor = data[i] ^ result[0]; in calcReedSolomonRemainder() local 402 result[j] ^= finiteFieldMultiply(generator[j], factor); in calcReedSolomonRemainder()
|
/lvgl-latest/docs/details/integration/boards/ |
D | toradex.rst | 53 that aims to provide high performance in a compact form factor. Apalis enables
|
/lvgl-latest/docs/details/main-components/ |
D | fs.rst | 316 is if the file contents are expected to change by an external factor like with special OS files.
|
/lvgl-latest/docs/details/base-widget/ |
D | coord.rst | 48 other positioning factor) changes, this style value dynamically
|
/lvgl-latest/docs/details/base-widget/styles/ |
D | style-properties.rst | 1274 Scale down all opacity values of the Widget by this factor. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` … 1288 First draw Widget on the layer, then scale down layer opacity factor. Value 0, `LV_OPA_0` or `LV_OP…
|