diff options
Diffstat (limited to 'src/cube_portable.h')
| -rw-r--r-- | src/cube_portable.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/cube_portable.h b/src/cube_portable.h index 125c300..24c39e8 100644 --- a/src/cube_portable.h +++ b/src/cube_portable.h | |||
| @@ -22,6 +22,7 @@ _static_inline int64_t coord_fast_esep(cube_fast_t); | |||
| 22 | _static_inline void copy_corners_fast(cube_fast_t *, cube_fast_t); | 22 | _static_inline void copy_corners_fast(cube_fast_t *, cube_fast_t); |
| 23 | _static_inline void copy_edges_fast(cube_fast_t *, cube_fast_t); | 23 | _static_inline void copy_edges_fast(cube_fast_t *, cube_fast_t); |
| 24 | _static_inline void set_eo_fast(cube_fast_t *, int64_t); | 24 | _static_inline void set_eo_fast(cube_fast_t *, int64_t); |
| 25 | _static_inline cube_fast_t invcoord_fast_esep(int64_t); | ||
| 25 | 26 | ||
| 26 | _static_inline cube_fast_t | 27 | _static_inline cube_fast_t |
| 27 | fastcube( | 28 | fastcube( |
| @@ -251,3 +252,10 @@ set_eo_fast(cube_fast_t *cube, int64_t eo) | |||
| 251 | } | 252 | } |
| 252 | cube->edge[0] = (cube->edge[0] & ~_eobit) | (_eobit * (sum%2)); | 253 | cube->edge[0] = (cube->edge[0] & ~_eobit) | (_eobit * (sum%2)); |
| 253 | } | 254 | } |
| 255 | |||
| 256 | _static_inline cube_fast_t | ||
| 257 | invcoord_fast_esep(int64_t esep) | ||
| 258 | { | ||
| 259 | /* TODO */ | ||
| 260 | return cubetofast(zero); | ||
| 261 | } | ||
