/
redgpu
/
GDMagArchive
Обзор
Документация
Войти
/
redgpu
/
GDMagArchive
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
feb05/dm_lib/image.h
19 строк
294 B
Don Williamson
first commit
31 окт 2016, 17:03
31 окт 2016, 17:03
c823e7b
Код
Авторство
О чём код?
#ifndef INC_IMAGE_H #define INC_IMAGE_H typedef unsigned int uint32; typedef struct st_Image Image; struct st_Image { int width; int height; int channels; uint32 data[]; }; extern void freeImage(Image *i); extern Image *imageCreate(int width, int height, int channels); #endif