Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vgcanvas_null.c 函数名定义有问题,导致引用vgcanvas_null.c编译失败 #18

Closed
zhanglu993 opened this issue Oct 27, 2018 · 1 comment

Comments

@zhanglu993
Copy link

vgcanvas_null.c 函数名定义有问题,
目前是定义成
vgcanvas_t* vgcanvas_create(uint32_t w, uint32_t h, bitmap_format_t format, void* buff) {
(void)w;
(void)h;
(void)format;
(void)buff;
return NULL;
}
改成 以下正常
vgcanvas_t* vgcanvas_create(uint32_t w, uint32_t h, uint32_t stride, bitmap_format_t format,void* data)
{
(void)w;
(void)h;
(void)stride;
(void)format;
(void)data;
return NULL;
}

@xianjimli
Copy link
Member

谢谢。已修改。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants