├── README.md ├── api ├── 1.0.1 │ ├── openvg.h │ └── vgu.h └── 1.1 │ ├── openvg.h │ ├── vgext.h │ ├── vgplatform.h │ └── vgu.h ├── extensions ├── KHR │ ├── VG_KHR_EGL_image.txt │ ├── advanced_blending.txt │ ├── iterative_average_blur.txt │ └── parametric_filter.txt └── NDS │ ├── paint_generation.txt │ └── projective_geometry.txt ├── index.php ├── registry.txt ├── ri ├── openvg-1.1-ri.zip └── openvg-1_0_1-ri.zip └── specs ├── openvg-1.1.pdf ├── openvg_1_0_1.pdf └── openvg_lite_spec.pdf /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenVG-Registry/HEAD/README.md -------------------------------------------------------------------------------- /api/1.0.1/openvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenVG-Registry/HEAD/api/1.0.1/openvg.h -------------------------------------------------------------------------------- /api/1.0.1/vgu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenVG-Registry/HEAD/api/1.0.1/vgu.h -------------------------------------------------------------------------------- /api/1.1/openvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenVG-Registry/HEAD/api/1.1/openvg.h -------------------------------------------------------------------------------- /api/1.1/vgext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenVG-Registry/HEAD/api/1.1/vgext.h -------------------------------------------------------------------------------- /api/1.1/vgplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenVG-Registry/HEAD/api/1.1/vgplatform.h -------------------------------------------------------------------------------- /api/1.1/vgu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenVG-Registry/HEAD/api/1.1/vgu.h -------------------------------------------------------------------------------- /extensions/KHR/VG_KHR_EGL_image.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenVG-Registry/HEAD/extensions/KHR/VG_KHR_EGL_image.txt -------------------------------------------------------------------------------- /extensions/KHR/advanced_blending.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenVG-Registry/HEAD/extensions/KHR/advanced_blending.txt -------------------------------------------------------------------------------- /extensions/KHR/iterative_average_blur.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenVG-Registry/HEAD/extensions/KHR/iterative_average_blur.txt -------------------------------------------------------------------------------- /extensions/KHR/parametric_filter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenVG-Registry/HEAD/extensions/KHR/parametric_filter.txt -------------------------------------------------------------------------------- /extensions/NDS/paint_generation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenVG-Registry/HEAD/extensions/NDS/paint_generation.txt -------------------------------------------------------------------------------- /extensions/NDS/projective_geometry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenVG-Registry/HEAD/extensions/NDS/projective_geometry.txt -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenVG-Registry/HEAD/index.php -------------------------------------------------------------------------------- /registry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenVG-Registry/HEAD/registry.txt -------------------------------------------------------------------------------- /ri/openvg-1.1-ri.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenVG-Registry/HEAD/ri/openvg-1.1-ri.zip -------------------------------------------------------------------------------- /ri/openvg-1_0_1-ri.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenVG-Registry/HEAD/ri/openvg-1_0_1-ri.zip -------------------------------------------------------------------------------- /specs/openvg-1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenVG-Registry/HEAD/specs/openvg-1.1.pdf -------------------------------------------------------------------------------- /specs/openvg_1_0_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenVG-Registry/HEAD/specs/openvg_1_0_1.pdf -------------------------------------------------------------------------------- /specs/openvg_lite_spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenVG-Registry/HEAD/specs/openvg_lite_spec.pdf --------------------------------------------------------------------------------