Benign X

Results 80 comments of Benign X

`tools/ci/testlist/codechecker.dat` Select a random set of targets to check. If you need to check a specific target, write the target list in this file. Make sure that the compilation check...

> @W-Mai please remove the merge patch. I'll rebase it later.

> @ All: Don't use the RPi platform. The old rpi platform uses the DISPMANX API, which is a closed, propietary API from BROADCOM which is now gone for good,...

我没有进行具体的测试,请问您的上一个pr是不是已经修复该问题了? 或者说,您期待的正确输出是什么。

> Yeah, but I've seen on reddit and etc. that a lot of users don't use `:h plugin` and instead go to the plugin's repo on github to view the...

> I'm not sure what the current solution for this is, but in my previous cache implementation I added a counter to see if an image is still used (maybe...

I thought about it and conceived a new cache framework. ## API that may be used by the newly designed cache ```cpp lv_cache_t * lv_cache_create(lv_cache_class_t * cache_class, size_t node_size, size_t...

Thank you for your reply! Very good question! > 1 . Assuming allocation succeeds, is `lv_cache_get()` guaranteed to always make space for the latest item? The current `lv_cache` has a...

```cpp void * lv_cache_get(lv_cache_t * cache, const void * key, void * user_data); ``` This API may be somewhat confusing, and maybe a better name is ```cpp void * lv_cache_get_or_create(lv_cache_t...