#include "graphics.h" #include #include "utils.h" enum graphics_error_e wayc_graphics_init(struct graphics_s* graphics) { wayc_notnull(graphics); memset(graphics, 0, sizeof(*graphics)); return GRAPHICS_ERROR_NONE; } void wayc_graphics_deinit(struct graphics_s* graphics) { wayc_notnull(graphics); }