summaryrefslogtreecommitdiffstats
path: root/config.tests/unix/openvg/openvg.cpp
blob: 8f763cdc6af0b6c60cf38ef547fc5e7bc05fd52f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// There is some variation in OpenVG engines as to what case
// the VG includes use.  The Khronos reference implementation
// for OpenVG 1.1 uses upper case, so we treat that as canonical.
#if defined(QT_LOWER_CASE_VG_INCLUDES)
#include <vg/openvg.h>
#else
#include <VG/openvg.h>
#endif

int main(int, char **)
{
    VGint i;
    i = 2;
    vgFlush();
    return 0;
}