Ignore:
Timestamp:
Jul 13, 2017, 11:01:58 AM (7 years ago)
Author:
meunier
Message:
  • Mise à jour NR2 et Rosenfeld
File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/applications/rosenfeld/nrc2/include/nrset2x.h

    r772 r826  
    44*/
    55
    6 IMAGE_EXPORT(void) zero_si32Pmatrix(si32Point   **m, long nrl,long nrh,long ncl,long nch);
    7 IMAGE_EXPORT(void) zero_f32Pmatrix ( f32Point   **m, long nrl,long nrh,long ncl,long nch);
    8 IMAGE_EXPORT(void) zero_si32Tmatrix(si32Triplet **m, long nrl,long nrh,long ncl,long nch);
    9 IMAGE_EXPORT(void) zero_f32Tmatrix ( f32Triplet **m, long nrl,long nrh,long ncl,long nch);
     6
     7#undef zero_type_matrix
     8#define zero_type_matrix(t) \
     9void short_name(t,zero_,matrix)(t ** m, int32_t nrl, int32_t nrh, int32_t ncl, int32_t nch);
     10
     11zero_type_matrix(si16Point);
     12zero_type_matrix(ui16Point);
     13zero_type_matrix(si32Point);
     14zero_type_matrix(ui32Point);
     15zero_type_matrix(f32Point);
     16zero_type_matrix(si16Triplet);
     17zero_type_matrix(ui16Triplet);
     18zero_type_matrix(si32Triplet);
     19zero_type_matrix(ui32Triplet);
     20zero_type_matrix(f32Triplet);
     21
     22
     23// Local Variables:
     24// tab-width: 4
     25// c-basic-offset: 4
     26// c-file-offsets:((innamespace . 0)(inline-open . 0))
     27// indent-tabs-mode: nil
     28// End:
     29
     30// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=4:softtabstop=4
     31
Note: See TracChangeset for help on using the changeset viewer.