Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 381b2265 authored by BOUCHERIE Raphael's avatar BOUCHERIE Raphael
Browse files

added basic structure for tiles

parent 345c74bd
No related branches found
No related tags found
1 merge request!6Tilesinfo struct
......@@ -89,6 +89,19 @@ typedef struct libhqr_tiledesc_s{
int p; /**< The number of nodes per column in the data distribution */
} libhqr_tiledesc_t;
/**
* @brief Minimal structure for stocking info of each tile
*/
typedef struct libhqr_tileinfo_s{
int type;
int currpiv;
int nextpiv;
int prevpiv;
int first_nextpiv;
int first_prevpiv;
} libhqr_tileinfo_t;
struct libhqr_tree_s;
typedef struct libhqr_tree_s libhqr_tree_t;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment