"We offer new support options and therefor the forums are now in read-only mode! Please check out our Support Center for more information." - Vuforia Engine Team

Problem with drawing a textured rectangle

I'm trying to draw a picture on detected marker, like FrameMarkers demo does. The picture is a textured rectangle. I have a problem with it: when I move camera a little bit farther from marker, it starts to... flicker, of sort. it's like corners of the rectangle are cut away, and the size of "cut" area varies from frame to frame: [url]http://i39.tinypic.com/20f6vig.jpg[/url] I draw it as triangle strip on four vertices. What could be causing this problem?

You're running into the far clip plane. Look for the call to QCAR::Tool::getProjectionGL in ImageTargets.cpp (or QCARutils.mm for iOS). The numbers passed in are the near and far clipping planes. Try changing the second value to something bigger. - Kim