]> AND Private Git Repository - snake_gpu.git/blob - src/lib_alloc.h
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Initial commit
[snake_gpu.git] / src / lib_alloc.h
1 #include "constantes.h"
2 #include "structures.h"
3
4
5
6 int **new_matrix_int(int i_dim, int j_dim) ;
7 unsigned short **new_matrix_ushort(int i_dim, int j_dim) ;
8 void del_matrix_int(int **image, int i_dim) ;
9
10
11 struct pixel_cumul **new_matrix_pixel_cumul(int i_dim, int j_dim) ;
12 void del_matrix_pixel_cumul(struct pixel_cumul **image, int i_dim) ;