Add test for steps easing function value calculation

This commit is contained in:
Kovid Goyal
2024-07-17 17:22:43 +05:30
parent e927f8da62
commit 39dfa75fe7
4 changed files with 53 additions and 9 deletions

View File

@@ -488,6 +488,7 @@ extern bool init_child_monitor(PyObject *);
extern int init_Line(PyObject *);
extern int init_ColorProfile(PyObject *);
extern int init_Screen(PyObject *);
extern bool init_animations(PyObject*);
extern bool init_fontconfig_library(PyObject*);
extern bool init_crypto_library(PyObject*);
extern bool init_desktop(PyObject*);
@@ -573,6 +574,7 @@ PyInit_fast_data_types(void) {
if (!init_loop_utils(m)) return NULL;
if (!init_crypto_library(m)) return NULL;
if (!init_systemd_module(m)) return NULL;
if (!init_animations(m)) return NULL;
CellAttrs a;
#define s(name, attr) { a.val = 0; a.attr = 1; PyModule_AddIntConstant(m, #name, shift_to_first_set_bit(a)); }