I have made small progress
```
OpenSubdiv::Far::ConstIndexArray fuvs = refLastLevel.GetFaceFVarValues(handle->vertIndex, channelUV);
for (int vertex : vertices)
{
// I have vertices index via *iter but where can I use this index to look for the
// vertices ?
FVarVertexUV const& uv = fvVertsUV[fuvs[vertex]];
std::cout << boost::format("fuvs[vertex=%1%]=%2% {%3%,%4%}\n") % vertex % fuvs[vertex] % uv.u % uv.v;
face_uvs.push_back(IBI::VEC(uv.u, uv.v));
}
```
However, I am getting duplicate indices which resulted in generated patch
Some how, I have two indices with 90
```
maxlevel 3
arrayIndex 0
patchIndex 8
vertIndex 32
fuvs[vertex=18]=85 {0.241177,0.704977}
fuvs[vertex=103]=90 {0.361765,0.257065}
fuvs[vertex=56]=87 {0.702099,0.518803}
fuvs[vertex=104]=90 {0.361765,0.257065}
testPoint (0.5 0.5)
```