This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

DLPC3478: Image flipping with internal patterns using WriteDisplayImageOrientation

Part Number: DLPC3478

I am working on an application using DLPC3478 and internal pattern mode. I can successfully project patterns.

However, I am not able to use the API to flip the image. It seems like the projected image is the same, using either of these configurations:

// This configuration ....
Dlpc347X::WriteDisplayImageOrientation(Dlpc347X::IR_NO_ROTATION, Dlpc347X::IF_IMAGE_FLIPPED, Dlpc347X::IF_IMAGE_FLIPPED);
// ...results in the same image orientation as using this configuration instead
Dlpc347X::WriteDisplayImageOrientation(Dlpc347X::IR_NO_ROTATION, Dlpc347X::IF_IMAGE_NOT_FLIPPED, Dlpc347X::IF_IMAGE_NOT_FLIPPED);

I am wondering if the image flipping is supported using internal pattern mode? And if it is supported, is there any particular order of commands (or similar) that I need to use in order to flip the projected image?