Skip to content

Commit

Permalink
change the name
Browse files Browse the repository at this point in the history
  • Loading branch information
Fixstars-momoko committed Nov 14, 2023
1 parent de5fdde commit 2fa7027
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/bb/image-io/rt_u3v.h
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ class U3V {
}
}

void get_with_gendc(std::vector<void *>& outs) {
void get_gendc(std::vector<void *>& outs) {

// TODO: Is 3 second fine?
auto timeout_us = 3 * 1000 * 1000;
Expand Down Expand Up @@ -1191,7 +1191,7 @@ int ION_EXPORT ion_bb_image_io_u3v_gendc_camera1(
}

std::vector<void *> obufs{out_gendc->host, out_deviceinfo->host};
u3v.get_with_gendc(obufs);
u3v.get_gendc(obufs);

if(dispose){
u3v.dispose();
Expand Down Expand Up @@ -1240,7 +1240,7 @@ int ION_EXPORT ion_bb_image_io_u3v_gendc_camera2(
}

std::vector<void *> obufs{gendc0->host, gendc1->host,deviceinfo0->host, deviceinfo1->host};
u3v.get_with_gendc(obufs);
u3v.get_gendc(obufs);

if(dispose){
u3v.dispose();
Expand Down

0 comments on commit 2fa7027

Please sign in to comment.