- Timestamp:
- Aug 15, 2023, 4:59:00 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20230313/psLib/test/imageops/tap_psImageMapFit.c
r20767 r42493 79 79 80 80 // fit the data to the map 81 psImageMapFit (map, NULL, 0, x, y, f, NULL); 81 bool status; 82 psImageMapFit (&status, map, NULL, 0, x, y, f, NULL); 83 ok (status, "ok fit"); 82 84 83 85 psImage *model = psImageAlloc(field->numCols, field->numRows, PS_TYPE_F32); … … 153 155 154 156 // fit the data to the map 155 psImageMapFit (map, NULL, 0, x, y, f, NULL); 157 bool status; 158 psImageMapFit (&status, map, NULL, 0, x, y, f, NULL); 159 ok (status, "ok fit"); 156 160 157 161 psImage *model = psImageAlloc(field->numCols, field->numRows, PS_TYPE_F32); … … 235 239 236 240 // fit the data to the map 237 psImageMapFit (map, NULL, 0, x, y, f, NULL); 241 bool status; 242 psImageMapFit (&status, map, NULL, 0, x, y, f, NULL); 243 ok (status, "ok fit"); 238 244 239 245 psImage *model = psImageAlloc(field->numCols, field->numRows, PS_TYPE_F32); … … 318 324 319 325 // fit the data to the map 320 psImageMapFit (map, NULL, 0, x, y, f, NULL); 326 bool status; 327 psImageMapFit (&status, map, NULL, 0, x, y, f, NULL); 328 ok (status, "ok fit"); 321 329 322 330 psImage *model = psImageAlloc(field->numCols, field->numRows, PS_TYPE_F32); … … 384 392 385 393 // fit the data to the map 386 psImageMapFit (map, NULL, 0, x, y, f, NULL); 394 bool status; 395 psImageMapFit (&status, map, NULL, 0, x, y, f, NULL); 396 ok (status, "ok fit"); 387 397 388 398 psImage *model = psImageAlloc(field->numCols, field->numRows, PS_TYPE_F32); … … 445 455 446 456 // fit the data to the map 447 psImageMapFit (map, NULL, 0, x, y, f, NULL); 457 bool status; 458 psImageMapFit (&status, map, NULL, 0, x, y, f, NULL); 459 ok (status, "ok fit"); 448 460 449 461 psImage *model = psImageAlloc(field->numCols, field->numRows, PS_TYPE_F32); … … 526 538 527 539 // fit the data to the map 528 psImageMapFit (map, NULL, 0, x, y, f, NULL); 540 bool status; 541 psImageMapFit (&status, map, NULL, 0, x, y, f, NULL); 542 ok (status, "ok fit"); 529 543 530 544 psImage *model = psImageAlloc(field->numCols, field->numRows, PS_TYPE_F32); … … 595 609 596 610 // fit the data to the map 597 psImageMapFit (map, NULL, 0, x, y, f, NULL); 611 bool status; 612 psImageMapFit (&status, map, NULL, 0, x, y, f, NULL); 613 ok (status, "ok fit"); 598 614 599 615 psImage *model = psImageAlloc(field->numCols, field->numRows, PS_TYPE_F32); … … 686 702 687 703 // fit the data to the map 688 psImageMapFit (map, NULL, 0, x, y, f, NULL); 704 bool status; 705 psImageMapFit (&status, map, NULL, 0, x, y, f, NULL); 706 ok (status, "ok fit"); 689 707 690 708 psImage *model = psImageAlloc(field->numCols, field->numRows, PS_TYPE_F32); … … 753 771 754 772 // fit the data to the map 755 psImageMapFit (map, NULL, 0, x, y, f, NULL); 773 bool status; 774 psImageMapFit (&status, map, NULL, 0, x, y, f, NULL); 775 ok (status, "ok fit"); 756 776 757 777 psImage *model = psImageAlloc(field->numCols, field->numRows, PS_TYPE_F32); … … 814 834 815 835 // fit the data to the map 816 psImageMapFit (map, NULL, 0, x, y, f, NULL); 836 bool status; 837 psImageMapFit (&status, map, NULL, 0, x, y, f, NULL); 838 ok (status, "ok fit"); 817 839 818 840 psImage *model = psImageAlloc(field->numCols, field->numRows, PS_TYPE_F32);
Note:
See TracChangeset
for help on using the changeset viewer.
