diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 99f1571..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,233 +0,0 @@
-#################
-## Eclipse
-#################
-
-*.pydevproject
-.project
-.metadata
-bin/
-tmp/
-*.tmp
-*.bak
-*.swp
-*~.nib
-local.properties
-.classpath
-.settings/
-.loadpath
-
-# External tool builders
-.externalToolBuilders/
-
-# Locally stored "Eclipse launch configurations"
-*.launch
-
-# CDT-specific
-.cproject
-
-# PDT-specific
-.buildpath
-
-
-#################
-## Visual Studio
-#################
-
-## Ignore Visual Studio temporary files, build results, and
-## files generated by popular Visual Studio add-ons.
-
-# User-specific files
-*.suo
-*.user
-*.sln.docstates
-
-# Build results
-
-[Dd]ebug/
-[Rr]elease/
-x64/
-build/
-[Bb]in/
-[Oo]bj/
-
-# MSTest test Results
-[Tt]est[Rr]esult*/
-[Bb]uild[Ll]og.*
-
-*_i.c
-*_p.c
-*.ilk
-*.meta
-*.obj
-*.pch
-*.pdb
-*.pgc
-*.pgd
-*.rsp
-*.sbr
-*.tlb
-*.tli
-*.tlh
-*.tmp
-*.tmp_proj
-*.log
-*.vspscc
-*.vssscc
-.builds
-*.pidb
-*.log
-*.scc
-
-# Visual C++ cache files
-ipch/
-*.aps
-*.ncb
-*.opensdf
-*.sdf
-*.cachefile
-
-# Visual Studio profiler
-*.psess
-*.vsp
-*.vspx
-
-# Guidance Automation Toolkit
-*.gpState
-
-# ReSharper is a .NET coding add-in
-_ReSharper*/
-*.[Rr]e[Ss]harper
-
-# TeamCity is a build add-in
-_TeamCity*
-
-# DotCover is a Code Coverage Tool
-*.dotCover
-
-# NCrunch
-*.ncrunch*
-.*crunch*.local.xml
-
-# Installshield output folder
-[Ee]xpress/
-
-# DocProject is a documentation generator add-in
-DocProject/buildhelp/
-DocProject/Help/*.HxT
-DocProject/Help/*.HxC
-DocProject/Help/*.hhc
-DocProject/Help/*.hhk
-DocProject/Help/*.hhp
-DocProject/Help/Html2
-DocProject/Help/html
-
-# Click-Once directory
-publish/
-
-# Publish Web Output
-*.Publish.xml
-*.pubxml
-
-# NuGet Packages Directory
-## TODO: If you have NuGet Package Restore enabled, uncomment the next line
-#packages/
-
-# Windows Azure Build Output
-csx
-*.build.csdef
-
-# Windows Store app package directory
-AppPackages/
-
-# Others
-sql/
-*.Cache
-ClientBin/
-[Ss]tyle[Cc]op.*
-~$*
-*~
-*.dbmdl
-*.[Pp]ublish.xml
-*.pfx
-*.publishsettings
-
-# RIA/Silverlight projects
-Generated_Code/
-
-# Backup & report files from converting an old project file to a newer
-# Visual Studio version. Backup files are not needed, because we have git ;-)
-_UpgradeReport_Files/
-Backup*/
-UpgradeLog*.XML
-UpgradeLog*.htm
-
-# SQL Server files
-App_Data/*.mdf
-App_Data/*.ldf
-
-#############
-## Windows detritus
-#############
-
-# Windows image file caches
-Thumbs.db
-ehthumbs.db
-
-# Folder config file
-Desktop.ini
-
-# Recycle Bin used on file shares
-$RECYCLE.BIN/
-
-# Mac crap
-.DS_Store
-
-
-#############
-## Python
-#############
-
-*.py[co]
-
-# Packages
-*.egg
-*.egg-info
-dist/
-build/
-eggs/
-parts/
-var/
-sdist/
-develop-eggs/
-.installed.cfg
-
-# Installer logs
-pip-log.txt
-
-# Unit test / coverage reports
-.coverage
-.tox
-
-#Translations
-*.mo
-
-#Mr Developer
-.mr.developer.cfg
-
-Makefile
-Makefile.in
-aclocal.m4
-autom4te.cache/*
-config.h
-config.h.in
-config.status
-configure
-depcomp
-install-sh
-missing
-stamp-h1
-compile
-*.opendb
-/N3888_RefImpl/src/Debug_Clang_C2/N3888_RefImpl.tlog
-*.exe
-/N3888_RefImpl/src/Debug_Clang_C2/N3888_RefImpl.res
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..7bd9980
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,11 @@
+cmake_minimum_required(VERSION 2.8.12)
+
+project(io2d CXX)
+
+add_subdirectory(io2d/src)
+set(IO2D_INCLUDE_DIR
+ ${CMAKE_CURRENT_SOURCE_DIR}/io2d/include
+ ${CMAKE_CURRENT_SOURCE_DIR}/io2d/src/3rd-party/cairo/src)
+set(IO2D_LIBRARY io2d)
+
+add_subdirectory(examples/hello-world)
diff --git a/GNU-Linux_build_instructions.txt b/GNU-Linux_build_instructions.txt
deleted file mode 100644
index 795b9e8..0000000
--- a/GNU-Linux_build_instructions.txt
+++ /dev/null
@@ -1,23 +0,0 @@
-You will need a relatively recent build of GNU autotools. Any recent distro
-should have a reasonably new version available which will fit the needs here.
-You will also need cairo, GTK+3, and related libraries; as long as you have
-autotools, if you should be able to generate a configure script and it will
-tell you if you are missing any other dependencies.
-
-To build the project, from this directory run the command 'autoreconf -i'. It
-should run for a bit then complete silently. If so, you should then run the
-generated './configure' script with any necessary parameters. This should
-notify you if you are missing any pre-requisites or have an older version that
-won't work. If configure completes successfully, you should be able to run the
-'make' command and then execute the resulting executable by calling
-the './N3888_RefImpl/src/N3888_RefImpl' executable.
-
-The drawing portion is the same code as in the Windows version. The entry
-point uses GTK+3 and is primarily C code. It is patterned after Gnome project
-utilities. It has improved significantly and is now essentially on par with
-the Windows version.
-
-Tested on OpenSUSE 13.2 with GCC 4.9.0 using the following configure command:
-'./configure CC=gcc-4.9 CXX=g++-4.9 CXXFLAGS="-g -std=c++1y"'. Also tested
-with Clang 3.5 using the configure settings found in the
-run-configure-with-clang-and-libstdc++.sh shell script.
diff --git a/LICENSE.md b/LICENSE.md
index ca6544a..50899b3 100644
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -5,12 +5,11 @@ There are several distinct and unique projects in this repository, each with its
own licensing terms and conditions. If you wish to use one of these libraries,
you must comply with its licensing terms. The maintainer of this repository makes
no claims to authorship or ownership of any files in the directories `/cairo`,
-`/pixman`, `/libpng16`, or `/zlib-1.2.8`, except as may be documented in the
-appropriate location(s) within those directories. Mention of a directory shall
-be deemed to include all subdirectories and their subdirectories, etc., within
-the mentioned directory. Mention of files in a directory shall be deemed to
-include all files located in that directory and in its subdirectories and their
-subdirectories, etc.
+`/pixman`, except as may be documented in the appropriate location(s) within
+those directories. Mention of a directory shall be deemed to include all
+subdirectories and their subdirectories, etc., within the mentioned directory.
+Mention of files in a directory shall be deemed to include all files located in
+that directory and in its subdirectories and their subdirectories, etc.
cairo
--------------
@@ -24,28 +23,9 @@ The contents of the `/pixman` directory are subject to the licensing terms descr
in the `/pixman/COPYING` file. For more information about the pixman library,
please see [pixman.org](http://www.pixman.org/) or [cgit.freedesktop.org/pixman/](http://cgit.freedesktop.org/pixman/).
-libpng
---------------
-The contents of the `/libpng16` directory are subject to the licensing terms
-described in the `/libpng16/LICENSE` file. For more information about libpng,
-please see [libpng.org](http://www.libpng.org/pub/png/libpng.html).
-
-zlib
---------------
-The contents of the `/zlib-1.2.8` directory are subject to the licensing terms
-described in the `/zlib-1.2.8/zlib.h` file. For more information about zlib,
-please see [zlib.net](http://zlib.net/).
-
-win32
---------------
-
-With the exception of the files contained in the directories
-`/N3888_RefImpl/src/win32/DLLs`, `/N3888_RefImpl/src/win32/include`, and
-`/N3888_RefImpl/src/win32/libs`, the following license applies to the files contained
-in the `/N3888_RefImpl` directory.
-
-`The MIT License (MIT)
+```
+The MIT License (MIT)
Copyright (c) 2014 Michael B. McLaughlin
@@ -66,21 +46,7 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.`
-
The files in `/N3888_RefImpl/src/win32/include` are header files used to interface
with the cairo graphics library. Their license is described above under the **cairo**
section.
-
-The files in `/N3888_RefImpl/src/win32/libs` are .lib files used to dynamically
-link with:
-
- * The cairo graphics library in accordance with the terms of the Mozilla
- Public License version 1.1, a copy of which can be found at
- `/cairo/COPYING-MPL-1.1`.
- * The zlib general purpose compression library in accordance with the terms
- of its license, which can be found at `/zlib-1.2.8/zlib.h`.
-
-The files in `/N3888_RefImpl/src/win32/DLLs` are executable code versions of
-cairo and zlib in the form of DLL files. These files were built in accordance
-with the instructions provided at `/N3888_RefImpl/src/win32/DLL build instructions.txt`.
-Their licensing is as described above for the .lib files.
+```
diff --git a/Makefile.am b/Makefile.am
deleted file mode 100644
index f2abd87..0000000
--- a/Makefile.am
+++ /dev/null
@@ -1,2 +0,0 @@
-SUBDIRS = N3888_RefImpl
-ACLOCAL_AMFLAGS = -I m4
diff --git a/N3888_RefImpl/.gitignore b/N3888_RefImpl/.gitignore
deleted file mode 100644
index 7e0949a..0000000
--- a/N3888_RefImpl/.gitignore
+++ /dev/null
@@ -1,46 +0,0 @@
-################################################################################
-# This .gitignore file was automatically created by Microsoft(R) Visual Studio.
-################################################################################
-
-/N3888_RefImpl/Debug
-*.user
-/Debug
-/ipch/N3888_RefImpl-e13b5b2c
-/N3888_RefImpl.opensdf
-/N3888_RefImpl.sdf
-/N3888_RefImpl.v12.suo
-/N3888_RefImpl/x64/Release/N3888_RefImpl.tlog
-/N3888_RefImpl/x64/Release/N3888_RefImpl.log
-/N3888_RefImpl/x64/Release/N3888_RefImpl.obj
-/N3888_RefImpl/x64/Release/N3888_RefImpl.pch
-/N3888_RefImpl/x64/Release/N3888_RefImpl.res
-/N3888_RefImpl/x64/Release/context.obj
-/N3888_RefImpl/x64/Release/device.obj
-/N3888_RefImpl/x64/Release/drawing_exception.obj
-/N3888_RefImpl/x64/Release/font_face.obj
-/N3888_RefImpl/x64/Release/font_options.obj
-/N3888_RefImpl/x64/Release/gradient_pattern.obj
-/N3888_RefImpl/x64/Release/image_surface.obj
-/N3888_RefImpl/x64/Release/linear_gradient_pattern.obj
-/N3888_RefImpl/x64/Release/matrix.obj
-/N3888_RefImpl/x64/Release/mesh_pattern.obj
-/N3888_RefImpl/x64/Release/pattern.obj
-/N3888_RefImpl/x64/Release/pch.obj
-/N3888_RefImpl/x64/Release/radial_gradient_pattern.obj
-/N3888_RefImpl/x64/Release/raster_source_pattern.obj
-/N3888_RefImpl/x64/Release/region.obj
-/N3888_RefImpl/x64/Release/scaled_font.obj
-/N3888_RefImpl/x64/Release/solid_color_pattern.obj
-/N3888_RefImpl/x64/Release/surface.obj
-/N3888_RefImpl/x64/Release/surface_pattern.obj
-/N3888_RefImpl/x64/Release/toy_font_face.obj
-/N3888_RefImpl/x64/Release/user_data_key.obj
-/N3888_RefImpl/x64/Release/vc120.pdb
-/x64/Release
-/N3888_RefImpl/x64/Release
-/N3888_RefImpl/x64/Debug/N3888_RefImpl.tlog
-/N3888_RefImpl/x64/Debug/N3888_RefImpl.pch
-/N3888_RefImpl/x64/Debug/N3888_RefImpl.res
-/N3888_RefImpl/x64/Debug/vc120.idb
-Makefile
-Makefile.in
diff --git a/N3888_RefImpl/Debug_Clang_C2/cairo.dll b/N3888_RefImpl/Debug_Clang_C2/cairo.dll
deleted file mode 100644
index ef90fab..0000000
Binary files a/N3888_RefImpl/Debug_Clang_C2/cairo.dll and /dev/null differ
diff --git a/N3888_RefImpl/Debug_Clang_C2/zlib1.dll b/N3888_RefImpl/Debug_Clang_C2/zlib1.dll
deleted file mode 100644
index 271a042..0000000
Binary files a/N3888_RefImpl/Debug_Clang_C2/zlib1.dll and /dev/null differ
diff --git a/N3888_RefImpl/Makefile.am b/N3888_RefImpl/Makefile.am
deleted file mode 100644
index 280086e..0000000
--- a/N3888_RefImpl/Makefile.am
+++ /dev/null
@@ -1,2 +0,0 @@
-SUBDIRS = src
-
diff --git a/N3888_RefImpl/N3888_RefImpl.sln b/N3888_RefImpl/N3888_RefImpl.sln
deleted file mode 100644
index 9f06198..0000000
--- a/N3888_RefImpl/N3888_RefImpl.sln
+++ /dev/null
@@ -1,40 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 14
-VisualStudioVersion = 14.0.24720.0
-MinimumVisualStudioVersion = 12.0.21005.1
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "N3888_RefImpl", "src\N3888_RefImpl.vcxproj", "{1B3FB96B-B90D-40B7-B0D9-20D15BE707B8}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug_Clang_C2|Win32 = Debug_Clang_C2|Win32
- Debug_Clang_C2|x64 = Debug_Clang_C2|x64
- Debug|Win32 = Debug|Win32
- Debug|x64 = Debug|x64
- Release_Clang_C2|Win32 = Release_Clang_C2|Win32
- Release_Clang_C2|x64 = Release_Clang_C2|x64
- Release|Win32 = Release|Win32
- Release|x64 = Release|x64
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {1B3FB96B-B90D-40B7-B0D9-20D15BE707B8}.Debug_Clang_C2|Win32.ActiveCfg = Debug_Clang_C2|Win32
- {1B3FB96B-B90D-40B7-B0D9-20D15BE707B8}.Debug_Clang_C2|Win32.Build.0 = Debug_Clang_C2|Win32
- {1B3FB96B-B90D-40B7-B0D9-20D15BE707B8}.Debug_Clang_C2|x64.ActiveCfg = Debug_Clang_C2|x64
- {1B3FB96B-B90D-40B7-B0D9-20D15BE707B8}.Debug_Clang_C2|x64.Build.0 = Debug_Clang_C2|x64
- {1B3FB96B-B90D-40B7-B0D9-20D15BE707B8}.Debug|Win32.ActiveCfg = Debug|Win32
- {1B3FB96B-B90D-40B7-B0D9-20D15BE707B8}.Debug|Win32.Build.0 = Debug|Win32
- {1B3FB96B-B90D-40B7-B0D9-20D15BE707B8}.Debug|x64.ActiveCfg = Debug|x64
- {1B3FB96B-B90D-40B7-B0D9-20D15BE707B8}.Debug|x64.Build.0 = Debug|x64
- {1B3FB96B-B90D-40B7-B0D9-20D15BE707B8}.Release_Clang_C2|Win32.ActiveCfg = Release_Clang_C2|Win32
- {1B3FB96B-B90D-40B7-B0D9-20D15BE707B8}.Release_Clang_C2|Win32.Build.0 = Release_Clang_C2|Win32
- {1B3FB96B-B90D-40B7-B0D9-20D15BE707B8}.Release_Clang_C2|x64.ActiveCfg = Release_Clang_C2|x64
- {1B3FB96B-B90D-40B7-B0D9-20D15BE707B8}.Release_Clang_C2|x64.Build.0 = Release_Clang_C2|x64
- {1B3FB96B-B90D-40B7-B0D9-20D15BE707B8}.Release|Win32.ActiveCfg = Release|Win32
- {1B3FB96B-B90D-40B7-B0D9-20D15BE707B8}.Release|Win32.Build.0 = Release|Win32
- {1B3FB96B-B90D-40B7-B0D9-20D15BE707B8}.Release|x64.ActiveCfg = Release|x64
- {1B3FB96B-B90D-40B7-B0D9-20D15BE707B8}.Release|x64.Build.0 = Release|x64
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
-EndGlobal
diff --git a/N3888_RefImpl/src/.gitignore b/N3888_RefImpl/src/.gitignore
deleted file mode 100644
index db48325..0000000
--- a/N3888_RefImpl/src/.gitignore
+++ /dev/null
@@ -1,5 +0,0 @@
-/.deps/*
-/Makefile.in
-/N3888_RefImpl
-/N3888_RefImpl-*.o
-/Makefile
diff --git a/N3888_RefImpl/src/Makefile.am b/N3888_RefImpl/src/Makefile.am
deleted file mode 100644
index 1fd2e5e..0000000
--- a/N3888_RefImpl/src/Makefile.am
+++ /dev/null
@@ -1,53 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-##resource_Files = @DOLLAR_SIGN@(shell glib-compile-resources --sourcedir=$(srcdir) --generate-dependencies $(srcdir)/refimpl.gresource.xml)
-##refimpl-resources.c: refimpl.gresource.xml $(resource_Files)
-## glib-compile-resources --target=$@ --sourcedir=$(srcdir) --generate-source --c-name refimpl $(srcdir)/refimpl.gresource.xml
-##refimpl-resources.h: refimpl.gresource.xml $(resource_Files)
-## glib-compile-resources --target=$@ --sourcedir=$(srcdir) --generate-header --c-name refimpl $(srcdir)/refimpl.gresource.xml
-
-##BUILT_SOURCES = refimpl-resources.c \
-## refimpl-resources.h \
-## $(NULL)
-
-bin_PROGRAMS = N3888_RefImpl
-
-N3888_RefImpl_SOURCES = brush.cpp \
- device.cpp \
- display_surface-common.cpp \
- display_surface-xlib.cpp \
- entrypoint.cpp \
- font_extents.cpp \
- font_face.cpp \
- font_options.cpp \
- image_surface.cpp \
- io2d_error_category.cpp \
- linear_brush_factory.cpp \
- mapped_surface.cpp \
- matrix_2d.cpp \
- mesh_brush_factory.cpp \
- path.cpp \
- path_data.cpp \
- path_data_item.cpp \
- path_factory.cpp \
- radial_brush_factory.cpp \
- rectangle.cpp \
- rgba_color.cpp \
- sample_draw.cpp \
- simple_font_face.cpp \
- solid_color_brush_factory.cpp \
- standalone_functions.cpp \
- surface.cpp \
- surface_brush_factory.cpp \
- test_renderer_fill.cpp \
- text_extents.cpp \
- vector_2d.cpp
-
-N3888_RefImpl_LDADD = @GTKCAIRO_LIBS@
-
-N3888_RefImpl_CPPFLAGS = @GTKCAIRO_CFLAGS@ ## -fpermissive
-
-##if ! [ [ test "$CXX" = "g++" ] || [ test "$CXX" = "gcc" ] ]]
-##then
-## N3888_RefImpl_LDADD += -fpermissive
-##fi
diff --git a/N3888_RefImpl/src/N3888_RefImpl.ico b/N3888_RefImpl/src/N3888_RefImpl.ico
deleted file mode 100644
index 449296f..0000000
Binary files a/N3888_RefImpl/src/N3888_RefImpl.ico and /dev/null differ
diff --git a/N3888_RefImpl/src/N3888_RefImpl.rc b/N3888_RefImpl/src/N3888_RefImpl.rc
deleted file mode 100644
index 31fce81..0000000
Binary files a/N3888_RefImpl/src/N3888_RefImpl.rc and /dev/null differ
diff --git a/N3888_RefImpl/src/N3888_RefImpl.vcxproj b/N3888_RefImpl/src/N3888_RefImpl.vcxproj
deleted file mode 100644
index fdbdfc8..0000000
--- a/N3888_RefImpl/src/N3888_RefImpl.vcxproj
+++ /dev/null
@@ -1,459 +0,0 @@
-
-
-
-
- Debug_Clang_C2
- Win32
-
-
- Debug_Clang_C2
- x64
-
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release_Clang_C2
- Win32
-
-
- Release_Clang_C2
- x64
-
-
- Release
- Win32
-
-
- Release
- x64
-
-
-
- {1B3FB96B-B90D-40B7-B0D9-20D15BE707B8}
- Win32Proj
- N3888_RefImpl
- 8.1
-
-
-
- Application
- true
- v140
- Unicode
-
-
- Application
- true
- v140_clang_3_7
- Unicode
-
-
- Application
- true
- v140
- Unicode
-
-
- Application
- true
- v140_Clang_3_7
- Unicode
-
-
- Application
- false
- v140
- true
- Unicode
-
-
- Application
- false
- v140_clang_3_7
- true
- Unicode
-
-
- Application
- false
- v140
- true
- Unicode
-
-
- Application
- false
- v140_Clang_3_7
- true
- Unicode
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
- NativeRecommendedRules.ruleset
-
-
- true
- NativeRecommendedRules.ruleset
-
-
- true
- NativeRecommendedRules.ruleset
-
-
- true
- NativeRecommendedRules.ruleset
-
-
- false
- NativeRecommendedRules.ruleset
-
-
- false
- NativeRecommendedRules.ruleset
-
-
- false
- NativeRecommendedRules.ruleset
-
-
- false
- NativeRecommendedRules.ruleset
-
-
-
- NotUsing
- Level4
- Disabled
- WIN32;_WIN32_WINNT=0x0600;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
- true
- $(ProjectDir)win32\include\;%(AdditionalIncludeDirectories)
- /Zc:throwingNew /Zc:strictStrings /Zc:implicitNoexcept
- true
-
-
- Windows
- true
- "$(ProjectDir)win32\lib\$(PlatformTarget)\$(Configuration)\cairo.lib";"$(ProjectDir)win32\lib\$(PlatformTarget)\$(Configuration)\zlib.lib";comctl32.lib;%(AdditionalDependencies)
- mainCRTStartup
-
-
- cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\cairo.dll" "$(OutputPath)"
-cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\cairo.pdb" "$(OutputPath)"
-cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\zlib1.dll" "$(OutputPath)"
-cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\zlib1.pdb" "$(OutputPath)"
-
-
-
-
- NotUsing
- EnableAllWarnings
- Disabled
- WIN32;_WIN32_WINNT=0x0600;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
- true
- $(ProjectDir)win32\include\;%(AdditionalIncludeDirectories)
- -Weverything -Wno-c++98-compat -Wno-covered-switch-default -Wno-c++98-compat-pedantic -Wno-global-constructors -Wno-float-equal -Wno-documentation -Wno-documentation-unknown-command -Wno-padded -Wno-exit-time-destructors -Wno-reserved-id-macro -Wno-language-extension-token
- true
- Enabled
- true
- NDEBUG
-
-
- Windows
- true
- "$(ProjectDir)win32\lib\$(PlatformTarget)\$(Configuration)\cairo.lib";"$(ProjectDir)win32\lib\$(PlatformTarget)\$(Configuration)\zlib.lib";comctl32.lib;%(AdditionalDependencies)
- mainCRTStartup
-
-
- cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\cairo.dll" "$(OutputPath)"
-cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\cairo.pdb" "$(OutputPath)"
-cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\zlib1.dll" "$(OutputPath)"
-cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\zlib1.pdb" "$(OutputPath)"
-
-
-
-
- NotUsing
- Level4
- Disabled
- WIN32;_WIN32_WINNT=0x0600;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
- true
- $(ProjectDir)win32\include\;%(AdditionalIncludeDirectories)
- /Zc:throwingNew /Zc:strictStrings /Zc:implicitNoexcept
- true
-
-
- Windows
- true
- "$(ProjectDir)win32\lib\$(PlatformTarget)\$(Configuration)\cairo.lib";"$(ProjectDir)win32\lib\$(PlatformTarget)\$(Configuration)\zlib.lib";comctl32.lib;%(AdditionalDependencies)
- mainCRTStartup
-
-
- cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\cairo.dll" "$(OutputPath)"
-cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\cairo.pdb" "$(OutputPath)"
-cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\zlib1.dll" "$(OutputPath)"
-cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\zlib1.pdb" "$(OutputPath)"
-
-
-
-
- NotUsing
- EnableAllWarnings
- Disabled
- WIN32;_WIN32_WINNT=0x0600;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)
- true
- $(ProjectDir)win32\include\;%(AdditionalIncludeDirectories)
- -Weverything -Wno-c++98-compat -Wno-covered-switch-default -Wno-c++98-compat-pedantic -Wno-global-constructors -Wno-float-equal -Wno-documentation -Wno-documentation-unknown-command -Wno-padded -Wno-exit-time-destructors -Wno-reserved-id-macro -Wno-language-extension-token
- true
- Enabled
- true
-
-
- Windows
- true
- "$(ProjectDir)win32\lib\$(PlatformTarget)\$(Configuration)\cairo.lib";"$(ProjectDir)win32\lib\$(PlatformTarget)\$(Configuration)\zlib.lib";comctl32.lib;%(AdditionalDependencies)
- mainCRTStartup
-
-
- cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\cairo.dll" "$(OutputPath)"
-cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\cairo.pdb" "$(OutputPath)"
-cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\zlib1.dll" "$(OutputPath)"
-cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\zlib1.pdb" "$(OutputPath)"
-
-
-
-
- Level4
- NotUsing
- MaxSpeed
- true
- true
- WIN32;_WIN32_WINNT=0x0600;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
- true
- /Zc:throwingNew /Zc:strictStrings /Zc:implicitNoexcept
- $(ProjectDir)win32\include\;%(AdditionalIncludeDirectories)
- true
- true
-
-
- Windows
- true
- true
- true
- "$(ProjectDir)win32\lib\$(PlatformTarget)\$(Configuration)\cairo.lib";"$(ProjectDir)win32\lib\$(PlatformTarget)\$(Configuration)\zlib.lib";comctl32.lib;%(AdditionalDependencies)
- mainCRTStartup
-
-
- cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\cairo.dll" "$(OutputPath)"
-cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\zlib1.dll" "$(OutputPath)"
-
-
-
-
- EnableAllWarnings
- NotUsing
- MaxSpeed
- true
- true
- WIN32;_WIN32_WINNT=0x0600;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
- true
- -Weverything -Wno-c++98-compat -Wno-covered-switch-default -Wno-c++98-compat-pedantic -Wno-global-constructors -Wno-float-equal -Wno-documentation -Wno-documentation-unknown-command -Wno-padded -Wno-exit-time-destructors -Wno-reserved-id-macro -Wno-language-extension-token
- $(ProjectDir)win32\include\;%(AdditionalIncludeDirectories)
- true
- true
- Enabled
- true
-
-
- Windows
- true
- true
- true
- "$(ProjectDir)win32\lib\$(PlatformTarget)\$(Configuration)\cairo.lib";"$(ProjectDir)win32\lib\$(PlatformTarget)\$(Configuration)\zlib.lib";comctl32.lib;%(AdditionalDependencies)
- mainCRTStartup
-
-
- cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\cairo.dll" "$(OutputPath)"
-cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\zlib1.dll" "$(OutputPath)"
-
-
-
-
- Level4
- NotUsing
- MaxSpeed
- true
- true
- WIN32;_WIN32_WINNT=0x0600;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
- true
- /Zc:throwingNew /Zc:strictStrings /Zc:implicitNoexcept
- $(ProjectDir)win32\include\;%(AdditionalIncludeDirectories)
- true
- true
-
-
- Windows
- true
- true
- true
- "$(ProjectDir)win32\lib\$(PlatformTarget)\$(Configuration)\cairo.lib";"$(ProjectDir)win32\lib\$(PlatformTarget)\$(Configuration)\zlib.lib";comctl32.lib;%(AdditionalDependencies)
- mainCRTStartup
-
-
- cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\cairo.dll" "$(OutputPath)"
-cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\zlib1.dll" "$(OutputPath)"
-
-
-
-
- EnableAllWarnings
- NotUsing
- MaxSpeed
- true
- true
- WIN32;_WIN32_WINNT=0x0600;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)
- true
- -Weverything -Wno-c++98-compat -Wno-covered-switch-default -Wno-c++98-compat-pedantic -Wno-global-constructors -Wno-float-equal -Wno-documentation -Wno-documentation-unknown-command -Wno-padded -Wno-exit-time-destructors -Wno-reserved-id-macro -Wno-language-extension-token
- $(ProjectDir)win32\include\;%(AdditionalIncludeDirectories)
- true
- true
- Enabled
- true
-
-
- Windows
- true
- true
- true
- "$(ProjectDir)win32\lib\$(PlatformTarget)\$(Configuration)\cairo.lib";"$(ProjectDir)win32\lib\$(PlatformTarget)\$(Configuration)\zlib.lib";comctl32.lib;%(AdditionalDependencies)
- mainCRTStartup
-
-
- cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\cairo.dll" "$(OutputPath)"
-cmd /c copy "$(ProjectDir)win32\DLLs\$(PlatformTarget)\$(Configuration)\zlib1.dll" "$(OutputPath)"
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
- true
- true
- true
-
-
- true
- true
- true
- true
-
-
- true
- true
- true
- true
-
-
- true
- true
- true
- true
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/N3888_RefImpl/src/N3888_RefImpl.vcxproj.filters b/N3888_RefImpl/src/N3888_RefImpl.vcxproj.filters
deleted file mode 100644
index 482493f..0000000
--- a/N3888_RefImpl/src/N3888_RefImpl.vcxproj.filters
+++ /dev/null
@@ -1,195 +0,0 @@
-
-
-
-
- {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
- cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
-
-
- {93995380-89BD-4b04-88EB-625FBE52EBFB}
- h;hh;hpp;hxx;hm;inl;inc;xsd
-
-
- {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
- rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
-
-
- {7cc8518e-643e-4930-bfbc-8174a4bc66d8}
-
-
-
-
-
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
- Header Files
-
-
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
- Source Files
-
-
-
-
- Resource Files
-
-
-
-
- Resource Files
-
-
- Resource Files
-
-
-
-
- DLLs
-
-
- DLLs
-
-
- DLLs
-
-
- DLLs
-
-
- DLLs
-
-
- DLLs
-
-
- DLLs
-
-
- DLLs
-
-
- DLLs
-
-
- DLLs
-
-
- DLLs
-
-
- DLLs
-
-
-
\ No newline at end of file
diff --git a/N3888_RefImpl/src/entrypoint.cpp b/N3888_RefImpl/src/entrypoint.cpp
deleted file mode 100644
index 4552c06..0000000
--- a/N3888_RefImpl/src/entrypoint.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-#include "io2d.h"
-#include "sample_draw.h"
-#include
-#include
-
-using namespace std;
-using namespace std::chrono;
-using namespace std::experimental::io2d;
-
-int main() {
- assert(steady_clock::is_steady);
- auto ds = make_display_surface(1280, 720, format::argb32, scaling::letterbox);
- auto radialFactory = radial_brush_factory({ 0.0, 0.0 }, 0.0, { 0.0, 0.0 }, 50.0);
- radialFactory.add_color_stop(0.0, rgba_color::orange());
- radialFactory.add_color_stop(1.0, rgba_color::aquamarine());
- auto letterboxBrush = brush(radialFactory);
- letterboxBrush.extend(extend::repeat);
- ds.letterbox_brush(letterboxBrush);
- sample_draw sd;
- ds.draw_callback(sd);
- //ds.draw_callback([](display_surface& sfc) {
- // sfc.paint(rgba_color::cornflower_blue);
- // sfc.font_size(48.0);
- // sfc.render_text("Hello ISO C++!", { 50.0, 50.0 }, rgba_color::white);
- //});
- return ds.show();
-}
-
diff --git a/N3888_RefImpl/src/font_face.cpp b/N3888_RefImpl/src/font_face.cpp
deleted file mode 100644
index 851fd88..0000000
--- a/N3888_RefImpl/src/font_face.cpp
+++ /dev/null
@@ -1,42 +0,0 @@
-#include "io2d.h"
-#include "xio2dhelpers.h"
-
-using namespace std;
-using namespace std::experimental::io2d;
-
-font_face::native_handle_type font_face::native_handle() const noexcept {
- return _Font_face.get();
-}
-
-font_face::font_face(font_face&& other) noexcept {
- _Font_face = move(other._Font_face);
- other._Font_face = nullptr;
-}
-
-font_face& font_face::operator=(font_face&& other) noexcept {
- if (this != &other) {
- _Font_face = move(other._Font_face);
- other._Font_face = nullptr;
- }
- return *this;
-}
-
-font_face::font_face(font_face::native_handle_type nh) {
- _Font_face = shared_ptr(nh, &cairo_font_face_destroy);
-}
-
-font_face::font_face(font_face::native_handle_type nh, error_code& ec) noexcept {
- try {
- _Font_face = shared_ptr(nh, &cairo_font_face_destroy);
- }
- catch (const bad_alloc&) {
- ec = make_error_code(errc::not_enough_memory);
- }
- catch (const exception&) {
- ec = make_error_code(errc::resource_unavailable_try_again);
- }
- ec.clear();
-}
-
-font_face::~font_face() {
-}
diff --git a/N3888_RefImpl/src/simple_font_face.cpp b/N3888_RefImpl/src/simple_font_face.cpp
deleted file mode 100644
index bd725a5..0000000
--- a/N3888_RefImpl/src/simple_font_face.cpp
+++ /dev/null
@@ -1,68 +0,0 @@
-#include "io2d.h"
-#include "xio2dhelpers.h"
-#include "xcairoenumhelpers.h"
-
-using namespace std;
-using namespace std::experimental::io2d;
-
-simple_font_face::simple_font_face(const string& family, ::std::experimental::io2d::font_slant fs, ::std::experimental::io2d::font_weight fw)
- : font_face(nullptr) {
- _Font_face = shared_ptr(cairo_toy_font_face_create(family.c_str(), _Font_slant_to_cairo_font_slant_t(fs), _Font_weight_to_cairo_font_weight_t(fw)), &cairo_font_face_destroy);
-}
-
-simple_font_face::simple_font_face(const string& family, ::std::experimental::io2d::font_slant fs, ::std::experimental::io2d::font_weight fw, error_code& ec) noexcept
- : font_face(nullptr, ec) {
- if (static_cast(ec)) {
- return;
- }
- try {
- _Font_face = shared_ptr(cairo_toy_font_face_create(family.c_str(), _Font_slant_to_cairo_font_slant_t(fs), _Font_weight_to_cairo_font_weight_t(fw)), &cairo_font_face_destroy);
- }
- catch (const bad_alloc&) {
- ec = make_error_code(errc::not_enough_memory);
- }
- ec.clear();
-}
-
-simple_font_face::simple_font_face(simple_font_face&& other) noexcept : font_face(nullptr) {
- _Font_face = move(other._Font_face);
- other._Font_face = nullptr;
-}
-
-simple_font_face& simple_font_face::operator=(simple_font_face&& other) noexcept {
- if (this != &other) {
- _Font_face = move(other._Font_face);
- other._Font_face = nullptr;
- }
- return *this;
-}
-
-simple_font_face::~simple_font_face() {
-}
-
-string simple_font_face::font_family() const {
- return string(cairo_toy_font_face_get_family(_Font_face.get()));
-}
-
-void simple_font_face::font_family(string& str, error_code& ec) const noexcept {
- try {
- ec.clear();
- str = string(cairo_toy_font_face_get_family(_Font_face.get()));
- }
- catch (const length_error&) {
- str.clear();
- ec = make_error_code(errc::not_enough_memory);
- }
- catch (const bad_alloc&) {
- str.clear();
- ec = make_error_code(errc::not_enough_memory);
- }
-}
-
-::std::experimental::io2d::font_slant simple_font_face::font_slant() const noexcept {
- return _Cairo_font_slant_t_to_font_slant(cairo_toy_font_face_get_slant(_Font_face.get()));
-}
-
-::std::experimental::io2d::font_weight simple_font_face::font_weight() const noexcept {
- return _Cairo_font_weight_t_to_font_weight(cairo_toy_font_face_get_weight(_Font_face.get()));
-}
diff --git a/N3888_RefImpl/src/win32/DLL build instructions.txt b/N3888_RefImpl/src/win32/DLL build instructions.txt
deleted file mode 100644
index 1575152..0000000
--- a/N3888_RefImpl/src/win32/DLL build instructions.txt
+++ /dev/null
@@ -1,81 +0,0 @@
-DLL build instructions. These are provided "AS IS" with no warranties or guarantees of any kind, express or implied, and confer no rights.
-
-1. If you do not already have a version of Visual Studio 2013 installed, install one (Visual Studio 2013 Express for Windows Desktop is fine - see: http://www.visualstudio.com/downloads/download-visual-studio-vs ).
-
-2. Install mozilla-build (see: https://wiki.mozilla.org/MozillaBuild ).
-
-3. In the mozilla-build directory, create a start-msvc12.bat and start-msvc12-x64.bat by adapting the msvc11 versions (if necessary). The version I installed (1.8.0) did not have these .bat files.
-
-4. Acquire zlib 1.2.8 (or latest), libpng 1.6 (latest), pixman (I used the master branch as of 2013-11-22 21:01:09 which include the patch from 2013-11-18 but not the one from 2013-11-24 (see: http://cgit.freedesktop.org/pixman/ )), and cairo (I used 1.12.16). Note: Libpng, pixman, and cairo can all be acquired with git. IMPORANT: Make sure all 4 are cloned/unzipped in the same folder (the "Root" folder). (When all is done you should have a folder that contains a "cairo" subfolder, a "pixman" subfolder, a "libpng16" subfolder, and a "zlib-1.2.8" subfolder).
- - For cairo I used the following git bash commands:
- git clone git://git.cairographics.org/git/cairo
- cd cairo
- git checkout -b build 1.12.16
- cd ..
- - For pixman I used the following git bash command:
- git clone git://git.cairographics.org/git/pixman
- - For libpng I used the following git bash command:
- git clone -b libpng16 git://git.code.sf.net/p/libpng/code libpng16
- - For zlib, I acquired the zip file from
-
-5. Open a command prompt in the Root folder. Use mklink to create NTFS junction points that alias "zlib" for "zlib-1.2.8" and "libpng" for "libpng16" (or appropriate). Example:
- mklink /J zlib zlib-1.2.8
- mklink /J libpng libpng16
-
-6. Close the command prompt window.
-
-7. Open a Visual Studio 2013 command prompt (use the x64 native tools version if you're building 64-bit binaries; I am going to assume that you will continue to use either the 32-bit or the 64-bit versions of any tools for the remainder of the instructions since you should not mix 32-bit and 64-bit).
-
-8. In the VS 2013 command prompt window, cd to the zlib directory (e.g. if zlib was in C:\Repos, you would use "cd C:\Repos\zlib" to change to the directory).
-
-9. In the VS 2013 command prompt window, build zlib using the following commands:
- nmake -f win32\Makefile.msc clean
- nmake -f win32\Makefile.msc LOC=-D_INC_WINAPIFAMILY
-
-10. In the VS 2013 command prompt window, cd to the libpng directory.
-
-11. In the VS 2013 command prompt window, build libpng using the following commands:
- nmake -f scripts\makefile.vcwin32 clean
- nmake -f scripts\makefile.vcwin32
-
-12. Close the VS 2013 command prompt window.
-
-13. Open a Windows Explorer window and navigate to the pixman folder.
-
-14. Navigate to the pixman subfolder. (So if the pixman folder was in C:\Repos, you would now be in C:\Repos\pixman\pixman).
-
-15. Copy the "pixman-version.h.in" file to "pixman-version.h".
-
-16. Open "pixman-version.h" in your preferred text editor.
-
-17. Find the following lines (they are consecutive; for me they are lines 34-36):
-
-#define PIXMAN_VERSION_MAJOR @PIXMAN_VERSION_MAJOR@
-#define PIXMAN_VERSION_MINOR @PIXMAN_VERSION_MINOR@
-#define PIXMAN_VERSION_MICRO @PIXMAN_VERSION_MICRO@
-
-18. Change them to reflect the version number of pixman that you are working with. You can find the values in configure.ac in the main pixman directory (lines 55-57). I used 0, 33, 1, giving me:
-
-#define PIXMAN_VERSION_MAJOR 0
-#define PIXMAN_VERSION_MINOR 33
-#define PIXMAN_VERSION_MICRO 1
-
-19. Save and close pixman-version.h and any other files you opened.
-
-20. Run the correct .bat file from the mozilla-build install directory (start-msvc12.bat or start-msvc12-x64.bat). This will open a MinGW32 command prompt window.
-
-21. In the MinGW32 command prompt window, cd to the pixman directory (note that in this window, directories are separated by a forward slash ("/") rather than a backslash ("\") and that file and folder names are case sensitive. Also your C: drive will be at "/c" and D: at "/d", etc. So if the pixman directory was in C:\Repos, you would use "cd /c/Repos/pixman" to change to the directory).
-
-22. In the MinGW32 command prompt window, build pixman using the following commands (replace "debug" with "release" when building a release DLL of Cairo):
- make -f Makefile.win32 MMX=off SSE2=on SSSE3=off CFG=debug clean
- make -f Makefile.win32 MMX=off SSE2=on SSSE3=off CFG=debug
-
-23. In the MinGW32 command prompt window, cd to the cairo directory.
-
-24. In the MinGW32 command prompt window, build cairo using the following commands (replace "debug" with "release" when building a release DLL of Cairo):
- make -f Makefile.win32 CFG=debug clean
- make -f Makefile.win32 CFG=debug
-
-25. If you get "fatal error LNK1112: module machine type '???' conflicts with target machine type '???'" (with the ??? being either X86 or x64), go into the "cairo/src/debug/win32" folder (replace "debug" with "release" if you are creating a release build) and delete all of the .obj files in that folder. Then run the make command again (the last one without the clean) and it should work fine and finish building.
-
-25. When cairo finishes building, it will list various files for you to copy. Copy those files to the correct place (it's up to you to decide where that should be). You will also need cairo.lib and zlib.lib in order to link against their respective DLLs. The .lib files should be added as linker inputs in your project's project properties in Visual Studio and the DLL files will need to be copied to the same directory as your program executable after it is built and before it runs in order to ensure that it can run correctly.
diff --git a/N3888_RefImpl/src/win32/DLLs/x64/Debug/cairo.dll b/N3888_RefImpl/src/win32/DLLs/x64/Debug/cairo.dll
deleted file mode 100644
index d9b6174..0000000
Binary files a/N3888_RefImpl/src/win32/DLLs/x64/Debug/cairo.dll and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/DLLs/x64/Debug/cairo.pdb b/N3888_RefImpl/src/win32/DLLs/x64/Debug/cairo.pdb
deleted file mode 100644
index 5eadb43..0000000
Binary files a/N3888_RefImpl/src/win32/DLLs/x64/Debug/cairo.pdb and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/DLLs/x64/Debug/zlib1.dll b/N3888_RefImpl/src/win32/DLLs/x64/Debug/zlib1.dll
deleted file mode 100644
index 22d93aa..0000000
Binary files a/N3888_RefImpl/src/win32/DLLs/x64/Debug/zlib1.dll and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/DLLs/x64/Debug/zlib1.pdb b/N3888_RefImpl/src/win32/DLLs/x64/Debug/zlib1.pdb
deleted file mode 100644
index 4814c75..0000000
Binary files a/N3888_RefImpl/src/win32/DLLs/x64/Debug/zlib1.pdb and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/DLLs/x64/Release/cairo.dll b/N3888_RefImpl/src/win32/DLLs/x64/Release/cairo.dll
deleted file mode 100644
index b7385d1..0000000
Binary files a/N3888_RefImpl/src/win32/DLLs/x64/Release/cairo.dll and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/DLLs/x64/Release/zlib1.dll b/N3888_RefImpl/src/win32/DLLs/x64/Release/zlib1.dll
deleted file mode 100644
index 22d93aa..0000000
Binary files a/N3888_RefImpl/src/win32/DLLs/x64/Release/zlib1.dll and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/DLLs/x86/Debug/cairo.dll b/N3888_RefImpl/src/win32/DLLs/x86/Debug/cairo.dll
deleted file mode 100644
index ef90fab..0000000
Binary files a/N3888_RefImpl/src/win32/DLLs/x86/Debug/cairo.dll and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/DLLs/x86/Debug/cairo.pdb b/N3888_RefImpl/src/win32/DLLs/x86/Debug/cairo.pdb
deleted file mode 100644
index 096dbae..0000000
Binary files a/N3888_RefImpl/src/win32/DLLs/x86/Debug/cairo.pdb and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/DLLs/x86/Debug/zlib1.dll b/N3888_RefImpl/src/win32/DLLs/x86/Debug/zlib1.dll
deleted file mode 100644
index 271a042..0000000
Binary files a/N3888_RefImpl/src/win32/DLLs/x86/Debug/zlib1.dll and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/DLLs/x86/Debug/zlib1.pdb b/N3888_RefImpl/src/win32/DLLs/x86/Debug/zlib1.pdb
deleted file mode 100644
index f301bf9..0000000
Binary files a/N3888_RefImpl/src/win32/DLLs/x86/Debug/zlib1.pdb and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/DLLs/x86/Debug_Clang_C2/cairo.dll b/N3888_RefImpl/src/win32/DLLs/x86/Debug_Clang_C2/cairo.dll
deleted file mode 100644
index ef90fab..0000000
Binary files a/N3888_RefImpl/src/win32/DLLs/x86/Debug_Clang_C2/cairo.dll and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/DLLs/x86/Debug_Clang_C2/zlib1.dll b/N3888_RefImpl/src/win32/DLLs/x86/Debug_Clang_C2/zlib1.dll
deleted file mode 100644
index 271a042..0000000
Binary files a/N3888_RefImpl/src/win32/DLLs/x86/Debug_Clang_C2/zlib1.dll and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/DLLs/x86/Release/cairo.dll b/N3888_RefImpl/src/win32/DLLs/x86/Release/cairo.dll
deleted file mode 100644
index 79c1514..0000000
Binary files a/N3888_RefImpl/src/win32/DLLs/x86/Release/cairo.dll and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/DLLs/x86/Release/zlib1.dll b/N3888_RefImpl/src/win32/DLLs/x86/Release/zlib1.dll
deleted file mode 100644
index 271a042..0000000
Binary files a/N3888_RefImpl/src/win32/DLLs/x86/Release/zlib1.dll and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/DLLs/x86/Release_Clang_C2/cairo.dll b/N3888_RefImpl/src/win32/DLLs/x86/Release_Clang_C2/cairo.dll
deleted file mode 100644
index 79c1514..0000000
Binary files a/N3888_RefImpl/src/win32/DLLs/x86/Release_Clang_C2/cairo.dll and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/DLLs/x86/Release_Clang_C2/zlib1.dll b/N3888_RefImpl/src/win32/DLLs/x86/Release_Clang_C2/zlib1.dll
deleted file mode 100644
index 271a042..0000000
Binary files a/N3888_RefImpl/src/win32/DLLs/x86/Release_Clang_C2/zlib1.dll and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/include/cairo-features.h b/N3888_RefImpl/src/win32/include/cairo-features.h
deleted file mode 100644
index 9eae639..0000000
--- a/N3888_RefImpl/src/win32/include/cairo-features.h
+++ /dev/null
@@ -1,17 +0,0 @@
-/* Generated by Makefile.win32.features-h. Do not edit. */
-#ifndef CAIRO_FEATURES_H
-#define CAIRO_FEATURES_H 1
-#define CAIRO_HAS_WIN32_SURFACE 1
-#define CAIRO_HAS_WIN32_FONT 1
-#define CAIRO_HAS_PNG_FUNCTIONS 1
-#define CAIRO_HAS_SCRIPT_SURFACE 1
-#define CAIRO_HAS_PS_SURFACE 1
-#define CAIRO_HAS_PDF_SURFACE 1
-#define CAIRO_HAS_SVG_SURFACE 1
-#define CAIRO_HAS_IMAGE_SURFACE 1
-#define CAIRO_HAS_MIME_SURFACE 1
-#define CAIRO_HAS_RECORDING_SURFACE 1
-#define CAIRO_HAS_OBSERVER_SURFACE 1
-#define CAIRO_HAS_USER_FONT 1
-#define CAIRO_HAS_INTERPRETER 1
-#endif
diff --git a/N3888_RefImpl/src/win32/lib/x64/Debug/cairo.lib b/N3888_RefImpl/src/win32/lib/x64/Debug/cairo.lib
deleted file mode 100644
index ca8e7c1..0000000
Binary files a/N3888_RefImpl/src/win32/lib/x64/Debug/cairo.lib and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/lib/x64/Debug/zlib.lib b/N3888_RefImpl/src/win32/lib/x64/Debug/zlib.lib
deleted file mode 100644
index 462495c..0000000
Binary files a/N3888_RefImpl/src/win32/lib/x64/Debug/zlib.lib and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/lib/x64/Release/cairo.lib b/N3888_RefImpl/src/win32/lib/x64/Release/cairo.lib
deleted file mode 100644
index 31fa453..0000000
Binary files a/N3888_RefImpl/src/win32/lib/x64/Release/cairo.lib and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/lib/x64/Release/zlib.lib b/N3888_RefImpl/src/win32/lib/x64/Release/zlib.lib
deleted file mode 100644
index 462495c..0000000
Binary files a/N3888_RefImpl/src/win32/lib/x64/Release/zlib.lib and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/lib/x86/Debug/cairo.lib b/N3888_RefImpl/src/win32/lib/x86/Debug/cairo.lib
deleted file mode 100644
index 1414584..0000000
Binary files a/N3888_RefImpl/src/win32/lib/x86/Debug/cairo.lib and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/lib/x86/Debug/zlib.lib b/N3888_RefImpl/src/win32/lib/x86/Debug/zlib.lib
deleted file mode 100644
index b2fb110..0000000
Binary files a/N3888_RefImpl/src/win32/lib/x86/Debug/zlib.lib and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/lib/x86/Debug_Clang_C2/cairo.lib b/N3888_RefImpl/src/win32/lib/x86/Debug_Clang_C2/cairo.lib
deleted file mode 100644
index 1414584..0000000
Binary files a/N3888_RefImpl/src/win32/lib/x86/Debug_Clang_C2/cairo.lib and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/lib/x86/Debug_Clang_C2/zlib.lib b/N3888_RefImpl/src/win32/lib/x86/Debug_Clang_C2/zlib.lib
deleted file mode 100644
index b2fb110..0000000
Binary files a/N3888_RefImpl/src/win32/lib/x86/Debug_Clang_C2/zlib.lib and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/lib/x86/Release/cairo.lib b/N3888_RefImpl/src/win32/lib/x86/Release/cairo.lib
deleted file mode 100644
index 60a9a64..0000000
Binary files a/N3888_RefImpl/src/win32/lib/x86/Release/cairo.lib and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/lib/x86/Release/zlib.lib b/N3888_RefImpl/src/win32/lib/x86/Release/zlib.lib
deleted file mode 100644
index b2fb110..0000000
Binary files a/N3888_RefImpl/src/win32/lib/x86/Release/zlib.lib and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/lib/x86/Release_Clang_C2/cairo.lib b/N3888_RefImpl/src/win32/lib/x86/Release_Clang_C2/cairo.lib
deleted file mode 100644
index 60a9a64..0000000
Binary files a/N3888_RefImpl/src/win32/lib/x86/Release_Clang_C2/cairo.lib and /dev/null differ
diff --git a/N3888_RefImpl/src/win32/lib/x86/Release_Clang_C2/zlib.lib b/N3888_RefImpl/src/win32/lib/x86/Release_Clang_C2/zlib.lib
deleted file mode 100644
index b2fb110..0000000
Binary files a/N3888_RefImpl/src/win32/lib/x86/Release_Clang_C2/zlib.lib and /dev/null differ
diff --git a/README.md b/README.md
index 6fb3093..a4aedf1 100644
--- a/README.md
+++ b/README.md
@@ -1,51 +1,91 @@
-N4073 Reference Implementation
-=============
+Note
+====
+
+In the meantime the original reference implentation referenced below has gain CMake support, and should be preferred to this fork. See more at: [https://github.com/cpp-io2d/P0267_RefImpl](https://github.com/cpp-io2d/P0267_RefImpl)
+
-Please read the [LICENSE](https://github.com/mikebmcl/N3888_RefImpl/blob/master/LICENSE.md) before cloning or forking the code as there is important information there!
+P0267R0: A Proposal to Add 2D Graphics Rendering and Display to C++. Reference Implementation
+=============
-Please see the [wiki](https://github.com/mikebmcl/N3888_RefImpl/wiki) for links to forks which provide alternate implementations!
+Please read the [LICENSE](https://github.com/cristianadam/io2d/blob/master/LICENSE.md) before
+cloning or forking the code as there is important information there!
Overview
-------------
-This is a reference implementations of [N4073: A Proposal to Add 2D Rendering and Display to C++](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4073.pdf).
+This is a reference implementation of [P0267R0: A Proposal to Add 2D Graphics Rendering and Display to C++.](http://open-std.org/JTC1/SC22/WG21/docs/papers/2016/p0267r0.pdf).
+
+This is a fork of [https://github.com/mikebmcl/N3888_RefImpl/](https://github.com/mikebmcl/N3888_RefImpl/).
+This fork adds CMake Build support and to the reference implementation.
Requirements
-------------
-For Windows platforms, it currently requires Visual Studio 2013 (the free Express for Windows Desktop version should suffice) and Windows Vista or newer.
-
-For GNU/Linux platforms, it currently requires a non-ancient version of GNU autotools, cairo (>= 1.12.16), GTK+3.0 (>= 3.8.0), gmodule-2.0, gobject-2.0, and related libraries (autotools will tell you about any missing dependencies). By default it builds using GCC (>= 4.9.0), but you can configure it to use recent versions of Clang.
+[CMake build system](https://cmake.org/). A modern C++ compiler.
Discussion
-------------
-There are several places to discuss this proposal. You can discuss it on the [std-proposals forum](https://groups.google.com/a/isocpp.org/forum/?fromgroups#!forum/std-proposals), on the [SG 13 forum](https://groups.google.com/a/isocpp.org/forum/?fromgroups#!forum/io), or you can leave a comment on the [the blog post announcing the proposal](http://isocpp.org/blog/2014/07/n4073). Members of the cairo graphics library community are, of course, welcome to discuss the proposal in the cairo mailing list as well if they would prefer that.
+There are several places to discuss this proposal. You can discuss it on the [std-proposals forum](https://groups.google.com/a/isocpp.org/forum/?fromgroups#!forum/std-proposals),
+on the [SG 13 forum](https://groups.google.com/a/isocpp.org/forum/?fromgroups#!forum/sg13), or you can leave a comment on the
+[the blog post announcing the proposal](http://isocpp.org/blog/2014/07/N4073). Members of the cairo graphics library community are,
+of course, welcome to discuss the proposal in the cairo mailing list as well if they would prefer that.
Feedback
-------------
-If you have found a bug in the reference implementation or have a suggestion for improving N3888 please read the following. Note that any contributions must comply with the ISO patent and copyright policy, an overview of which is available in the ISO document [Participating in International Standardization](http://www.iso.org/iso/joining_in_2012.pdf).
+If you have found a bug in the reference implementation or have a suggestion for improving P0267R0 please read the following. Note that any
+contributions must comply with the ISO patent and copyright policy, an overview of which is available in the ISO
+document [Participating in International Standardization](http://www.iso.org/iso/joining_in_2012.pdf).
-* If you want to suggest a change to N4073 please file an [issue](https://github.com/mikebmcl/N3888_RefImpl/issues) with the tag [enhancement](https://github.com/mikebmcl/N3888_RefImpl/issues?labels=enhancement&page=1&state=open). We will consider these for future revisions of N4073. Pull requests for suggested changes will not be accepted because this is a reference implementation.
+* If you want to suggest a change to P0267R0 please file an [issue](https://github.com/mikebmcl/N3888_RefImpl/issues) with the tag [enhancement](https://github.com/mikebmcl/N3888_RefImpl/issues?labels=enhancement&page=1&state=open). We will consider these for future revisions of P0267R0. Pull requests for suggested changes will not be accepted because this is a reference implementation.
* If you have found a bug in the reference implementation, please file an issue with the tag [bug](https://github.com/mikebmcl/N3888_RefImpl/issues?labels=bug&page=1&state=open). Pull requests that fix bugs are welcome.
-* If you have found any sort of error in N4073 (be it a typo, an omission, a contradiction, or some other non-subjective problem), please file an issue with the tag [proposal-bug](https://github.com/mikebmcl/N3888_RefImpl/issues?labels=proposal-bug&page=1&state=open). We will do our best to address these in the next revision of N4073.
-* If you have created a reference implementation for another platform or tool-chain, please let us know. We welcome these types of pull requests provided that the implementation conforms to N4073 and the licensing terms are acceptable.
+* If you have found any sort of error in P0267R0 (be it a typo, an omission, a contradiction, or some other non-subjective problem), please file an issue with the tag [proposal-bug](https://github.com/mikebmcl/N3888_RefImpl/issues?labels=proposal-bug&page=1&state=open). We will do our best to address these in the next revision of P0267R0.
+* If you have created a reference implementation for another platform or tool-chain, please let us know. We welcome these types of pull requests provided that the implementation conforms to P0267R0 and the licensing terms are acceptable.
-Subsequent revisions to N4073 will be maintained in branches or in separate repositories, depending on which strategy seems appropriate at that time.
+Subsequent revisions to P0267R0 will be maintained in branches or in separate repositories, depending on which
+strategy seems appropriate at that time.
Licenses and Contributions (Important!)
-------------
-Any code that you offer as a pull request must be your own work. If your employer or institution has a moonlighting policy, the act of offering a pull request shall be considered a declaration that you complied with the terms of that policy and are free to make the contribution or that your employer or institution has expressly waived any IP rights it or they might have had in your contribution thus freeing you to make the contribution.
-
-If your contribution makes use of third party libraries it must comply with the licensing terms of those libraries. If the library is licensed under multiple licenses you must indicate which license your contribution is using ("whichever" is not acceptable). The terms of those licenses must be compatible with the terms of the licenses of any existing code. Code licensed under any version of the GPL will not be considered. (Note: LGPL code will be considered, though licenses that give more freedom to other developers are preferred.)
-
-You must specify a license for your contribution. If it is an original work, we suggest, but do not require, that you choose the MIT License. If the chosen license is unacceptable for some reason, you will be informed that the license is not acceptable.
-
-If your code is a derivative work of the reference implementation it must be licensed under the terms of the MIT License unless you obtain an express, written waiver from the original author of the reference implementation, Michael B. McLaughlin. (Literally written, as in fixed on paper, signed, and physically mailed to you).
-
-**If you fail to comply with the terms of any employer or institutional policies, the terms of any licenses, or if you infringe upon any patents, violate any trade secrets, violate any laws or regulations, or, by any act or omission, cause any legal action to be brought against the authors of N4073, the ISO C++ committee (ISO/IEC JTC1/SC22/WG21) or any of its members individually, or any participants in SG13 of the ISO C++ committee, you agree to pay all legal expenses of said persons and entities and indemnify every one of them in full in the event that any legally binding judgment is rendered against them.**
-
-Intellectual property rights are important. You may not agree with every IP law and regulation out there (I certainly have some suggestions for reforming them), but we cannot ignore them and hope nobody notices. Many of us do things like develop software, do technical writing, or work for companies where that is a big part of what pays the bills. In other words, our livelihoods depend on copyrights and licenses and the such. So I apologize for all the scary language above. But until I go a decade without seeing statements like "I haven't decided on a license yet but here's some code I wrote", I'll continue to write scary statements in hopes of scaring people into taking copyrights and licenses more seriously. And because I really do mean them. I don't want to be facing $50,000+ in lawyers bills plus some large monetary judgment because someone passed off somebody else's code as their own or didn't follow their employer's policies or whatever. I don't know anyone else who'd want to be facing that either.
-
-I encourage anyone with intellectual property disputes to try to work them out reasonably first, provided that doing so would not prejudice any of your rights in the event that a reasonable agreement cannot be reached. If you have any legal questions you should contact a knowledgeable attorney.
+Any code that you offer as a pull request must be your own work. If your employer or institution has a moonlighting policy,
+the act of offering a pull request shall be considered a declaration that you complied with the terms of that policy
+and are free to make the contribution or that your employer or institution has expressly waived any IP rights
+it or they might have had in your contribution thus freeing you to make the contribution.
+
+If your contribution makes use of third party libraries it must comply with the licensing terms of those
+libraries. If the library is licensed under multiple licenses you must indicate which license your
+contribution is using ("whichever" is not acceptable). The terms of those licenses must be compatible
+with the terms of the licenses of any existing code. Code licensed under any version of the GPL will
+not be considered. (Note: LGPL code will be considered, though licenses that give more freedom to other
+developers are preferred.)
+
+You must specify a license for your contribution. If it is an original work, we suggest, but do not require,
+that you choose the MIT License. If the chosen license is unacceptable for some reason, you will be informed
+that the license is not acceptable.
+
+If your code is a derivative work of the reference implementation it must be licensed under the terms of the
+MIT License unless you obtain an express, written waiver from the original author of the reference implementation,
+Michael B. McLaughlin. (Literally written, as in fixed on paper, signed, and physically mailed to you).
+
+**If you fail to comply with the terms of any employer or institutional policies, the terms of any licenses,
+or if you infringe upon any patents, violate any trade secrets, violate any laws or regulations, or, by
+any act or omission, cause any legal action to be brought against the authors of P0267R0, the ISO C++ committee
+(ISO/IEC JTC1/SC22/WG21) or any of its members individually, or any participants in SG13 of the ISO C++
+committee, you agree to pay all legal expenses of said persons and entities and indemnify every one of
+them in full in the event that any legally binding judgment is rendered against them.**
+
+Intellectual property rights are important. You may not agree with every IP law and regulation out there
+(I certainly have some suggestions for reforming them), but we cannot ignore them and hope nobody notices.
+Many of us do things like develop software, do technical writing, or work for companies where that is a
+big part of what pays the bills. In other words, our livelihoods depend on copyrights and licenses and
+the such. So I apologize for all the scary language above. But until I go a decade without seeing
+statements like "I haven't decided on a license yet but here's some code I wrote", I'll continue to
+write scary statements in hopes of scaring people into taking copyrights and licenses more seriously.
+And because I really do mean them. I don't want to be facing $50,000+ in lawyers bills plus some
+large monetary judgment because someone passed off somebody else's code as their own or didn't follow
+their employer's policies or whatever. I don't know anyone else who'd want to be facing that either.
+
+I encourage anyone with intellectual property disputes to try to work them out reasonably first,
+provided that doing so would not prejudice any of your rights in the event that a reasonable
+agreement cannot be reached. If you have any legal questions you should contact a knowledgeable attorney.
diff --git a/cairo/cairo-version.h b/cairo/cairo-version.h
deleted file mode 100644
index 107df30..0000000
--- a/cairo/cairo-version.h
+++ /dev/null
@@ -1,8 +0,0 @@
-#ifndef CAIRO_VERSION_H
-#define CAIRO_VERSION_H
-
-#define CAIRO_VERSION_MAJOR 1
-#define CAIRO_VERSION_MINOR 12
-#define CAIRO_VERSION_MICRO 16
-
-#endif
diff --git a/cairo/src/cairo-deprecated.h b/cairo/src/cairo-deprecated.h
deleted file mode 100644
index 7a56aad..0000000
--- a/cairo/src/cairo-deprecated.h
+++ /dev/null
@@ -1,123 +0,0 @@
-/* cairo - a vector graphics library with display and print output
- *
- * Copyright © 2006 Red Hat, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it either under the terms of the GNU Lesser General Public
- * License version 2.1 as published by the Free Software Foundation
- * (the "LGPL") or, at your option, under the terms of the Mozilla
- * Public License Version 1.1 (the "MPL"). If you do not alter this
- * notice, a recipient may use your version of this file under either
- * the MPL or the LGPL.
- *
- * You should have received a copy of the LGPL along with this library
- * in the file COPYING-LGPL-2.1; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA
- * You should have received a copy of the MPL along with this library
- * in the file COPYING-MPL-1.1
- *
- * The contents of this file are subject to the Mozilla Public License
- * Version 1.1 (the "License"); you may not use this file except in
- * compliance with the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
- * OF ANY KIND, either express or implied. See the LGPL or the MPL for
- * the specific language governing rights and limitations.
- *
- * The Original Code is the cairo graphics library.
- *
- * The Initial Developer of the Original Code is Red Hat, Inc.
- *
- * Contributor(s):
- * Carl D. Worth
- */
-
-#ifndef CAIRO_DEPRECATED_H
-#define CAIRO_DEPRECATED_H
-
-#define CAIRO_FONT_TYPE_ATSUI CAIRO_FONT_TYPE_QUARTZ
-
-/* Obsolete functions. These definitions exist to coerce the compiler
- * into providing a little bit of guidance with its error
- * messages. The idea is to help users port their old code without
- * having to dig through lots of documentation.
- *
- * The first set of REPLACED_BY functions is for functions whose names
- * have just been changed. So fixing these up is mechanical, (and
- * automated by means of the cairo/util/cairo-api-update script.
- *
- * The second set of DEPRECATED_BY functions is for functions where
- * the replacement is used in a different way, (ie. different
- * arguments, multiple functions instead of one, etc). Fixing these up
- * will require a bit more work on the user's part, (and hopefully we
- * can get cairo-api-update to find these and print some guiding
- * information).
- */
-#define cairo_current_font_extents cairo_current_font_extents_REPLACED_BY_cairo_font_extents
-#define cairo_get_font_extents cairo_get_font_extents_REPLACED_BY_cairo_font_extents
-#define cairo_current_operator cairo_current_operator_REPLACED_BY_cairo_get_operator
-#define cairo_current_tolerance cairo_current_tolerance_REPLACED_BY_cairo_get_tolerance
-#define cairo_current_point cairo_current_point_REPLACED_BY_cairo_get_current_point
-#define cairo_current_fill_rule cairo_current_fill_rule_REPLACED_BY_cairo_get_fill_rule
-#define cairo_current_line_width cairo_current_line_width_REPLACED_BY_cairo_get_line_width
-#define cairo_current_line_cap cairo_current_line_cap_REPLACED_BY_cairo_get_line_cap
-#define cairo_current_line_join cairo_current_line_join_REPLACED_BY_cairo_get_line_join
-#define cairo_current_miter_limit cairo_current_miter_limit_REPLACED_BY_cairo_get_miter_limit
-#define cairo_current_matrix cairo_current_matrix_REPLACED_BY_cairo_get_matrix
-#define cairo_current_target_surface cairo_current_target_surface_REPLACED_BY_cairo_get_target
-#define cairo_get_status cairo_get_status_REPLACED_BY_cairo_status
-#define cairo_concat_matrix cairo_concat_matrix_REPLACED_BY_cairo_transform
-#define cairo_scale_font cairo_scale_font_REPLACED_BY_cairo_set_font_size
-#define cairo_select_font cairo_select_font_REPLACED_BY_cairo_select_font_face
-#define cairo_transform_font cairo_transform_font_REPLACED_BY_cairo_set_font_matrix
-#define cairo_transform_point cairo_transform_point_REPLACED_BY_cairo_user_to_device
-#define cairo_transform_distance cairo_transform_distance_REPLACED_BY_cairo_user_to_device_distance
-#define cairo_inverse_transform_point cairo_inverse_transform_point_REPLACED_BY_cairo_device_to_user
-#define cairo_inverse_transform_distance cairo_inverse_transform_distance_REPLACED_BY_cairo_device_to_user_distance
-#define cairo_init_clip cairo_init_clip_REPLACED_BY_cairo_reset_clip
-#define cairo_surface_create_for_image cairo_surface_create_for_image_REPLACED_BY_cairo_image_surface_create_for_data
-#define cairo_default_matrix cairo_default_matrix_REPLACED_BY_cairo_identity_matrix
-#define cairo_matrix_set_affine cairo_matrix_set_affine_REPLACED_BY_cairo_matrix_init
-#define cairo_matrix_set_identity cairo_matrix_set_identity_REPLACED_BY_cairo_matrix_init_identity
-#define cairo_pattern_add_color_stop cairo_pattern_add_color_stop_REPLACED_BY_cairo_pattern_add_color_stop_rgba
-#define cairo_set_rgb_color cairo_set_rgb_color_REPLACED_BY_cairo_set_source_rgb
-#define cairo_set_pattern cairo_set_pattern_REPLACED_BY_cairo_set_source
-#define cairo_xlib_surface_create_for_pixmap_with_visual cairo_xlib_surface_create_for_pixmap_with_visual_REPLACED_BY_cairo_xlib_surface_create
-#define cairo_xlib_surface_create_for_window_with_visual cairo_xlib_surface_create_for_window_with_visual_REPLACED_BY_cairo_xlib_surface_create
-#define cairo_xcb_surface_create_for_pixmap_with_visual cairo_xcb_surface_create_for_pixmap_with_visual_REPLACED_BY_cairo_xcb_surface_create
-#define cairo_xcb_surface_create_for_window_with_visual cairo_xcb_surface_create_for_window_with_visual_REPLACED_BY_cairo_xcb_surface_create
-#define cairo_ps_surface_set_dpi cairo_ps_surface_set_dpi_REPLACED_BY_cairo_surface_set_fallback_resolution
-#define cairo_pdf_surface_set_dpi cairo_pdf_surface_set_dpi_REPLACED_BY_cairo_surface_set_fallback_resolution
-#define cairo_svg_surface_set_dpi cairo_svg_surface_set_dpi_REPLACED_BY_cairo_surface_set_fallback_resolution
-#define cairo_atsui_font_face_create_for_atsu_font_id cairo_atsui_font_face_create_for_atsu_font_id_REPLACED_BY_cairo_quartz_font_face_create_for_atsu_font_id
-
-#define cairo_current_path cairo_current_path_DEPRECATED_BY_cairo_copy_path
-#define cairo_current_path_flat cairo_current_path_flat_DEPRECATED_BY_cairo_copy_path_flat
-#define cairo_get_path cairo_get_path_DEPRECATED_BY_cairo_copy_path
-#define cairo_get_path_flat cairo_get_path_flat_DEPRECATED_BY_cairo_get_path_flat
-#define cairo_set_alpha cairo_set_alpha_DEPRECATED_BY_cairo_set_source_rgba_OR_cairo_paint_with_alpha
-#define cairo_show_surface cairo_show_surface_DEPRECATED_BY_cairo_set_source_surface_AND_cairo_paint
-#define cairo_copy cairo_copy_DEPRECATED_BY_cairo_create_AND_MANY_INDIVIDUAL_FUNCTIONS
-#define cairo_surface_set_repeat cairo_surface_set_repeat_DEPRECATED_BY_cairo_pattern_set_extend
-#define cairo_surface_set_matrix cairo_surface_set_matrix_DEPRECATED_BY_cairo_pattern_set_matrix
-#define cairo_surface_get_matrix cairo_surface_get_matrix_DEPRECATED_BY_cairo_pattern_get_matrix
-#define cairo_surface_set_filter cairo_surface_set_filter_DEPRECATED_BY_cairo_pattern_set_filter
-#define cairo_surface_get_filter cairo_surface_get_filter_DEPRECATED_BY_cairo_pattern_get_filter
-#define cairo_matrix_create cairo_matrix_create_DEPRECATED_BY_cairo_matrix_t
-#define cairo_matrix_destroy cairo_matrix_destroy_DEPRECATED_BY_cairo_matrix_t
-#define cairo_matrix_copy cairo_matrix_copy_DEPRECATED_BY_cairo_matrix_t
-#define cairo_matrix_get_affine cairo_matrix_get_affine_DEPRECATED_BY_cairo_matrix_t
-#define cairo_set_target_surface cairo_set_target_surface_DEPRECATED_BY_cairo_create
-#define cairo_set_target_image cairo_set_target_image_DEPRECATED_BY_cairo_image_surface_create_for_data
-#define cairo_set_target_pdf cairo_set_target_pdf_DEPRECATED_BY_cairo_pdf_surface_create
-#define cairo_set_target_png cairo_set_target_png_DEPRECATED_BY_cairo_surface_write_to_png
-#define cairo_set_target_ps cairo_set_target_ps_DEPRECATED_BY_cairo_ps_surface_create
-#define cairo_set_target_quartz cairo_set_target_quartz_DEPRECATED_BY_cairo_quartz_surface_create
-#define cairo_set_target_win32 cairo_set_target_win32_DEPRECATED_BY_cairo_win32_surface_create
-#define cairo_set_target_xcb cairo_set_target_xcb_DEPRECATED_BY_cairo_xcb_surface_create
-#define cairo_set_target_drawable cairo_set_target_drawable_DEPRECATED_BY_cairo_xlib_surface_create
-#define cairo_get_status_string cairo_get_status_string_DEPRECATED_BY_cairo_status_AND_cairo_status_to_string
-#define cairo_status_string cairo_status_string_DEPRECATED_BY_cairo_status_AND_cairo_status_to_string
-
-#endif /* CAIRO_DEPRECATED_H */
diff --git a/cairo/src/cairo-features.h b/cairo/src/cairo-features.h
deleted file mode 100644
index 9eae639..0000000
--- a/cairo/src/cairo-features.h
+++ /dev/null
@@ -1,17 +0,0 @@
-/* Generated by Makefile.win32.features-h. Do not edit. */
-#ifndef CAIRO_FEATURES_H
-#define CAIRO_FEATURES_H 1
-#define CAIRO_HAS_WIN32_SURFACE 1
-#define CAIRO_HAS_WIN32_FONT 1
-#define CAIRO_HAS_PNG_FUNCTIONS 1
-#define CAIRO_HAS_SCRIPT_SURFACE 1
-#define CAIRO_HAS_PS_SURFACE 1
-#define CAIRO_HAS_PDF_SURFACE 1
-#define CAIRO_HAS_SVG_SURFACE 1
-#define CAIRO_HAS_IMAGE_SURFACE 1
-#define CAIRO_HAS_MIME_SURFACE 1
-#define CAIRO_HAS_RECORDING_SURFACE 1
-#define CAIRO_HAS_OBSERVER_SURFACE 1
-#define CAIRO_HAS_USER_FONT 1
-#define CAIRO_HAS_INTERPRETER 1
-#endif
diff --git a/cairo/src/cairo-pdf.h b/cairo/src/cairo-pdf.h
deleted file mode 100644
index 1bc8524..0000000
--- a/cairo/src/cairo-pdf.h
+++ /dev/null
@@ -1,94 +0,0 @@
-/* cairo - a vector graphics library with display and print output
- *
- * Copyright © 2002 University of Southern California
- *
- * This library is free software; you can redistribute it and/or
- * modify it either under the terms of the GNU Lesser General Public
- * License version 2.1 as published by the Free Software Foundation
- * (the "LGPL") or, at your option, under the terms of the Mozilla
- * Public License Version 1.1 (the "MPL"). If you do not alter this
- * notice, a recipient may use your version of this file under either
- * the MPL or the LGPL.
- *
- * You should have received a copy of the LGPL along with this library
- * in the file COPYING-LGPL-2.1; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA
- * You should have received a copy of the MPL along with this library
- * in the file COPYING-MPL-1.1
- *
- * The contents of this file are subject to the Mozilla Public License
- * Version 1.1 (the "License"); you may not use this file except in
- * compliance with the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
- * OF ANY KIND, either express or implied. See the LGPL or the MPL for
- * the specific language governing rights and limitations.
- *
- * The Original Code is the cairo graphics library.
- *
- * The Initial Developer of the Original Code is University of Southern
- * California.
- *
- * Contributor(s):
- * Carl D. Worth
- */
-
-#ifndef CAIRO_PDF_H
-#define CAIRO_PDF_H
-
-#include "cairo.h"
-
-#if CAIRO_HAS_PDF_SURFACE
-
-CAIRO_BEGIN_DECLS
-
-/**
- * cairo_pdf_version_t:
- * @CAIRO_PDF_VERSION_1_4: The version 1.4 of the PDF specification. (Since 1.10)
- * @CAIRO_PDF_VERSION_1_5: The version 1.5 of the PDF specification. (Since 1.10)
- *
- * #cairo_pdf_version_t is used to describe the version number of the PDF
- * specification that a generated PDF file will conform to.
- *
- * Since: 1.10
- **/
-typedef enum _cairo_pdf_version {
- CAIRO_PDF_VERSION_1_4,
- CAIRO_PDF_VERSION_1_5
-} cairo_pdf_version_t;
-
-cairo_public cairo_surface_t *
-cairo_pdf_surface_create (const char *filename,
- double width_in_points,
- double height_in_points);
-
-cairo_public cairo_surface_t *
-cairo_pdf_surface_create_for_stream (cairo_write_func_t write_func,
- void *closure,
- double width_in_points,
- double height_in_points);
-
-cairo_public void
-cairo_pdf_surface_restrict_to_version (cairo_surface_t *surface,
- cairo_pdf_version_t version);
-
-cairo_public void
-cairo_pdf_get_versions (cairo_pdf_version_t const **versions,
- int *num_versions);
-
-cairo_public const char *
-cairo_pdf_version_to_string (cairo_pdf_version_t version);
-
-cairo_public void
-cairo_pdf_surface_set_size (cairo_surface_t *surface,
- double width_in_points,
- double height_in_points);
-
-CAIRO_END_DECLS
-
-#else /* CAIRO_HAS_PDF_SURFACE */
-# error Cairo was not compiled with support for the pdf backend
-#endif /* CAIRO_HAS_PDF_SURFACE */
-
-#endif /* CAIRO_PDF_H */
diff --git a/cairo/src/cairo-ps.h b/cairo/src/cairo-ps.h
deleted file mode 100644
index 33d0e0d..0000000
--- a/cairo/src/cairo-ps.h
+++ /dev/null
@@ -1,116 +0,0 @@
-/* cairo - a vector graphics library with display and print output
- *
- * Copyright © 2002 University of Southern California
- *
- * This library is free software; you can redistribute it and/or
- * modify it either under the terms of the GNU Lesser General Public
- * License version 2.1 as published by the Free Software Foundation
- * (the "LGPL") or, at your option, under the terms of the Mozilla
- * Public License Version 1.1 (the "MPL"). If you do not alter this
- * notice, a recipient may use your version of this file under either
- * the MPL or the LGPL.
- *
- * You should have received a copy of the LGPL along with this library
- * in the file COPYING-LGPL-2.1; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA
- * You should have received a copy of the MPL along with this library
- * in the file COPYING-MPL-1.1
- *
- * The contents of this file are subject to the Mozilla Public License
- * Version 1.1 (the "License"); you may not use this file except in
- * compliance with the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
- * OF ANY KIND, either express or implied. See the LGPL or the MPL for
- * the specific language governing rights and limitations.
- *
- * The Original Code is the cairo graphics library.
- *
- * The Initial Developer of the Original Code is University of Southern
- * California.
- *
- * Contributor(s):
- * Carl D. Worth
- */
-
-#ifndef CAIRO_PS_H
-#define CAIRO_PS_H
-
-#include "cairo.h"
-
-#if CAIRO_HAS_PS_SURFACE
-
-#include
-
-CAIRO_BEGIN_DECLS
-
-/* PS-surface functions */
-
-/**
- * cairo_ps_level_t:
- * @CAIRO_PS_LEVEL_2: The language level 2 of the PostScript specification. (Since 1.6)
- * @CAIRO_PS_LEVEL_3: The language level 3 of the PostScript specification. (Since 1.6)
- *
- * #cairo_ps_level_t is used to describe the language level of the
- * PostScript Language Reference that a generated PostScript file will
- * conform to.
- *
- * Since: 1.6
- **/
-typedef enum _cairo_ps_level {
- CAIRO_PS_LEVEL_2,
- CAIRO_PS_LEVEL_3
-} cairo_ps_level_t;
-
-cairo_public cairo_surface_t *
-cairo_ps_surface_create (const char *filename,
- double width_in_points,
- double height_in_points);
-
-cairo_public cairo_surface_t *
-cairo_ps_surface_create_for_stream (cairo_write_func_t write_func,
- void *closure,
- double width_in_points,
- double height_in_points);
-
-cairo_public void
-cairo_ps_surface_restrict_to_level (cairo_surface_t *surface,
- cairo_ps_level_t level);
-
-cairo_public void
-cairo_ps_get_levels (cairo_ps_level_t const **levels,
- int *num_levels);
-
-cairo_public const char *
-cairo_ps_level_to_string (cairo_ps_level_t level);
-
-cairo_public void
-cairo_ps_surface_set_eps (cairo_surface_t *surface,
- cairo_bool_t eps);
-
-cairo_public cairo_bool_t
-cairo_ps_surface_get_eps (cairo_surface_t *surface);
-
-cairo_public void
-cairo_ps_surface_set_size (cairo_surface_t *surface,
- double width_in_points,
- double height_in_points);
-
-cairo_public void
-cairo_ps_surface_dsc_comment (cairo_surface_t *surface,
- const char *comment);
-
-cairo_public void
-cairo_ps_surface_dsc_begin_setup (cairo_surface_t *surface);
-
-cairo_public void
-cairo_ps_surface_dsc_begin_page_setup (cairo_surface_t *surface);
-
-CAIRO_END_DECLS
-
-#else /* CAIRO_HAS_PS_SURFACE */
-# error Cairo was not compiled with support for the ps backend
-#endif /* CAIRO_HAS_PS_SURFACE */
-
-#endif /* CAIRO_PS_H */
diff --git a/cairo/src/cairo-script.h b/cairo/src/cairo-script.h
deleted file mode 100644
index b5a8cf3..0000000
--- a/cairo/src/cairo-script.h
+++ /dev/null
@@ -1,98 +0,0 @@
-/* cairo - a vector graphics library with display and print output
- *
- * Copyright © 2008 Chris Wilson
- *
- * This library is free software; you can redistribute it and/or
- * modify it either under the terms of the GNU Lesser General Public
- * License version 2.1 as published by the Free Software Foundation
- * (the "LGPL") or, at your option, under the terms of the Mozilla
- * Public License Version 1.1 (the "MPL"). If you do not alter this
- * notice, a recipient may use your version of this file under either
- * the MPL or the LGPL.
- *
- * You should have received a copy of the LGPL along with this library
- * in the file COPYING-LGPL-2.1; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA
- * You should have received a copy of the MPL along with this library
- * in the file COPYING-MPL-1.1
- *
- * The contents of this file are subject to the Mozilla Public License
- * Version 1.1 (the "License"); you may not use this file except in
- * compliance with the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
- * OF ANY KIND, either express or implied. See the LGPL or the MPL for
- * the specific language governing rights and limitations.
- *
- * The Original Code is the cairo graphics library.
- *
- * The Initial Developer of the Original Code is Chris Wilson
- *
- * Contributor(s):
- * Chris Wilson
- */
-
-#ifndef CAIRO_SCRIPT_H
-#define CAIRO_SCRIPT_H
-
-#include "cairo.h"
-
-#if CAIRO_HAS_SCRIPT_SURFACE
-
-CAIRO_BEGIN_DECLS
-
-/**
- * cairo_script_mode_t:
- * @CAIRO_SCRIPT_MODE_ASCII: the output will be in readable text (default). (Since 1.12)
- * @CAIRO_SCRIPT_MODE_BINARY: the output will use byte codes. (Since 1.12)
- *
- * A set of script output variants.
- *
- * Since: 1.12
- **/
-typedef enum {
- CAIRO_SCRIPT_MODE_ASCII,
- CAIRO_SCRIPT_MODE_BINARY
-} cairo_script_mode_t;
-
-cairo_public cairo_device_t *
-cairo_script_create (const char *filename);
-
-cairo_public cairo_device_t *
-cairo_script_create_for_stream (cairo_write_func_t write_func,
- void *closure);
-
-cairo_public void
-cairo_script_write_comment (cairo_device_t *script,
- const char *comment,
- int len);
-
-cairo_public void
-cairo_script_set_mode (cairo_device_t *script,
- cairo_script_mode_t mode);
-
-cairo_public cairo_script_mode_t
-cairo_script_get_mode (cairo_device_t *script);
-
-cairo_public cairo_surface_t *
-cairo_script_surface_create (cairo_device_t *script,
- cairo_content_t content,
- double width,
- double height);
-
-cairo_public cairo_surface_t *
-cairo_script_surface_create_for_target (cairo_device_t *script,
- cairo_surface_t *target);
-
-cairo_public cairo_status_t
-cairo_script_from_recording_surface (cairo_device_t *script,
- cairo_surface_t *recording_surface);
-
-CAIRO_END_DECLS
-
-#else /*CAIRO_HAS_SCRIPT_SURFACE*/
-# error Cairo was not compiled with support for the CairoScript backend
-#endif /*CAIRO_HAS_SCRIPT_SURFACE*/
-
-#endif /*CAIRO_SCRIPT_H*/
diff --git a/cairo/src/cairo-svg.h b/cairo/src/cairo-svg.h
deleted file mode 100644
index 592c645..0000000
--- a/cairo/src/cairo-svg.h
+++ /dev/null
@@ -1,84 +0,0 @@
-/* cairo - a vector graphics library with display and print output
- *
- * cairo-svg.h
- *
- * Copyright © 2005 Emmanuel Pacaud
- *
- * This library is free software; you can redistribute it and/or
- * modify it either under the terms of the GNU Lesser General Public
- * License version 2.1 as published by the Free Software Foundation
- * (the "LGPL") or, at your option, under the terms of the Mozilla
- * Public License Version 1.1 (the "MPL"). If you do not alter this
- * notice, a recipient may use your version of this file under either
- * the MPL or the LGPL.
- *
- * You should have received a copy of the LGPL along with this library
- * in the file COPYING-LGPL-2.1; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA
- * You should have received a copy of the MPL along with this library
- * in the file COPYING-MPL-1.1
- *
- * The contents of this file are subject to the Mozilla Public License
- * Version 1.1 (the "License"); you may not use this file except in
- * compliance with the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
- * OF ANY KIND, either express or implied. See the LGPL or the MPL for
- * the specific language governing rights and limitations.
- *
- */
-
-#ifndef CAIRO_SVG_H
-#define CAIRO_SVG_H
-
-#include "cairo.h"
-
-#if CAIRO_HAS_SVG_SURFACE
-
-CAIRO_BEGIN_DECLS
-
-/**
- * cairo_svg_version_t:
- * @CAIRO_SVG_VERSION_1_1: The version 1.1 of the SVG specification. (Since 1.2)
- * @CAIRO_SVG_VERSION_1_2: The version 1.2 of the SVG specification. (Since 1.2)
- *
- * #cairo_svg_version_t is used to describe the version number of the SVG
- * specification that a generated SVG file will conform to.
- *
- * Since: 1.2
- **/
-typedef enum _cairo_svg_version {
- CAIRO_SVG_VERSION_1_1,
- CAIRO_SVG_VERSION_1_2
-} cairo_svg_version_t;
-
-cairo_public cairo_surface_t *
-cairo_svg_surface_create (const char *filename,
- double width_in_points,
- double height_in_points);
-
-cairo_public cairo_surface_t *
-cairo_svg_surface_create_for_stream (cairo_write_func_t write_func,
- void *closure,
- double width_in_points,
- double height_in_points);
-
-cairo_public void
-cairo_svg_surface_restrict_to_version (cairo_surface_t *surface,
- cairo_svg_version_t version);
-
-cairo_public void
-cairo_svg_get_versions (cairo_svg_version_t const **versions,
- int *num_versions);
-
-cairo_public const char *
-cairo_svg_version_to_string (cairo_svg_version_t version);
-
-CAIRO_END_DECLS
-
-#else /* CAIRO_HAS_SVG_SURFACE */
-# error Cairo was not compiled with support for the svg backend
-#endif /* CAIRO_HAS_SVG_SURFACE */
-
-#endif /* CAIRO_SVG_H */
diff --git a/cairo/src/cairo-win32.h b/cairo/src/cairo-win32.h
deleted file mode 100644
index 3d2e1c6..0000000
--- a/cairo/src/cairo-win32.h
+++ /dev/null
@@ -1,112 +0,0 @@
-/* -*- Mode: c; tab-width: 8; c-basic-offset: 4; indent-tabs-mode: t; -*- */
-/* cairo - a vector graphics library with display and print output
- *
- * Copyright © 2005 Red Hat, Inc
- *
- * This library is free software; you can redistribute it and/or
- * modify it either under the terms of the GNU Lesser General Public
- * License version 2.1 as published by the Free Software Foundation
- * (the "LGPL") or, at your option, under the terms of the Mozilla
- * Public License Version 1.1 (the "MPL"). If you do not alter this
- * notice, a recipient may use your version of this file under either
- * the MPL or the LGPL.
- *
- * You should have received a copy of the LGPL along with this library
- * in the file COPYING-LGPL-2.1; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA
- * You should have received a copy of the MPL along with this library
- * in the file COPYING-MPL-1.1
- *
- * The contents of this file are subject to the Mozilla Public License
- * Version 1.1 (the "License"); you may not use this file except in
- * compliance with the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
- * OF ANY KIND, either express or implied. See the LGPL or the MPL for
- * the specific language governing rights and limitations.
- *
- * The Original Code is the cairo graphics library.
- *
- * The Initial Developer of the Original Code is Red Hat, Inc.
- *
- * Contributor(s):
- * Owen Taylor
- */
-
-#ifndef _CAIRO_WIN32_H_
-#define _CAIRO_WIN32_H_
-
-#include "cairo.h"
-
-#if CAIRO_HAS_WIN32_SURFACE
-
-#include
-
-CAIRO_BEGIN_DECLS
-
-cairo_public cairo_surface_t *
-cairo_win32_surface_create (HDC hdc);
-
-cairo_public cairo_surface_t *
-cairo_win32_printing_surface_create (HDC hdc);
-
-cairo_public cairo_surface_t *
-cairo_win32_surface_create_with_ddb (HDC hdc,
- cairo_format_t format,
- int width,
- int height);
-
-cairo_public cairo_surface_t *
-cairo_win32_surface_create_with_dib (cairo_format_t format,
- int width,
- int height);
-
-cairo_public HDC
-cairo_win32_surface_get_dc (cairo_surface_t *surface);
-
-cairo_public cairo_surface_t *
-cairo_win32_surface_get_image (cairo_surface_t *surface);
-
-#if CAIRO_HAS_WIN32_FONT
-
-/*
- * Win32 font support
- */
-
-cairo_public cairo_font_face_t *
-cairo_win32_font_face_create_for_logfontw (LOGFONTW *logfont);
-
-cairo_public cairo_font_face_t *
-cairo_win32_font_face_create_for_hfont (HFONT font);
-
-cairo_public cairo_font_face_t *
-cairo_win32_font_face_create_for_logfontw_hfont (LOGFONTW *logfont, HFONT font);
-
-cairo_public cairo_status_t
-cairo_win32_scaled_font_select_font (cairo_scaled_font_t *scaled_font,
- HDC hdc);
-
-cairo_public void
-cairo_win32_scaled_font_done_font (cairo_scaled_font_t *scaled_font);
-
-cairo_public double
-cairo_win32_scaled_font_get_metrics_factor (cairo_scaled_font_t *scaled_font);
-
-cairo_public void
-cairo_win32_scaled_font_get_logical_to_device (cairo_scaled_font_t *scaled_font,
- cairo_matrix_t *logical_to_device);
-
-cairo_public void
-cairo_win32_scaled_font_get_device_to_logical (cairo_scaled_font_t *scaled_font,
- cairo_matrix_t *device_to_logical);
-
-#endif /* CAIRO_HAS_WIN32_FONT */
-
-CAIRO_END_DECLS
-
-#else /* CAIRO_HAS_WIN32_SURFACE */
-# error Cairo was not compiled with support for the win32 backend
-#endif /* CAIRO_HAS_WIN32_SURFACE */
-
-#endif /* _CAIRO_WIN32_H_ */
diff --git a/cairo/src/cairo.h b/cairo/src/cairo.h
deleted file mode 100644
index a2f5aa3..0000000
--- a/cairo/src/cairo.h
+++ /dev/null
@@ -1,3117 +0,0 @@
-/* cairo - a vector graphics library with display and print output
- *
- * Copyright © 2002 University of Southern California
- * Copyright © 2005 Red Hat, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it either under the terms of the GNU Lesser General Public
- * License version 2.1 as published by the Free Software Foundation
- * (the "LGPL") or, at your option, under the terms of the Mozilla
- * Public License Version 1.1 (the "MPL"). If you do not alter this
- * notice, a recipient may use your version of this file under either
- * the MPL or the LGPL.
- *
- * You should have received a copy of the LGPL along with this library
- * in the file COPYING-LGPL-2.1; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA
- * You should have received a copy of the MPL along with this library
- * in the file COPYING-MPL-1.1
- *
- * The contents of this file are subject to the Mozilla Public License
- * Version 1.1 (the "License"); you may not use this file except in
- * compliance with the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
- * OF ANY KIND, either express or implied. See the LGPL or the MPL for
- * the specific language governing rights and limitations.
- *
- * The Original Code is the cairo graphics library.
- *
- * The Initial Developer of the Original Code is University of Southern
- * California.
- *
- * Contributor(s):
- * Carl D. Worth
- */
-
-#ifndef CAIRO_H
-#define CAIRO_H
-
-#include "cairo-version.h"
-#include "cairo-features.h"
-#include "cairo-deprecated.h"
-
-#ifdef __cplusplus
-# define CAIRO_BEGIN_DECLS extern "C" {
-# define CAIRO_END_DECLS }
-#else
-# define CAIRO_BEGIN_DECLS
-# define CAIRO_END_DECLS
-#endif
-
-#ifndef cairo_public
-# if defined (_MSC_VER) && ! defined (CAIRO_WIN32_STATIC_BUILD)
-# define cairo_public __declspec(dllimport)
-# else
-# define cairo_public
-# endif
-#endif
-
-CAIRO_BEGIN_DECLS
-
-#define CAIRO_VERSION_ENCODE(major, minor, micro) ( \
- ((major) * 10000) \
- + ((minor) * 100) \
- + ((micro) * 1))
-
-#define CAIRO_VERSION CAIRO_VERSION_ENCODE( \
- CAIRO_VERSION_MAJOR, \
- CAIRO_VERSION_MINOR, \
- CAIRO_VERSION_MICRO)
-
-
-#define CAIRO_VERSION_STRINGIZE_(major, minor, micro) \
- #major"."#minor"."#micro
-#define CAIRO_VERSION_STRINGIZE(major, minor, micro) \
- CAIRO_VERSION_STRINGIZE_(major, minor, micro)
-
-#define CAIRO_VERSION_STRING CAIRO_VERSION_STRINGIZE( \
- CAIRO_VERSION_MAJOR, \
- CAIRO_VERSION_MINOR, \
- CAIRO_VERSION_MICRO)
-
-
-cairo_public int
-cairo_version (void);
-
-cairo_public const char*
-cairo_version_string (void);
-
-/**
- * cairo_bool_t:
- *
- * #cairo_bool_t is used for boolean values. Returns of type
- * #cairo_bool_t will always be either 0 or 1, but testing against
- * these values explicitly is not encouraged; just use the
- * value as a boolean condition.
- *
- *
- * if (cairo_in_stroke (cr, x, y)) {
- * /* do something */
- * }
- *
- *
- * Since: 1.0
- **/
-typedef int cairo_bool_t;
-
-/**
- * cairo_t:
- *
- * A #cairo_t contains the current state of the rendering device,
- * including coordinates of yet to be drawn shapes.
- *
- * Cairo contexts, as #cairo_t objects are named, are central to
- * cairo and all drawing with cairo is always done to a #cairo_t
- * object.
- *
- * Memory management of #cairo_t is done with
- * cairo_reference() and cairo_destroy().
- *
- * Since: 1.0
- **/
-typedef struct _cairo cairo_t;
-
-/**
- * cairo_surface_t:
- *
- * A #cairo_surface_t represents an image, either as the destination
- * of a drawing operation or as source when drawing onto another
- * surface. To draw to a #cairo_surface_t, create a cairo context
- * with the surface as the target, using cairo_create().
- *
- * There are different subtypes of #cairo_surface_t for
- * different drawing backends; for example, cairo_image_surface_create()
- * creates a bitmap image in memory.
- * The type of a surface can be queried with cairo_surface_get_type().
- *
- * The initial contents of a surface after creation depend upon the manner
- * of its creation. If cairo creates the surface and backing storage for
- * the user, it will be initially cleared; for example,
- * cairo_image_surface_create() and cairo_surface_create_similar().
- * Alternatively, if the user passes in a reference to some backing storage
- * and asks cairo to wrap that in a #cairo_surface_t, then the contents are
- * not modified; for example, cairo_image_surface_create_for_data() and
- * cairo_xlib_surface_create().
- *
- * Memory management of #cairo_surface_t is done with
- * cairo_surface_reference() and cairo_surface_destroy().
- *
- * Since: 1.0
- **/
-typedef struct _cairo_surface cairo_surface_t;
-
-/**
- * cairo_device_t:
- *
- * A #cairo_device_t represents the driver interface for drawing
- * operations to a #cairo_surface_t. There are different subtypes of
- * #cairo_device_t for different drawing backends; for example,
- * cairo_egl_device_create() creates a device that wraps an EGL display and
- * context.
- *
- * The type of a device can be queried with cairo_device_get_type().
- *
- * Memory management of #cairo_device_t is done with
- * cairo_device_reference() and cairo_device_destroy().
- *
- * Since: 1.10
- **/
-typedef struct _cairo_device cairo_device_t;
-
-/**
- * cairo_matrix_t:
- * @xx: xx component of the affine transformation
- * @yx: yx component of the affine transformation
- * @xy: xy component of the affine transformation
- * @yy: yy component of the affine transformation
- * @x0: X translation component of the affine transformation
- * @y0: Y translation component of the affine transformation
- *
- * A #cairo_matrix_t holds an affine transformation, such as a scale,
- * rotation, shear, or a combination of those. The transformation of
- * a point (x, y) is given by:
- *
- * x_new = xx * x + xy * y + x0;
- * y_new = yx * x + yy * y + y0;
- *
- *
- * Since: 1.0
- **/
-typedef struct _cairo_matrix {
- double xx; double yx;
- double xy; double yy;
- double x0; double y0;
-} cairo_matrix_t;
-
-/**
- * cairo_pattern_t:
- *
- * A #cairo_pattern_t represents a source when drawing onto a
- * surface. There are different subtypes of #cairo_pattern_t,
- * for different types of sources; for example,
- * cairo_pattern_create_rgb() creates a pattern for a solid
- * opaque color.
- *
- * Other than various
- * cairo_pattern_create_type()
- * functions, some of the pattern types can be implicitly created using various
- * cairo_set_source_type() functions;
- * for example cairo_set_source_rgb().
- *
- * The type of a pattern can be queried with cairo_pattern_get_type().
- *
- * Memory management of #cairo_pattern_t is done with
- * cairo_pattern_reference() and cairo_pattern_destroy().
- *
- * Since: 1.0
- **/
-typedef struct _cairo_pattern cairo_pattern_t;
-
-/**
- * cairo_destroy_func_t:
- * @data: The data element being destroyed.
- *
- * #cairo_destroy_func_t the type of function which is called when a
- * data element is destroyed. It is passed the pointer to the data
- * element and should free any memory and resources allocated for it.
- *
- * Since: 1.0
- **/
-typedef void (*cairo_destroy_func_t) (void *data);
-
-/**
- * cairo_user_data_key_t:
- * @unused: not used; ignore.
- *
- * #cairo_user_data_key_t is used for attaching user data to cairo
- * data structures. The actual contents of the struct is never used,
- * and there is no need to initialize the object; only the unique
- * address of a #cairo_data_key_t object is used. Typically, you
- * would just use the address of a static #cairo_data_key_t object.
- *
- * Since: 1.0
- **/
-typedef struct _cairo_user_data_key {
- int unused;
-} cairo_user_data_key_t;
-
-/**
- * cairo_status_t:
- * @CAIRO_STATUS_SUCCESS: no error has occurred (Since 1.0)
- * @CAIRO_STATUS_NO_MEMORY: out of memory (Since 1.0)
- * @CAIRO_STATUS_INVALID_RESTORE: cairo_restore() called without matching cairo_save() (Since 1.0)
- * @CAIRO_STATUS_INVALID_POP_GROUP: no saved group to pop, i.e. cairo_pop_group() without matching cairo_push_group() (Since 1.0)
- * @CAIRO_STATUS_NO_CURRENT_POINT: no current point defined (Since 1.0)
- * @CAIRO_STATUS_INVALID_MATRIX: invalid matrix (not invertible) (Since 1.0)
- * @CAIRO_STATUS_INVALID_STATUS: invalid value for an input #cairo_status_t (Since 1.0)
- * @CAIRO_STATUS_NULL_POINTER: %NULL pointer (Since 1.0)
- * @CAIRO_STATUS_INVALID_STRING: input string not valid UTF-8 (Since 1.0)
- * @CAIRO_STATUS_INVALID_PATH_DATA: input path data not valid (Since 1.0)
- * @CAIRO_STATUS_READ_ERROR: error while reading from input stream (Since 1.0)
- * @CAIRO_STATUS_WRITE_ERROR: error while writing to output stream (Since 1.0)
- * @CAIRO_STATUS_SURFACE_FINISHED: target surface has been finished (Since 1.0)
- * @CAIRO_STATUS_SURFACE_TYPE_MISMATCH: the surface type is not appropriate for the operation (Since 1.0)
- * @CAIRO_STATUS_PATTERN_TYPE_MISMATCH: the pattern type is not appropriate for the operation (Since 1.0)
- * @CAIRO_STATUS_INVALID_CONTENT: invalid value for an input #cairo_content_t (Since 1.0)
- * @CAIRO_STATUS_INVALID_FORMAT: invalid value for an input #cairo_format_t (Since 1.0)
- * @CAIRO_STATUS_INVALID_VISUAL: invalid value for an input Visual* (Since 1.0)
- * @CAIRO_STATUS_FILE_NOT_FOUND: file not found (Since 1.0)
- * @CAIRO_STATUS_INVALID_DASH: invalid value for a dash setting (Since 1.0)
- * @CAIRO_STATUS_INVALID_DSC_COMMENT: invalid value for a DSC comment (Since 1.2)
- * @CAIRO_STATUS_INVALID_INDEX: invalid index passed to getter (Since 1.4)
- * @CAIRO_STATUS_CLIP_NOT_REPRESENTABLE: clip region not representable in desired format (Since 1.4)
- * @CAIRO_STATUS_TEMP_FILE_ERROR: error creating or writing to a temporary file (Since 1.6)
- * @CAIRO_STATUS_INVALID_STRIDE: invalid value for stride (Since 1.6)
- * @CAIRO_STATUS_FONT_TYPE_MISMATCH: the font type is not appropriate for the operation (Since 1.8)
- * @CAIRO_STATUS_USER_FONT_IMMUTABLE: the user-font is immutable (Since 1.8)
- * @CAIRO_STATUS_USER_FONT_ERROR: error occurred in a user-font callback function (Since 1.8)
- * @CAIRO_STATUS_NEGATIVE_COUNT: negative number used where it is not allowed (Since 1.8)
- * @CAIRO_STATUS_INVALID_CLUSTERS: input clusters do not represent the accompanying text and glyph array (Since 1.8)
- * @CAIRO_STATUS_INVALID_SLANT: invalid value for an input #cairo_font_slant_t (Since 1.8)
- * @CAIRO_STATUS_INVALID_WEIGHT: invalid value for an input #cairo_font_weight_t (Since 1.8)
- * @CAIRO_STATUS_INVALID_SIZE: invalid value (typically too big) for the size of the input (surface, pattern, etc.) (Since 1.10)
- * @CAIRO_STATUS_USER_FONT_NOT_IMPLEMENTED: user-font method not implemented (Since 1.10)
- * @CAIRO_STATUS_DEVICE_TYPE_MISMATCH: the device type is not appropriate for the operation (Since 1.10)
- * @CAIRO_STATUS_DEVICE_ERROR: an operation to the device caused an unspecified error (Since 1.10)
- * @CAIRO_STATUS_INVALID_MESH_CONSTRUCTION: a mesh pattern
- * construction operation was used outside of a
- * cairo_mesh_pattern_begin_patch()/cairo_mesh_pattern_end_patch()
- * pair (Since 1.12)
- * @CAIRO_STATUS_DEVICE_FINISHED: target device has been finished (Since 1.12)
- * @CAIRO_STATUS_LAST_STATUS: this is a special value indicating the number of
- * status values defined in this enumeration. When using this value, note
- * that the version of cairo at run-time may have additional status values
- * defined than the value of this symbol at compile-time. (Since 1.10)
- *
- * #cairo_status_t is used to indicate errors that can occur when
- * using Cairo. In some cases it is returned directly by functions.
- * but when using #cairo_t, the last error, if any, is stored in
- * the context and can be retrieved with cairo_status().
- *
- * New entries may be added in future versions. Use cairo_status_to_string()
- * to get a human-readable representation of an error message.
- *
- * Since: 1.0
- **/
-typedef enum _cairo_status {
- CAIRO_STATUS_SUCCESS = 0,
-
- CAIRO_STATUS_NO_MEMORY,
- CAIRO_STATUS_INVALID_RESTORE,
- CAIRO_STATUS_INVALID_POP_GROUP,
- CAIRO_STATUS_NO_CURRENT_POINT,
- CAIRO_STATUS_INVALID_MATRIX,
- CAIRO_STATUS_INVALID_STATUS,
- CAIRO_STATUS_NULL_POINTER,
- CAIRO_STATUS_INVALID_STRING,
- CAIRO_STATUS_INVALID_PATH_DATA,
- CAIRO_STATUS_READ_ERROR,
- CAIRO_STATUS_WRITE_ERROR,
- CAIRO_STATUS_SURFACE_FINISHED,
- CAIRO_STATUS_SURFACE_TYPE_MISMATCH,
- CAIRO_STATUS_PATTERN_TYPE_MISMATCH,
- CAIRO_STATUS_INVALID_CONTENT,
- CAIRO_STATUS_INVALID_FORMAT,
- CAIRO_STATUS_INVALID_VISUAL,
- CAIRO_STATUS_FILE_NOT_FOUND,
- CAIRO_STATUS_INVALID_DASH,
- CAIRO_STATUS_INVALID_DSC_COMMENT,
- CAIRO_STATUS_INVALID_INDEX,
- CAIRO_STATUS_CLIP_NOT_REPRESENTABLE,
- CAIRO_STATUS_TEMP_FILE_ERROR,
- CAIRO_STATUS_INVALID_STRIDE,
- CAIRO_STATUS_FONT_TYPE_MISMATCH,
- CAIRO_STATUS_USER_FONT_IMMUTABLE,
- CAIRO_STATUS_USER_FONT_ERROR,
- CAIRO_STATUS_NEGATIVE_COUNT,
- CAIRO_STATUS_INVALID_CLUSTERS,
- CAIRO_STATUS_INVALID_SLANT,
- CAIRO_STATUS_INVALID_WEIGHT,
- CAIRO_STATUS_INVALID_SIZE,
- CAIRO_STATUS_USER_FONT_NOT_IMPLEMENTED,
- CAIRO_STATUS_DEVICE_TYPE_MISMATCH,
- CAIRO_STATUS_DEVICE_ERROR,
- CAIRO_STATUS_INVALID_MESH_CONSTRUCTION,
- CAIRO_STATUS_DEVICE_FINISHED,
-
- CAIRO_STATUS_LAST_STATUS
-} cairo_status_t;
-
-/**
- * cairo_content_t:
- * @CAIRO_CONTENT_COLOR: The surface will hold color content only. (Since 1.0)
- * @CAIRO_CONTENT_ALPHA: The surface will hold alpha content only. (Since 1.0)
- * @CAIRO_CONTENT_COLOR_ALPHA: The surface will hold color and alpha content. (Since 1.0)
- *
- * #cairo_content_t is used to describe the content that a surface will
- * contain, whether color information, alpha information (translucence
- * vs. opacity), or both.
- *
- * Note: The large values here are designed to keep #cairo_content_t
- * values distinct from #cairo_format_t values so that the
- * implementation can detect the error if users confuse the two types.
- *
- * Since: 1.0
- **/
-typedef enum _cairo_content {
- CAIRO_CONTENT_COLOR = 0x1000,
- CAIRO_CONTENT_ALPHA = 0x2000,
- CAIRO_CONTENT_COLOR_ALPHA = 0x3000
-} cairo_content_t;
-
-/**
- * cairo_format_t:
- * @CAIRO_FORMAT_INVALID: no such format exists or is supported.
- * @CAIRO_FORMAT_ARGB32: each pixel is a 32-bit quantity, with
- * alpha in the upper 8 bits, then red, then green, then blue.
- * The 32-bit quantities are stored native-endian. Pre-multiplied
- * alpha is used. (That is, 50% transparent red is 0x80800000,
- * not 0x80ff0000.) (Since 1.0)
- * @CAIRO_FORMAT_RGB24: each pixel is a 32-bit quantity, with
- * the upper 8 bits unused. Red, Green, and Blue are stored
- * in the remaining 24 bits in that order. (Since 1.0)
- * @CAIRO_FORMAT_A8: each pixel is a 8-bit quantity holding
- * an alpha value. (Since 1.0)
- * @CAIRO_FORMAT_A1: each pixel is a 1-bit quantity holding
- * an alpha value. Pixels are packed together into 32-bit
- * quantities. The ordering of the bits matches the
- * endianess of the platform. On a big-endian machine, the
- * first pixel is in the uppermost bit, on a little-endian
- * machine the first pixel is in the least-significant bit. (Since 1.0)
- * @CAIRO_FORMAT_RGB16_565: each pixel is a 16-bit quantity
- * with red in the upper 5 bits, then green in the middle
- * 6 bits, and blue in the lower 5 bits. (Since 1.2)
- * @CAIRO_FORMAT_RGB30: like RGB24 but with 10bpc. (Since 1.12)
- *
- * #cairo_format_t is used to identify the memory format of
- * image data.
- *
- * New entries may be added in future versions.
- *
- * Since: 1.0
- **/
-typedef enum _cairo_format {
- CAIRO_FORMAT_INVALID = -1,
- CAIRO_FORMAT_ARGB32 = 0,
- CAIRO_FORMAT_RGB24 = 1,
- CAIRO_FORMAT_A8 = 2,
- CAIRO_FORMAT_A1 = 3,
- CAIRO_FORMAT_RGB16_565 = 4,
- CAIRO_FORMAT_RGB30 = 5
-} cairo_format_t;
-
-
-/**
- * cairo_write_func_t:
- * @closure: the output closure
- * @data: the buffer containing the data to write
- * @length: the amount of data to write
- *
- * #cairo_write_func_t is the type of function which is called when a
- * backend needs to write data to an output stream. It is passed the
- * closure which was specified by the user at the time the write
- * function was registered, the data to write and the length of the
- * data in bytes. The write function should return
- * %CAIRO_STATUS_SUCCESS if all the data was successfully written,
- * %CAIRO_STATUS_WRITE_ERROR otherwise.
- *
- * Returns: the status code of the write operation
- *
- * Since: 1.0
- **/
-typedef cairo_status_t (*cairo_write_func_t) (void *closure,
- const unsigned char *data,
- unsigned int length);
-
-/**
- * cairo_read_func_t:
- * @closure: the input closure
- * @data: the buffer into which to read the data
- * @length: the amount of data to read
- *
- * #cairo_read_func_t is the type of function which is called when a
- * backend needs to read data from an input stream. It is passed the
- * closure which was specified by the user at the time the read
- * function was registered, the buffer to read the data into and the
- * length of the data in bytes. The read function should return
- * %CAIRO_STATUS_SUCCESS if all the data was successfully read,
- * %CAIRO_STATUS_READ_ERROR otherwise.
- *
- * Returns: the status code of the read operation
- *
- * Since: 1.0
- **/
-typedef cairo_status_t (*cairo_read_func_t) (void *closure,
- unsigned char *data,
- unsigned int length);
-
-/**
- * cairo_rectangle_int_t:
- * @x: X coordinate of the left side of the rectangle
- * @y: Y coordinate of the the top side of the rectangle
- * @width: width of the rectangle
- * @height: height of the rectangle
- *
- * A data structure for holding a rectangle with integer coordinates.
- *
- * Since: 1.10
- **/
-
-typedef struct _cairo_rectangle_int {
- int x, y;
- int width, height;
-} cairo_rectangle_int_t;
-
-
-/* Functions for manipulating state objects */
-cairo_public cairo_t *
-cairo_create (cairo_surface_t *target);
-
-cairo_public cairo_t *
-cairo_reference (cairo_t *cr);
-
-cairo_public void
-cairo_destroy (cairo_t *cr);
-
-cairo_public unsigned int
-cairo_get_reference_count (cairo_t *cr);
-
-cairo_public void *
-cairo_get_user_data (cairo_t *cr,
- const cairo_user_data_key_t *key);
-
-cairo_public cairo_status_t
-cairo_set_user_data (cairo_t *cr,
- const cairo_user_data_key_t *key,
- void *user_data,
- cairo_destroy_func_t destroy);
-
-cairo_public void
-cairo_save (cairo_t *cr);
-
-cairo_public void
-cairo_restore (cairo_t *cr);
-
-cairo_public void
-cairo_push_group (cairo_t *cr);
-
-cairo_public void
-cairo_push_group_with_content (cairo_t *cr, cairo_content_t content);
-
-cairo_public cairo_pattern_t *
-cairo_pop_group (cairo_t *cr);
-
-cairo_public void
-cairo_pop_group_to_source (cairo_t *cr);
-
-/* Modify state */
-
-/**
- * cairo_operator_t:
- * @CAIRO_OPERATOR_CLEAR: clear destination layer (bounded) (Since 1.0)
- * @CAIRO_OPERATOR_SOURCE: replace destination layer (bounded) (Since 1.0)
- * @CAIRO_OPERATOR_OVER: draw source layer on top of destination layer
- * (bounded) (Since 1.0)
- * @CAIRO_OPERATOR_IN: draw source where there was destination content
- * (unbounded) (Since 1.0)
- * @CAIRO_OPERATOR_OUT: draw source where there was no destination
- * content (unbounded) (Since 1.0)
- * @CAIRO_OPERATOR_ATOP: draw source on top of destination content and
- * only there (Since 1.0)
- * @CAIRO_OPERATOR_DEST: ignore the source (Since 1.0)
- * @CAIRO_OPERATOR_DEST_OVER: draw destination on top of source (Since 1.0)
- * @CAIRO_OPERATOR_DEST_IN: leave destination only where there was
- * source content (unbounded) (Since 1.0)
- * @CAIRO_OPERATOR_DEST_OUT: leave destination only where there was no
- * source content (Since 1.0)
- * @CAIRO_OPERATOR_DEST_ATOP: leave destination on top of source content
- * and only there (unbounded) (Since 1.0)
- * @CAIRO_OPERATOR_XOR: source and destination are shown where there is only
- * one of them (Since 1.0)
- * @CAIRO_OPERATOR_ADD: source and destination layers are accumulated (Since 1.0)
- * @CAIRO_OPERATOR_SATURATE: like over, but assuming source and dest are
- * disjoint geometries (Since 1.0)
- * @CAIRO_OPERATOR_MULTIPLY: source and destination layers are multiplied.
- * This causes the result to be at least as dark as the darker inputs. (Since 1.10)
- * @CAIRO_OPERATOR_SCREEN: source and destination are complemented and
- * multiplied. This causes the result to be at least as light as the lighter
- * inputs. (Since 1.10)
- * @CAIRO_OPERATOR_OVERLAY: multiplies or screens, depending on the
- * lightness of the destination color. (Since 1.10)
- * @CAIRO_OPERATOR_DARKEN: replaces the destination with the source if it
- * is darker, otherwise keeps the source. (Since 1.10)
- * @CAIRO_OPERATOR_LIGHTEN: replaces the destination with the source if it
- * is lighter, otherwise keeps the source. (Since 1.10)
- * @CAIRO_OPERATOR_COLOR_DODGE: brightens the destination color to reflect
- * the source color. (Since 1.10)
- * @CAIRO_OPERATOR_COLOR_BURN: darkens the destination color to reflect
- * the source color. (Since 1.10)
- * @CAIRO_OPERATOR_HARD_LIGHT: Multiplies or screens, dependent on source
- * color. (Since 1.10)
- * @CAIRO_OPERATOR_SOFT_LIGHT: Darkens or lightens, dependent on source
- * color. (Since 1.10)
- * @CAIRO_OPERATOR_DIFFERENCE: Takes the difference of the source and
- * destination color. (Since 1.10)
- * @CAIRO_OPERATOR_EXCLUSION: Produces an effect similar to difference, but
- * with lower contrast. (Since 1.10)
- * @CAIRO_OPERATOR_HSL_HUE: Creates a color with the hue of the source
- * and the saturation and luminosity of the target. (Since 1.10)
- * @CAIRO_OPERATOR_HSL_SATURATION: Creates a color with the saturation
- * of the source and the hue and luminosity of the target. Painting with
- * this mode onto a gray area produces no change. (Since 1.10)
- * @CAIRO_OPERATOR_HSL_COLOR: Creates a color with the hue and saturation
- * of the source and the luminosity of the target. This preserves the gray
- * levels of the target and is useful for coloring monochrome images or
- * tinting color images. (Since 1.10)
- * @CAIRO_OPERATOR_HSL_LUMINOSITY: Creates a color with the luminosity of
- * the source and the hue and saturation of the target. This produces an
- * inverse effect to @CAIRO_OPERATOR_HSL_COLOR. (Since 1.10)
- *
- * #cairo_operator_t is used to set the compositing operator for all cairo
- * drawing operations.
- *
- * The default operator is %CAIRO_OPERATOR_OVER.
- *
- * The operators marked as unbounded modify their
- * destination even outside of the mask layer (that is, their effect is not
- * bound by the mask layer). However, their effect can still be limited by
- * way of clipping.
- *
- * To keep things simple, the operator descriptions here
- * document the behavior for when both source and destination are either fully
- * transparent or fully opaque. The actual implementation works for
- * translucent layers too.
- * For a more detailed explanation of the effects of each operator, including
- * the mathematical definitions, see
- * http://cairographics.org/operators/.
- *
- * Since: 1.0
- **/
-typedef enum _cairo_operator {
- CAIRO_OPERATOR_CLEAR,
-
- CAIRO_OPERATOR_SOURCE,
- CAIRO_OPERATOR_OVER,
- CAIRO_OPERATOR_IN,
- CAIRO_OPERATOR_OUT,
- CAIRO_OPERATOR_ATOP,
-
- CAIRO_OPERATOR_DEST,
- CAIRO_OPERATOR_DEST_OVER,
- CAIRO_OPERATOR_DEST_IN,
- CAIRO_OPERATOR_DEST_OUT,
- CAIRO_OPERATOR_DEST_ATOP,
-
- CAIRO_OPERATOR_XOR,
- CAIRO_OPERATOR_ADD,
- CAIRO_OPERATOR_SATURATE,
-
- CAIRO_OPERATOR_MULTIPLY,
- CAIRO_OPERATOR_SCREEN,
- CAIRO_OPERATOR_OVERLAY,
- CAIRO_OPERATOR_DARKEN,
- CAIRO_OPERATOR_LIGHTEN,
- CAIRO_OPERATOR_COLOR_DODGE,
- CAIRO_OPERATOR_COLOR_BURN,
- CAIRO_OPERATOR_HARD_LIGHT,
- CAIRO_OPERATOR_SOFT_LIGHT,
- CAIRO_OPERATOR_DIFFERENCE,
- CAIRO_OPERATOR_EXCLUSION,
- CAIRO_OPERATOR_HSL_HUE,
- CAIRO_OPERATOR_HSL_SATURATION,
- CAIRO_OPERATOR_HSL_COLOR,
- CAIRO_OPERATOR_HSL_LUMINOSITY
-} cairo_operator_t;
-
-cairo_public void
-cairo_set_operator (cairo_t *cr, cairo_operator_t op);
-
-cairo_public void
-cairo_set_source (cairo_t *cr, cairo_pattern_t *source);
-
-cairo_public void
-cairo_set_source_rgb (cairo_t *cr, double red, double green, double blue);
-
-cairo_public void
-cairo_set_source_rgba (cairo_t *cr,
- double red, double green, double blue,
- double alpha);
-
-cairo_public void
-cairo_set_source_surface (cairo_t *cr,
- cairo_surface_t *surface,
- double x,
- double y);
-
-cairo_public void
-cairo_set_tolerance (cairo_t *cr, double tolerance);
-
-/**
- * cairo_antialias_t:
- * @CAIRO_ANTIALIAS_DEFAULT: Use the default antialiasing for
- * the subsystem and target device, since 1.0
- * @CAIRO_ANTIALIAS_NONE: Use a bilevel alpha mask, since 1.0
- * @CAIRO_ANTIALIAS_GRAY: Perform single-color antialiasing (using
- * shades of gray for black text on a white background, for example), since 1.0
- * @CAIRO_ANTIALIAS_SUBPIXEL: Perform antialiasing by taking
- * advantage of the order of subpixel elements on devices
- * such as LCD panels, since 1.0
- * @CAIRO_ANTIALIAS_FAST: Hint that the backend should perform some
- * antialiasing but prefer speed over quality, since 1.12
- * @CAIRO_ANTIALIAS_GOOD: The backend should balance quality against
- * performance, since 1.12
- * @CAIRO_ANTIALIAS_BEST: Hint that the backend should render at the highest
- * quality, sacrificing speed if necessary, since 1.12
- *
- * Specifies the type of antialiasing to do when rendering text or shapes.
- *
- * As it is not necessarily clear from the above what advantages a particular
- * antialias method provides, since 1.12, there is also a set of hints:
- * @CAIRO_ANTIALIAS_FAST: Allow the backend to degrade raster quality for speed
- * @CAIRO_ANTIALIAS_GOOD: A balance between speed and quality
- * @CAIRO_ANTIALIAS_BEST: A high-fidelity, but potentially slow, raster mode
- *
- * These make no guarantee on how the backend will perform its rasterisation
- * (if it even rasterises!), nor that they have any differing effect other
- * than to enable some form of antialiasing. In the case of glyph rendering,
- * @CAIRO_ANTIALIAS_FAST and @CAIRO_ANTIALIAS_GOOD will be mapped to
- * @CAIRO_ANTIALIAS_GRAY, with @CAIRO_ANTALIAS_BEST being equivalent to
- * @CAIRO_ANTIALIAS_SUBPIXEL.
- *
- * The interpretation of @CAIRO_ANTIALIAS_DEFAULT is left entirely up to
- * the backend, typically this will be similar to @CAIRO_ANTIALIAS_GOOD.
- *
- * Since: 1.0
- **/
-typedef enum _cairo_antialias {
- CAIRO_ANTIALIAS_DEFAULT,
-
- /* method */
- CAIRO_ANTIALIAS_NONE,
- CAIRO_ANTIALIAS_GRAY,
- CAIRO_ANTIALIAS_SUBPIXEL,
-
- /* hints */
- CAIRO_ANTIALIAS_FAST,
- CAIRO_ANTIALIAS_GOOD,
- CAIRO_ANTIALIAS_BEST
-} cairo_antialias_t;
-
-cairo_public void
-cairo_set_antialias (cairo_t *cr, cairo_antialias_t antialias);
-
-/**
- * cairo_fill_rule_t:
- * @CAIRO_FILL_RULE_WINDING: If the path crosses the ray from
- * left-to-right, counts +1. If the path crosses the ray
- * from right to left, counts -1. (Left and right are determined
- * from the perspective of looking along the ray from the starting
- * point.) If the total count is non-zero, the point will be filled. (Since 1.0)
- * @CAIRO_FILL_RULE_EVEN_ODD: Counts the total number of
- * intersections, without regard to the orientation of the contour. If
- * the total number of intersections is odd, the point will be
- * filled. (Since 1.0)
- *
- * #cairo_fill_rule_t is used to select how paths are filled. For both
- * fill rules, whether or not a point is included in the fill is
- * determined by taking a ray from that point to infinity and looking
- * at intersections with the path. The ray can be in any direction,
- * as long as it doesn't pass through the end point of a segment
- * or have a tricky intersection such as intersecting tangent to the path.
- * (Note that filling is not actually implemented in this way. This
- * is just a description of the rule that is applied.)
- *
- * The default fill rule is %CAIRO_FILL_RULE_WINDING.
- *
- * New entries may be added in future versions.
- *
- * Since: 1.0
- **/
-typedef enum _cairo_fill_rule {
- CAIRO_FILL_RULE_WINDING,
- CAIRO_FILL_RULE_EVEN_ODD
-} cairo_fill_rule_t;
-
-cairo_public void
-cairo_set_fill_rule (cairo_t *cr, cairo_fill_rule_t fill_rule);
-
-cairo_public void
-cairo_set_line_width (cairo_t *cr, double width);
-
-/**
- * cairo_line_cap_t:
- * @CAIRO_LINE_CAP_BUTT: start(stop) the line exactly at the start(end) point (Since 1.0)
- * @CAIRO_LINE_CAP_ROUND: use a round ending, the center of the circle is the end point (Since 1.0)
- * @CAIRO_LINE_CAP_SQUARE: use squared ending, the center of the square is the end point (Since 1.0)
- *
- * Specifies how to render the endpoints of the path when stroking.
- *
- * The default line cap style is %CAIRO_LINE_CAP_BUTT.
- *
- * Since: 1.0
- **/
-typedef enum _cairo_line_cap {
- CAIRO_LINE_CAP_BUTT,
- CAIRO_LINE_CAP_ROUND,
- CAIRO_LINE_CAP_SQUARE
-} cairo_line_cap_t;
-
-cairo_public void
-cairo_set_line_cap (cairo_t *cr, cairo_line_cap_t line_cap);
-
-/**
- * cairo_line_join_t:
- * @CAIRO_LINE_JOIN_MITER: use a sharp (angled) corner, see
- * cairo_set_miter_limit() (Since 1.0)
- * @CAIRO_LINE_JOIN_ROUND: use a rounded join, the center of the circle is the
- * joint point (Since 1.0)
- * @CAIRO_LINE_JOIN_BEVEL: use a cut-off join, the join is cut off at half
- * the line width from the joint point (Since 1.0)
- *
- * Specifies how to render the junction of two lines when stroking.
- *
- * The default line join style is %CAIRO_LINE_JOIN_MITER.
- *
- * Since: 1.0
- **/
-typedef enum _cairo_line_join {
- CAIRO_LINE_JOIN_MITER,
- CAIRO_LINE_JOIN_ROUND,
- CAIRO_LINE_JOIN_BEVEL
-} cairo_line_join_t;
-
-cairo_public void
-cairo_set_line_join (cairo_t *cr, cairo_line_join_t line_join);
-
-cairo_public void
-cairo_set_dash (cairo_t *cr,
- const double *dashes,
- int num_dashes,
- double offset);
-
-cairo_public void
-cairo_set_miter_limit (cairo_t *cr, double limit);
-
-cairo_public void
-cairo_translate (cairo_t *cr, double tx, double ty);
-
-cairo_public void
-cairo_scale (cairo_t *cr, double sx, double sy);
-
-cairo_public void
-cairo_rotate (cairo_t *cr, double angle);
-
-cairo_public void
-cairo_transform (cairo_t *cr,
- const cairo_matrix_t *matrix);
-
-cairo_public void
-cairo_set_matrix (cairo_t *cr,
- const cairo_matrix_t *matrix);
-
-cairo_public void
-cairo_identity_matrix (cairo_t *cr);
-
-cairo_public void
-cairo_user_to_device (cairo_t *cr, double *x, double *y);
-
-cairo_public void
-cairo_user_to_device_distance (cairo_t *cr, double *dx, double *dy);
-
-cairo_public void
-cairo_device_to_user (cairo_t *cr, double *x, double *y);
-
-cairo_public void
-cairo_device_to_user_distance (cairo_t *cr, double *dx, double *dy);
-
-/* Path creation functions */
-cairo_public void
-cairo_new_path (cairo_t *cr);
-
-cairo_public void
-cairo_move_to (cairo_t *cr, double x, double y);
-
-cairo_public void
-cairo_new_sub_path (cairo_t *cr);
-
-cairo_public void
-cairo_line_to (cairo_t *cr, double x, double y);
-
-cairo_public void
-cairo_curve_to (cairo_t *cr,
- double x1, double y1,
- double x2, double y2,
- double x3, double y3);
-
-cairo_public void
-cairo_arc (cairo_t *cr,
- double xc, double yc,
- double radius,
- double angle1, double angle2);
-
-cairo_public void
-cairo_arc_negative (cairo_t *cr,
- double xc, double yc,
- double radius,
- double angle1, double angle2);
-
-/* XXX: NYI
-cairo_public void
-cairo_arc_to (cairo_t *cr,
- double x1, double y1,
- double x2, double y2,
- double radius);
-*/
-
-cairo_public void
-cairo_rel_move_to (cairo_t *cr, double dx, double dy);
-
-cairo_public void
-cairo_rel_line_to (cairo_t *cr, double dx, double dy);
-
-cairo_public void
-cairo_rel_curve_to (cairo_t *cr,
- double dx1, double dy1,
- double dx2, double dy2,
- double dx3, double dy3);
-
-cairo_public void
-cairo_rectangle (cairo_t *cr,
- double x, double y,
- double width, double height);
-
-/* XXX: NYI
-cairo_public void
-cairo_stroke_to_path (cairo_t *cr);
-*/
-
-cairo_public void
-cairo_close_path (cairo_t *cr);
-
-cairo_public void
-cairo_path_extents (cairo_t *cr,
- double *x1, double *y1,
- double *x2, double *y2);
-
-/* Painting functions */
-cairo_public void
-cairo_paint (cairo_t *cr);
-
-cairo_public void
-cairo_paint_with_alpha (cairo_t *cr,
- double alpha);
-
-cairo_public void
-cairo_mask (cairo_t *cr,
- cairo_pattern_t *pattern);
-
-cairo_public void
-cairo_mask_surface (cairo_t *cr,
- cairo_surface_t *surface,
- double surface_x,
- double surface_y);
-
-cairo_public void
-cairo_stroke (cairo_t *cr);
-
-cairo_public void
-cairo_stroke_preserve (cairo_t *cr);
-
-cairo_public void
-cairo_fill (cairo_t *cr);
-
-cairo_public void
-cairo_fill_preserve (cairo_t *cr);
-
-cairo_public void
-cairo_copy_page (cairo_t *cr);
-
-cairo_public void
-cairo_show_page (cairo_t *cr);
-
-/* Insideness testing */
-cairo_public cairo_bool_t
-cairo_in_stroke (cairo_t *cr, double x, double y);
-
-cairo_public cairo_bool_t
-cairo_in_fill (cairo_t *cr, double x, double y);
-
-cairo_public cairo_bool_t
-cairo_in_clip (cairo_t *cr, double x, double y);
-
-/* Rectangular extents */
-cairo_public void
-cairo_stroke_extents (cairo_t *cr,
- double *x1, double *y1,
- double *x2, double *y2);
-
-cairo_public void
-cairo_fill_extents (cairo_t *cr,
- double *x1, double *y1,
- double *x2, double *y2);
-
-/* Clipping */
-cairo_public void
-cairo_reset_clip (cairo_t *cr);
-
-cairo_public void
-cairo_clip (cairo_t *cr);
-
-cairo_public void
-cairo_clip_preserve (cairo_t *cr);
-
-cairo_public void
-cairo_clip_extents (cairo_t *cr,
- double *x1, double *y1,
- double *x2, double *y2);
-
-/**
- * cairo_rectangle_t:
- * @x: X coordinate of the left side of the rectangle
- * @y: Y coordinate of the the top side of the rectangle
- * @width: width of the rectangle
- * @height: height of the rectangle
- *
- * A data structure for holding a rectangle.
- *
- * Since: 1.4
- **/
-typedef struct _cairo_rectangle {
- double x, y, width, height;
-} cairo_rectangle_t;
-
-/**
- * cairo_rectangle_list_t:
- * @status: Error status of the rectangle list
- * @rectangles: Array containing the rectangles
- * @num_rectangles: Number of rectangles in this list
- *
- * A data structure for holding a dynamically allocated
- * array of rectangles.
- *
- * Since: 1.4
- **/
-typedef struct _cairo_rectangle_list {
- cairo_status_t status;
- cairo_rectangle_t *rectangles;
- int num_rectangles;
-} cairo_rectangle_list_t;
-
-cairo_public cairo_rectangle_list_t *
-cairo_copy_clip_rectangle_list (cairo_t *cr);
-
-cairo_public void
-cairo_rectangle_list_destroy (cairo_rectangle_list_t *rectangle_list);
-
-/* Font/Text functions */
-
-/**
- * cairo_scaled_font_t:
- *
- * A #cairo_scaled_font_t is a font scaled to a particular size and device
- * resolution. A #cairo_scaled_font_t is most useful for low-level font
- * usage where a library or application wants to cache a reference
- * to a scaled font to speed up the computation of metrics.
- *
- * There are various types of scaled fonts, depending on the
- * font backend they use. The type of a
- * scaled font can be queried using cairo_scaled_font_get_type().
- *
- * Memory management of #cairo_scaled_font_t is done with
- * cairo_scaled_font_reference() and cairo_scaled_font_destroy().
- *
- * Since: 1.0
- **/
-typedef struct _cairo_scaled_font cairo_scaled_font_t;
-
-/**
- * cairo_font_face_t:
- *
- * A #cairo_font_face_t specifies all aspects of a font other
- * than the size or font matrix (a font matrix is used to distort
- * a font by sheering it or scaling it unequally in the two
- * directions) . A font face can be set on a #cairo_t by using
- * cairo_set_font_face(); the size and font matrix are set with
- * cairo_set_font_size() and cairo_set_font_matrix().
- *
- * There are various types of font faces, depending on the
- * font backend they use. The type of a
- * font face can be queried using cairo_font_face_get_type().
- *
- * Memory management of #cairo_font_face_t is done with
- * cairo_font_face_reference() and cairo_font_face_destroy().
- *
- * Since: 1.0
- **/
-typedef struct _cairo_font_face cairo_font_face_t;
-
-/**
- * cairo_glyph_t:
- * @index: glyph index in the font. The exact interpretation of the
- * glyph index depends on the font technology being used.
- * @x: the offset in the X direction between the origin used for
- * drawing or measuring the string and the origin of this glyph.
- * @y: the offset in the Y direction between the origin used for
- * drawing or measuring the string and the origin of this glyph.
- *
- * The #cairo_glyph_t structure holds information about a single glyph
- * when drawing or measuring text. A font is (in simple terms) a
- * collection of shapes used to draw text. A glyph is one of these
- * shapes. There can be multiple glyphs for a single character
- * (alternates to be used in different contexts, for example), or a
- * glyph can be a ligature of multiple
- * characters. Cairo doesn't expose any way of converting input text
- * into glyphs, so in order to use the Cairo interfaces that take
- * arrays of glyphs, you must directly access the appropriate
- * underlying font system.
- *
- * Note that the offsets given by @x and @y are not cumulative. When
- * drawing or measuring text, each glyph is individually positioned
- * with respect to the overall origin
- *
- * Since: 1.0
- **/
-typedef struct {
- unsigned long index;
- double x;
- double y;
-} cairo_glyph_t;
-
-cairo_public cairo_glyph_t *
-cairo_glyph_allocate (int num_glyphs);
-
-cairo_public void
-cairo_glyph_free (cairo_glyph_t *glyphs);
-
-/**
- * cairo_text_cluster_t:
- * @num_bytes: the number of bytes of UTF-8 text covered by cluster
- * @num_glyphs: the number of glyphs covered by cluster
- *
- * The #cairo_text_cluster_t structure holds information about a single
- * text cluster. A text cluster is a minimal
- * mapping of some glyphs corresponding to some UTF-8 text.
- *
- * For a cluster to be valid, both @num_bytes and @num_glyphs should
- * be non-negative, and at least one should be non-zero.
- * Note that clusters with zero glyphs are not as well supported as
- * normal clusters. For example, PDF rendering applications typically
- * ignore those clusters when PDF text is being selected.
- *
- * See cairo_show_text_glyphs() for how clusters are used in advanced
- * text operations.
- *
- * Since: 1.8
- **/
-typedef struct {
- int num_bytes;
- int num_glyphs;
-} cairo_text_cluster_t;
-
-cairo_public cairo_text_cluster_t *
-cairo_text_cluster_allocate (int num_clusters);
-
-cairo_public void
-cairo_text_cluster_free (cairo_text_cluster_t *clusters);
-
-/**
- * cairo_text_cluster_flags_t:
- * @CAIRO_TEXT_CLUSTER_FLAG_BACKWARD: The clusters in the cluster array
- * map to glyphs in the glyph array from end to start. (Since 1.8)
- *
- * Specifies properties of a text cluster mapping.
- *
- * Since: 1.8
- **/
-typedef enum _cairo_text_cluster_flags {
- CAIRO_TEXT_CLUSTER_FLAG_BACKWARD = 0x00000001
-} cairo_text_cluster_flags_t;
-
-/**
- * cairo_text_extents_t:
- * @x_bearing: the horizontal distance from the origin to the
- * leftmost part of the glyphs as drawn. Positive if the
- * glyphs lie entirely to the right of the origin.
- * @y_bearing: the vertical distance from the origin to the
- * topmost part of the glyphs as drawn. Positive only if the
- * glyphs lie completely below the origin; will usually be
- * negative.
- * @width: width of the glyphs as drawn
- * @height: height of the glyphs as drawn
- * @x_advance:distance to advance in the X direction
- * after drawing these glyphs
- * @y_advance: distance to advance in the Y direction
- * after drawing these glyphs. Will typically be zero except
- * for vertical text layout as found in East-Asian languages.
- *
- * The #cairo_text_extents_t structure stores the extents of a single
- * glyph or a string of glyphs in user-space coordinates. Because text
- * extents are in user-space coordinates, they are mostly, but not
- * entirely, independent of the current transformation matrix. If you call
- * cairo_scale(cr, 2.0, 2.0), text will
- * be drawn twice as big, but the reported text extents will not be
- * doubled. They will change slightly due to hinting (so you can't
- * assume that metrics are independent of the transformation matrix),
- * but otherwise will remain unchanged.
- *
- * Since: 1.0
- **/
-typedef struct {
- double x_bearing;
- double y_bearing;
- double width;
- double height;
- double x_advance;
- double y_advance;
-} cairo_text_extents_t;
-
-/**
- * cairo_font_extents_t:
- * @ascent: the distance that the font extends above the baseline.
- * Note that this is not always exactly equal to the maximum
- * of the extents of all the glyphs in the font, but rather
- * is picked to express the font designer's intent as to
- * how the font should align with elements above it.
- * @descent: the distance that the font extends below the baseline.
- * This value is positive for typical fonts that include
- * portions below the baseline. Note that this is not always
- * exactly equal to the maximum of the extents of all the
- * glyphs in the font, but rather is picked to express the
- * font designer's intent as to how the font should
- * align with elements below it.
- * @height: the recommended vertical distance between baselines when
- * setting consecutive lines of text with the font. This
- * is greater than @ascent+@descent by a
- * quantity known as the line spacing
- * or external leading. When space
- * is at a premium, most fonts can be set with only
- * a distance of @ascent+@descent between lines.
- * @max_x_advance: the maximum distance in the X direction that
- * the origin is advanced for any glyph in the font.
- * @max_y_advance: the maximum distance in the Y direction that
- * the origin is advanced for any glyph in the font.
- * This will be zero for normal fonts used for horizontal
- * writing. (The scripts of East Asia are sometimes written
- * vertically.)
- *
- * The #cairo_font_extents_t structure stores metric information for
- * a font. Values are given in the current user-space coordinate
- * system.
- *
- * Because font metrics are in user-space coordinates, they are
- * mostly, but not entirely, independent of the current transformation
- * matrix. If you call cairo_scale(cr, 2.0, 2.0),
- * text will be drawn twice as big, but the reported text extents will
- * not be doubled. They will change slightly due to hinting (so you
- * can't assume that metrics are independent of the transformation
- * matrix), but otherwise will remain unchanged.
- *
- * Since: 1.0
- **/
-typedef struct {
- double ascent;
- double descent;
- double height;
- double max_x_advance;
- double max_y_advance;
-} cairo_font_extents_t;
-
-/**
- * cairo_font_slant_t:
- * @CAIRO_FONT_SLANT_NORMAL: Upright font style, since 1.0
- * @CAIRO_FONT_SLANT_ITALIC: Italic font style, since 1.0
- * @CAIRO_FONT_SLANT_OBLIQUE: Oblique font style, since 1.0
- *
- * Specifies variants of a font face based on their slant.
- *
- * Since: 1.0
- **/
-typedef enum _cairo_font_slant {
- CAIRO_FONT_SLANT_NORMAL,
- CAIRO_FONT_SLANT_ITALIC,
- CAIRO_FONT_SLANT_OBLIQUE
-} cairo_font_slant_t;
-
-/**
- * cairo_font_weight_t:
- * @CAIRO_FONT_WEIGHT_NORMAL: Normal font weight, since 1.0
- * @CAIRO_FONT_WEIGHT_BOLD: Bold font weight, since 1.0
- *
- * Specifies variants of a font face based on their weight.
- *
- * Since: 1.0
- **/
-typedef enum _cairo_font_weight {
- CAIRO_FONT_WEIGHT_NORMAL,
- CAIRO_FONT_WEIGHT_BOLD
-} cairo_font_weight_t;
-
-/**
- * cairo_subpixel_order_t:
- * @CAIRO_SUBPIXEL_ORDER_DEFAULT: Use the default subpixel order for
- * for the target device, since 1.0
- * @CAIRO_SUBPIXEL_ORDER_RGB: Subpixel elements are arranged horizontally
- * with red at the left, since 1.0
- * @CAIRO_SUBPIXEL_ORDER_BGR: Subpixel elements are arranged horizontally
- * with blue at the left, since 1.0
- * @CAIRO_SUBPIXEL_ORDER_VRGB: Subpixel elements are arranged vertically
- * with red at the top, since 1.0
- * @CAIRO_SUBPIXEL_ORDER_VBGR: Subpixel elements are arranged vertically
- * with blue at the top, since 1.0
- *
- * The subpixel order specifies the order of color elements within
- * each pixel on the display device when rendering with an
- * antialiasing mode of %CAIRO_ANTIALIAS_SUBPIXEL.
- *
- * Since: 1.0
- **/
-typedef enum _cairo_subpixel_order {
- CAIRO_SUBPIXEL_ORDER_DEFAULT,
- CAIRO_SUBPIXEL_ORDER_RGB,
- CAIRO_SUBPIXEL_ORDER_BGR,
- CAIRO_SUBPIXEL_ORDER_VRGB,
- CAIRO_SUBPIXEL_ORDER_VBGR
-} cairo_subpixel_order_t;
-
-/**
- * cairo_hint_style_t:
- * @CAIRO_HINT_STYLE_DEFAULT: Use the default hint style for
- * font backend and target device, since 1.0
- * @CAIRO_HINT_STYLE_NONE: Do not hint outlines, since 1.0
- * @CAIRO_HINT_STYLE_SLIGHT: Hint outlines slightly to improve
- * contrast while retaining good fidelity to the original
- * shapes, since 1.0
- * @CAIRO_HINT_STYLE_MEDIUM: Hint outlines with medium strength
- * giving a compromise between fidelity to the original shapes
- * and contrast, since 1.0
- * @CAIRO_HINT_STYLE_FULL: Hint outlines to maximize contrast, since 1.0
- *
- * Specifies the type of hinting to do on font outlines. Hinting
- * is the process of fitting outlines to the pixel grid in order
- * to improve the appearance of the result. Since hinting outlines
- * involves distorting them, it also reduces the faithfulness
- * to the original outline shapes. Not all of the outline hinting
- * styles are supported by all font backends.
- *
- * New entries may be added in future versions.
- *
- * Since: 1.0
- **/
-typedef enum _cairo_hint_style {
- CAIRO_HINT_STYLE_DEFAULT,
- CAIRO_HINT_STYLE_NONE,
- CAIRO_HINT_STYLE_SLIGHT,
- CAIRO_HINT_STYLE_MEDIUM,
- CAIRO_HINT_STYLE_FULL
-} cairo_hint_style_t;
-
-/**
- * cairo_hint_metrics_t:
- * @CAIRO_HINT_METRICS_DEFAULT: Hint metrics in the default
- * manner for the font backend and target device, since 1.0
- * @CAIRO_HINT_METRICS_OFF: Do not hint font metrics, since 1.0
- * @CAIRO_HINT_METRICS_ON: Hint font metrics, since 1.0
- *
- * Specifies whether to hint font metrics; hinting font metrics
- * means quantizing them so that they are integer values in
- * device space. Doing this improves the consistency of
- * letter and line spacing, however it also means that text
- * will be laid out differently at different zoom factors.
- *
- * Since: 1.0
- **/
-typedef enum _cairo_hint_metrics {
- CAIRO_HINT_METRICS_DEFAULT,
- CAIRO_HINT_METRICS_OFF,
- CAIRO_HINT_METRICS_ON
-} cairo_hint_metrics_t;
-
-/**
- * cairo_font_options_t:
- *
- * An opaque structure holding all options that are used when
- * rendering fonts.
- *
- * Individual features of a #cairo_font_options_t can be set or
- * accessed using functions named
- * cairo_font_options_set_feature_name() and
- * cairo_font_options_get_feature_name(), like
- * cairo_font_options_set_antialias() and
- * cairo_font_options_get_antialias().
- *
- * New features may be added to a #cairo_font_options_t in the
- * future. For this reason, cairo_font_options_copy(),
- * cairo_font_options_equal(), cairo_font_options_merge(), and
- * cairo_font_options_hash() should be used to copy, check
- * for equality, merge, or compute a hash value of
- * #cairo_font_options_t objects.
- *
- * Since: 1.0
- **/
-typedef struct _cairo_font_options cairo_font_options_t;
-
-cairo_public cairo_font_options_t *
-cairo_font_options_create (void);
-
-cairo_public cairo_font_options_t *
-cairo_font_options_copy (const cairo_font_options_t *original);
-
-cairo_public void
-cairo_font_options_destroy (cairo_font_options_t *options);
-
-cairo_public cairo_status_t
-cairo_font_options_status (cairo_font_options_t *options);
-
-cairo_public void
-cairo_font_options_merge (cairo_font_options_t *options,
- const cairo_font_options_t *other);
-cairo_public cairo_bool_t
-cairo_font_options_equal (const cairo_font_options_t *options,
- const cairo_font_options_t *other);
-
-cairo_public unsigned long
-cairo_font_options_hash (const cairo_font_options_t *options);
-
-cairo_public void
-cairo_font_options_set_antialias (cairo_font_options_t *options,
- cairo_antialias_t antialias);
-cairo_public cairo_antialias_t
-cairo_font_options_get_antialias (const cairo_font_options_t *options);
-
-cairo_public void
-cairo_font_options_set_subpixel_order (cairo_font_options_t *options,
- cairo_subpixel_order_t subpixel_order);
-cairo_public cairo_subpixel_order_t
-cairo_font_options_get_subpixel_order (const cairo_font_options_t *options);
-
-cairo_public void
-cairo_font_options_set_hint_style (cairo_font_options_t *options,
- cairo_hint_style_t hint_style);
-cairo_public cairo_hint_style_t
-cairo_font_options_get_hint_style (const cairo_font_options_t *options);
-
-cairo_public void
-cairo_font_options_set_hint_metrics (cairo_font_options_t *options,
- cairo_hint_metrics_t hint_metrics);
-cairo_public cairo_hint_metrics_t
-cairo_font_options_get_hint_metrics (const cairo_font_options_t *options);
-
-/* This interface is for dealing with text as text, not caring about the
- font object inside the the cairo_t. */
-
-cairo_public void
-cairo_select_font_face (cairo_t *cr,
- const char *family,
- cairo_font_slant_t slant,
- cairo_font_weight_t weight);
-
-cairo_public void
-cairo_set_font_size (cairo_t *cr, double size);
-
-cairo_public void
-cairo_set_font_matrix (cairo_t *cr,
- const cairo_matrix_t *matrix);
-
-cairo_public void
-cairo_get_font_matrix (cairo_t *cr,
- cairo_matrix_t *matrix);
-
-cairo_public void
-cairo_set_font_options (cairo_t *cr,
- const cairo_font_options_t *options);
-
-cairo_public void
-cairo_get_font_options (cairo_t *cr,
- cairo_font_options_t *options);
-
-cairo_public void
-cairo_set_font_face (cairo_t *cr, cairo_font_face_t *font_face);
-
-cairo_public cairo_font_face_t *
-cairo_get_font_face (cairo_t *cr);
-
-cairo_public void
-cairo_set_scaled_font (cairo_t *cr,
- const cairo_scaled_font_t *scaled_font);
-
-cairo_public cairo_scaled_font_t *
-cairo_get_scaled_font (cairo_t *cr);
-
-cairo_public void
-cairo_show_text (cairo_t *cr, const char *utf8);
-
-cairo_public void
-cairo_show_glyphs (cairo_t *cr, const cairo_glyph_t *glyphs, int num_glyphs);
-
-cairo_public void
-cairo_show_text_glyphs (cairo_t *cr,
- const char *utf8,
- int utf8_len,
- const cairo_glyph_t *glyphs,
- int num_glyphs,
- const cairo_text_cluster_t *clusters,
- int num_clusters,
- cairo_text_cluster_flags_t cluster_flags);
-
-cairo_public void
-cairo_text_path (cairo_t *cr, const char *utf8);
-
-cairo_public void
-cairo_glyph_path (cairo_t *cr, const cairo_glyph_t *glyphs, int num_glyphs);
-
-cairo_public void
-cairo_text_extents (cairo_t *cr,
- const char *utf8,
- cairo_text_extents_t *extents);
-
-cairo_public void
-cairo_glyph_extents (cairo_t *cr,
- const cairo_glyph_t *glyphs,
- int num_glyphs,
- cairo_text_extents_t *extents);
-
-cairo_public void
-cairo_font_extents (cairo_t *cr,
- cairo_font_extents_t *extents);
-
-/* Generic identifier for a font style */
-
-cairo_public cairo_font_face_t *
-cairo_font_face_reference (cairo_font_face_t *font_face);
-
-cairo_public void
-cairo_font_face_destroy (cairo_font_face_t *font_face);
-
-cairo_public unsigned int
-cairo_font_face_get_reference_count (cairo_font_face_t *font_face);
-
-cairo_public cairo_status_t
-cairo_font_face_status (cairo_font_face_t *font_face);
-
-
-/**
- * cairo_font_type_t:
- * @CAIRO_FONT_TYPE_TOY: The font was created using cairo's toy font api (Since: 1.2)
- * @CAIRO_FONT_TYPE_FT: The font is of type FreeType (Since: 1.2)
- * @CAIRO_FONT_TYPE_WIN32: The font is of type Win32 (Since: 1.2)
- * @CAIRO_FONT_TYPE_QUARTZ: The font is of type Quartz (Since: 1.6, in 1.2 and
- * 1.4 it was named CAIRO_FONT_TYPE_ATSUI)
- * @CAIRO_FONT_TYPE_USER: The font was create using cairo's user font api (Since: 1.8)
- *
- * #cairo_font_type_t is used to describe the type of a given font
- * face or scaled font. The font types are also known as "font
- * backends" within cairo.
- *
- * The type of a font face is determined by the function used to
- * create it, which will generally be of the form
- * cairo_type_font_face_create().
- * The font face type can be queried with cairo_font_face_get_type()
- *
- * The various #cairo_font_face_t functions can be used with a font face
- * of any type.
- *
- * The type of a scaled font is determined by the type of the font
- * face passed to cairo_scaled_font_create(). The scaled font type can
- * be queried with cairo_scaled_font_get_type()
- *
- * The various #cairo_scaled_font_t functions can be used with scaled
- * fonts of any type, but some font backends also provide
- * type-specific functions that must only be called with a scaled font
- * of the appropriate type. These functions have names that begin with
- * cairo_type_scaled_font()
- * such as cairo_ft_scaled_font_lock_face().
- *
- * The behavior of calling a type-specific function with a scaled font
- * of the wrong type is undefined.
- *
- * New entries may be added in future versions.
- *
- * Since: 1.2
- **/
-typedef enum _cairo_font_type {
- CAIRO_FONT_TYPE_TOY,
- CAIRO_FONT_TYPE_FT,
- CAIRO_FONT_TYPE_WIN32,
- CAIRO_FONT_TYPE_QUARTZ,
- CAIRO_FONT_TYPE_USER
-} cairo_font_type_t;
-
-cairo_public cairo_font_type_t
-cairo_font_face_get_type (cairo_font_face_t *font_face);
-
-cairo_public void *
-cairo_font_face_get_user_data (cairo_font_face_t *font_face,
- const cairo_user_data_key_t *key);
-
-cairo_public cairo_status_t
-cairo_font_face_set_user_data (cairo_font_face_t *font_face,
- const cairo_user_data_key_t *key,
- void *user_data,
- cairo_destroy_func_t destroy);
-
-/* Portable interface to general font features. */
-
-cairo_public cairo_scaled_font_t *
-cairo_scaled_font_create (cairo_font_face_t *font_face,
- const cairo_matrix_t *font_matrix,
- const cairo_matrix_t *ctm,
- const cairo_font_options_t *options);
-
-cairo_public cairo_scaled_font_t *
-cairo_scaled_font_reference (cairo_scaled_font_t *scaled_font);
-
-cairo_public void
-cairo_scaled_font_destroy (cairo_scaled_font_t *scaled_font);
-
-cairo_public unsigned int
-cairo_scaled_font_get_reference_count (cairo_scaled_font_t *scaled_font);
-
-cairo_public cairo_status_t
-cairo_scaled_font_status (cairo_scaled_font_t *scaled_font);
-
-cairo_public cairo_font_type_t
-cairo_scaled_font_get_type (cairo_scaled_font_t *scaled_font);
-
-cairo_public void *
-cairo_scaled_font_get_user_data (cairo_scaled_font_t *scaled_font,
- const cairo_user_data_key_t *key);
-
-cairo_public cairo_status_t
-cairo_scaled_font_set_user_data (cairo_scaled_font_t *scaled_font,
- const cairo_user_data_key_t *key,
- void *user_data,
- cairo_destroy_func_t destroy);
-
-cairo_public void
-cairo_scaled_font_extents (cairo_scaled_font_t *scaled_font,
- cairo_font_extents_t *extents);
-
-cairo_public void
-cairo_scaled_font_text_extents (cairo_scaled_font_t *scaled_font,
- const char *utf8,
- cairo_text_extents_t *extents);
-
-cairo_public void
-cairo_scaled_font_glyph_extents (cairo_scaled_font_t *scaled_font,
- const cairo_glyph_t *glyphs,
- int num_glyphs,
- cairo_text_extents_t *extents);
-
-cairo_public cairo_status_t
-cairo_scaled_font_text_to_glyphs (cairo_scaled_font_t *scaled_font,
- double x,
- double y,
- const char *utf8,
- int utf8_len,
- cairo_glyph_t **glyphs,
- int *num_glyphs,
- cairo_text_cluster_t **clusters,
- int *num_clusters,
- cairo_text_cluster_flags_t *cluster_flags);
-
-cairo_public cairo_font_face_t *
-cairo_scaled_font_get_font_face (cairo_scaled_font_t *scaled_font);
-
-cairo_public void
-cairo_scaled_font_get_font_matrix (cairo_scaled_font_t *scaled_font,
- cairo_matrix_t *font_matrix);
-
-cairo_public void
-cairo_scaled_font_get_ctm (cairo_scaled_font_t *scaled_font,
- cairo_matrix_t *ctm);
-
-cairo_public void
-cairo_scaled_font_get_scale_matrix (cairo_scaled_font_t *scaled_font,
- cairo_matrix_t *scale_matrix);
-
-cairo_public void
-cairo_scaled_font_get_font_options (cairo_scaled_font_t *scaled_font,
- cairo_font_options_t *options);
-
-
-/* Toy fonts */
-
-cairo_public cairo_font_face_t *
-cairo_toy_font_face_create (const char *family,
- cairo_font_slant_t slant,
- cairo_font_weight_t weight);
-
-cairo_public const char *
-cairo_toy_font_face_get_family (cairo_font_face_t *font_face);
-
-cairo_public cairo_font_slant_t
-cairo_toy_font_face_get_slant (cairo_font_face_t *font_face);
-
-cairo_public cairo_font_weight_t
-cairo_toy_font_face_get_weight (cairo_font_face_t *font_face);
-
-
-/* User fonts */
-
-cairo_public cairo_font_face_t *
-cairo_user_font_face_create (void);
-
-/* User-font method signatures */
-
-/**
- * cairo_user_scaled_font_init_func_t:
- * @scaled_font: the scaled-font being created
- * @cr: a cairo context, in font space
- * @extents: font extents to fill in, in font space
- *
- * #cairo_user_scaled_font_init_func_t is the type of function which is
- * called when a scaled-font needs to be created for a user font-face.
- *
- * The cairo context @cr is not used by the caller, but is prepared in font
- * space, similar to what the cairo contexts passed to the render_glyph
- * method will look like. The callback can use this context for extents
- * computation for example. After the callback is called, @cr is checked
- * for any error status.
- *
- * The @extents argument is where the user font sets the font extents for
- * @scaled_font. It is in font space, which means that for most cases its
- * ascent and descent members should add to 1.0. @extents is preset to
- * hold a value of 1.0 for ascent, height, and max_x_advance, and 0.0 for
- * descent and max_y_advance members.
- *
- * The callback is optional. If not set, default font extents as described
- * in the previous paragraph will be used.
- *
- * Note that @scaled_font is not fully initialized at this
- * point and trying to use it for text operations in the callback will result
- * in deadlock.
- *
- * Returns: %CAIRO_STATUS_SUCCESS upon success, or an error status on error.
- *
- * Since: 1.8
- **/
-typedef cairo_status_t (*cairo_user_scaled_font_init_func_t) (cairo_scaled_font_t *scaled_font,
- cairo_t *cr,
- cairo_font_extents_t *extents);
-
-/**
- * cairo_user_scaled_font_render_glyph_func_t:
- * @scaled_font: user scaled-font
- * @glyph: glyph code to render
- * @cr: cairo context to draw to, in font space
- * @extents: glyph extents to fill in, in font space
- *
- * #cairo_user_scaled_font_render_glyph_func_t is the type of function which
- * is called when a user scaled-font needs to render a glyph.
- *
- * The callback is mandatory, and expected to draw the glyph with code @glyph to
- * the cairo context @cr. @cr is prepared such that the glyph drawing is done in
- * font space. That is, the matrix set on @cr is the scale matrix of @scaled_font,
- * The @extents argument is where the user font sets the font extents for
- * @scaled_font. However, if user prefers to draw in user space, they can
- * achieve that by changing the matrix on @cr. All cairo rendering operations
- * to @cr are permitted, however, the result is undefined if any source other
- * than the default source on @cr is used. That means, glyph bitmaps should
- * be rendered using cairo_mask() instead of cairo_paint().
- *
- * Other non-default settings on @cr include a font size of 1.0 (given that
- * it is set up to be in font space), and font options corresponding to
- * @scaled_font.
- *
- * The @extents argument is preset to have x_bearing,
- * width, and y_advance of zero,
- * y_bearing set to -font_extents.ascent,
- * height to font_extents.ascent+font_extents.descent,
- * and x_advance to font_extents.max_x_advance.
- * The only field user needs to set in majority of cases is
- * x_advance.
- * If the width field is zero upon the callback returning
- * (which is its preset value), the glyph extents are automatically computed
- * based on the drawings done to @cr. This is in most cases exactly what the
- * desired behavior is. However, if for any reason the callback sets the
- * extents, it must be ink extents, and include the extents of all drawing
- * done to @cr in the callback.
- *
- * Returns: %CAIRO_STATUS_SUCCESS upon success, or
- * %CAIRO_STATUS_USER_FONT_ERROR or any other error status on error.
- *
- * Since: 1.8
- **/
-typedef cairo_status_t (*cairo_user_scaled_font_render_glyph_func_t) (cairo_scaled_font_t *scaled_font,
- unsigned long glyph,
- cairo_t *cr,
- cairo_text_extents_t *extents);
-
-/**
- * cairo_user_scaled_font_text_to_glyphs_func_t:
- * @scaled_font: the scaled-font being created
- * @utf8: a string of text encoded in UTF-8
- * @utf8_len: length of @utf8 in bytes
- * @glyphs: pointer to array of glyphs to fill, in font space
- * @num_glyphs: pointer to number of glyphs
- * @clusters: pointer to array of cluster mapping information to fill, or %NULL
- * @num_clusters: pointer to number of clusters
- * @cluster_flags: pointer to location to store cluster flags corresponding to the
- * output @clusters
- *
- * #cairo_user_scaled_font_text_to_glyphs_func_t is the type of function which
- * is called to convert input text to an array of glyphs. This is used by the
- * cairo_show_text() operation.
- *
- * Using this callback the user-font has full control on glyphs and their
- * positions. That means, it allows for features like ligatures and kerning,
- * as well as complex shaping required for scripts like
- * Arabic and Indic.
- *
- * The @num_glyphs argument is preset to the number of glyph entries available
- * in the @glyphs buffer. If the @glyphs buffer is %NULL, the value of
- * @num_glyphs will be zero. If the provided glyph array is too short for
- * the conversion (or for convenience), a new glyph array may be allocated
- * using cairo_glyph_allocate() and placed in @glyphs. Upon return,
- * @num_glyphs should contain the number of generated glyphs. If the value
- * @glyphs points at has changed after the call, the caller will free the
- * allocated glyph array using cairo_glyph_free(). The caller will also free
- * the original value of @glyphs, so the callback shouldn't do so.
- * The callback should populate the glyph indices and positions (in font space)
- * assuming that the text is to be shown at the origin.
- *
- * If @clusters is not %NULL, @num_clusters and @cluster_flags are also
- * non-%NULL, and cluster mapping should be computed. The semantics of how
- * cluster array allocation works is similar to the glyph array. That is,
- * if @clusters initially points to a non-%NULL value, that array may be used
- * as a cluster buffer, and @num_clusters points to the number of cluster
- * entries available there. If the provided cluster array is too short for
- * the conversion (or for convenience), a new cluster array may be allocated
- * using cairo_text_cluster_allocate() and placed in @clusters. In this case,
- * the original value of @clusters will still be freed by the caller. Upon
- * return, @num_clusters should contain the number of generated clusters.
- * If the value @clusters points at has changed after the call, the caller
- * will free the allocated cluster array using cairo_text_cluster_free().
- *
- * The callback is optional. If @num_glyphs is negative upon
- * the callback returning or if the return value
- * is %CAIRO_STATUS_USER_FONT_NOT_IMPLEMENTED, the unicode_to_glyph callback
- * is tried. See #cairo_user_scaled_font_unicode_to_glyph_func_t.
- *
- * Note: While cairo does not impose any limitation on glyph indices,
- * some applications may assume that a glyph index fits in a 16-bit
- * unsigned integer. As such, it is advised that user-fonts keep their
- * glyphs in the 0 to 65535 range. Furthermore, some applications may
- * assume that glyph 0 is a special glyph-not-found glyph. User-fonts
- * are advised to use glyph 0 for such purposes and do not use that
- * glyph value for other purposes.
- *
- * Returns: %CAIRO_STATUS_SUCCESS upon success,
- * %CAIRO_STATUS_USER_FONT_NOT_IMPLEMENTED if fallback options should be tried,
- * or %CAIRO_STATUS_USER_FONT_ERROR or any other error status on error.
- *
- * Since: 1.8
- **/
-typedef cairo_status_t (*cairo_user_scaled_font_text_to_glyphs_func_t) (cairo_scaled_font_t *scaled_font,
- const char *utf8,
- int utf8_len,
- cairo_glyph_t **glyphs,
- int *num_glyphs,
- cairo_text_cluster_t **clusters,
- int *num_clusters,
- cairo_text_cluster_flags_t *cluster_flags);
-
-/**
- * cairo_user_scaled_font_unicode_to_glyph_func_t:
- * @scaled_font: the scaled-font being created
- * @unicode: input unicode character code-point
- * @glyph_index: output glyph index
- *
- * #cairo_user_scaled_font_unicode_to_glyph_func_t is the type of function which
- * is called to convert an input Unicode character to a single glyph.
- * This is used by the cairo_show_text() operation.
- *
- * This callback is used to provide the same functionality as the
- * text_to_glyphs callback does (see #cairo_user_scaled_font_text_to_glyphs_func_t)
- * but has much less control on the output,
- * in exchange for increased ease of use. The inherent assumption to using
- * this callback is that each character maps to one glyph, and that the
- * mapping is context independent. It also assumes that glyphs are positioned
- * according to their advance width. These mean no ligatures, kerning, or
- * complex scripts can be implemented using this callback.
- *
- * The callback is optional, and only used if text_to_glyphs callback is not
- * set or fails to return glyphs. If this callback is not set or if it returns
- * %CAIRO_STATUS_USER_FONT_NOT_IMPLEMENTED, an identity mapping from Unicode
- * code-points to glyph indices is assumed.
- *
- * Note: While cairo does not impose any limitation on glyph indices,
- * some applications may assume that a glyph index fits in a 16-bit
- * unsigned integer. As such, it is advised that user-fonts keep their
- * glyphs in the 0 to 65535 range. Furthermore, some applications may
- * assume that glyph 0 is a special glyph-not-found glyph. User-fonts
- * are advised to use glyph 0 for such purposes and do not use that
- * glyph value for other purposes.
- *
- * Returns: %CAIRO_STATUS_SUCCESS upon success,
- * %CAIRO_STATUS_USER_FONT_NOT_IMPLEMENTED if fallback options should be tried,
- * or %CAIRO_STATUS_USER_FONT_ERROR or any other error status on error.
- *
- * Since: 1.8
- **/
-typedef cairo_status_t (*cairo_user_scaled_font_unicode_to_glyph_func_t) (cairo_scaled_font_t *scaled_font,
- unsigned long unicode,
- unsigned long *glyph_index);
-
-/* User-font method setters */
-
-cairo_public void
-cairo_user_font_face_set_init_func (cairo_font_face_t *font_face,
- cairo_user_scaled_font_init_func_t init_func);
-
-cairo_public void
-cairo_user_font_face_set_render_glyph_func (cairo_font_face_t *font_face,
- cairo_user_scaled_font_render_glyph_func_t render_glyph_func);
-
-cairo_public void
-cairo_user_font_face_set_text_to_glyphs_func (cairo_font_face_t *font_face,
- cairo_user_scaled_font_text_to_glyphs_func_t text_to_glyphs_func);
-
-cairo_public void
-cairo_user_font_face_set_unicode_to_glyph_func (cairo_font_face_t *font_face,
- cairo_user_scaled_font_unicode_to_glyph_func_t unicode_to_glyph_func);
-
-/* User-font method getters */
-
-cairo_public cairo_user_scaled_font_init_func_t
-cairo_user_font_face_get_init_func (cairo_font_face_t *font_face);
-
-cairo_public cairo_user_scaled_font_render_glyph_func_t
-cairo_user_font_face_get_render_glyph_func (cairo_font_face_t *font_face);
-
-cairo_public cairo_user_scaled_font_text_to_glyphs_func_t
-cairo_user_font_face_get_text_to_glyphs_func (cairo_font_face_t *font_face);
-
-cairo_public cairo_user_scaled_font_unicode_to_glyph_func_t
-cairo_user_font_face_get_unicode_to_glyph_func (cairo_font_face_t *font_face);
-
-
-/* Query functions */
-
-cairo_public cairo_operator_t
-cairo_get_operator (cairo_t *cr);
-
-cairo_public cairo_pattern_t *
-cairo_get_source (cairo_t *cr);
-
-cairo_public double
-cairo_get_tolerance (cairo_t *cr);
-
-cairo_public cairo_antialias_t
-cairo_get_antialias (cairo_t *cr);
-
-cairo_public cairo_bool_t
-cairo_has_current_point (cairo_t *cr);
-
-cairo_public void
-cairo_get_current_point (cairo_t *cr, double *x, double *y);
-
-cairo_public cairo_fill_rule_t
-cairo_get_fill_rule (cairo_t *cr);
-
-cairo_public double
-cairo_get_line_width (cairo_t *cr);
-
-cairo_public cairo_line_cap_t
-cairo_get_line_cap (cairo_t *cr);
-
-cairo_public cairo_line_join_t
-cairo_get_line_join (cairo_t *cr);
-
-cairo_public double
-cairo_get_miter_limit (cairo_t *cr);
-
-cairo_public int
-cairo_get_dash_count (cairo_t *cr);
-
-cairo_public void
-cairo_get_dash (cairo_t *cr, double *dashes, double *offset);
-
-cairo_public void
-cairo_get_matrix (cairo_t *cr, cairo_matrix_t *matrix);
-
-cairo_public cairo_surface_t *
-cairo_get_target (cairo_t *cr);
-
-cairo_public cairo_surface_t *
-cairo_get_group_target (cairo_t *cr);
-
-/**
- * cairo_path_data_type_t:
- * @CAIRO_PATH_MOVE_TO: A move-to operation, since 1.0
- * @CAIRO_PATH_LINE_TO: A line-to operation, since 1.0
- * @CAIRO_PATH_CURVE_TO: A curve-to operation, since 1.0
- * @CAIRO_PATH_CLOSE_PATH: A close-path operation, since 1.0
- *
- * #cairo_path_data_t is used to describe the type of one portion
- * of a path when represented as a #cairo_path_t.
- * See #cairo_path_data_t for details.
- *
- * Since: 1.0
- **/
-typedef enum _cairo_path_data_type {
- CAIRO_PATH_MOVE_TO,
- CAIRO_PATH_LINE_TO,
- CAIRO_PATH_CURVE_TO,
- CAIRO_PATH_CLOSE_PATH
-} cairo_path_data_type_t;
-
-/**
- * cairo_path_data_t:
- *
- * #cairo_path_data_t is used to represent the path data inside a
- * #cairo_path_t.
- *
- * The data structure is designed to try to balance the demands of
- * efficiency and ease-of-use. A path is represented as an array of
- * #cairo_path_data_t, which is a union of headers and points.
- *
- * Each portion of the path is represented by one or more elements in
- * the array, (one header followed by 0 or more points). The length
- * value of the header is the number of array elements for the current
- * portion including the header, (ie. length == 1 + # of points), and
- * where the number of points for each element type is as follows:
- *
- *
- * %CAIRO_PATH_MOVE_TO: 1 point
- * %CAIRO_PATH_LINE_TO: 1 point
- * %CAIRO_PATH_CURVE_TO: 3 points
- * %CAIRO_PATH_CLOSE_PATH: 0 points
- *
- *
- * The semantics and ordering of the coordinate values are consistent
- * with cairo_move_to(), cairo_line_to(), cairo_curve_to(), and
- * cairo_close_path().
- *
- * Here is sample code for iterating through a #cairo_path_t:
- *
- *
- * int i;
- * cairo_path_t *path;
- * cairo_path_data_t *data;
- *
- * path = cairo_copy_path (cr);
- *
- * for (i=0; i < path->num_data; i += path->data[i].header.length) {
- * data = &path->data[i];
- * switch (data->header.type) {
- * case CAIRO_PATH_MOVE_TO:
- * do_move_to_things (data[1].point.x, data[1].point.y);
- * break;
- * case CAIRO_PATH_LINE_TO:
- * do_line_to_things (data[1].point.x, data[1].point.y);
- * break;
- * case CAIRO_PATH_CURVE_TO:
- * do_curve_to_things (data[1].point.x, data[1].point.y,
- * data[2].point.x, data[2].point.y,
- * data[3].point.x, data[3].point.y);
- * break;
- * case CAIRO_PATH_CLOSE_PATH:
- * do_close_path_things ();
- * break;
- * }
- * }
- * cairo_path_destroy (path);
- *
- *
- * As of cairo 1.4, cairo does not mind if there are more elements in
- * a portion of the path than needed. Such elements can be used by
- * users of the cairo API to hold extra values in the path data
- * structure. For this reason, it is recommended that applications
- * always use data->header.length to
- * iterate over the path data, instead of hardcoding the number of
- * elements for each element type.
- *
- * Since: 1.0
- **/
-typedef union _cairo_path_data_t cairo_path_data_t;
-union _cairo_path_data_t {
- struct {
- cairo_path_data_type_t type;
- int length;
- } header;
- struct {
- double x, y;
- } point;
-};
-
-/**
- * cairo_path_t:
- * @status: the current error status
- * @data: the elements in the path
- * @num_data: the number of elements in the data array
- *
- * A data structure for holding a path. This data structure serves as
- * the return value for cairo_copy_path() and
- * cairo_copy_path_flat() as well the input value for
- * cairo_append_path().
- *
- * See #cairo_path_data_t for hints on how to iterate over the
- * actual data within the path.
- *
- * The num_data member gives the number of elements in the data
- * array. This number is larger than the number of independent path
- * portions (defined in #cairo_path_data_type_t), since the data
- * includes both headers and coordinates for each portion.
- *
- * Since: 1.0
- **/
-typedef struct cairo_path {
- cairo_status_t status;
- cairo_path_data_t *data;
- int num_data;
-} cairo_path_t;
-
-cairo_public cairo_path_t *
-cairo_copy_path (cairo_t *cr);
-
-cairo_public cairo_path_t *
-cairo_copy_path_flat (cairo_t *cr);
-
-cairo_public void
-cairo_append_path (cairo_t *cr,
- const cairo_path_t *path);
-
-cairo_public void
-cairo_path_destroy (cairo_path_t *path);
-
-/* Error status queries */
-
-cairo_public cairo_status_t
-cairo_status (cairo_t *cr);
-
-cairo_public const char *
-cairo_status_to_string (cairo_status_t status);
-
-/* Backend device manipulation */
-
-cairo_public cairo_device_t *
-cairo_device_reference (cairo_device_t *device);
-
-/**
- * cairo_device_type_t:
- * @CAIRO_DEVICE_TYPE_DRM: The device is of type Direct Render Manager, since 1.10
- * @CAIRO_DEVICE_TYPE_GL: The device is of type OpenGL, since 1.10
- * @CAIRO_DEVICE_TYPE_SCRIPT: The device is of type script, since 1.10
- * @CAIRO_DEVICE_TYPE_XCB: The device is of type xcb, since 1.10
- * @CAIRO_DEVICE_TYPE_XLIB: The device is of type xlib, since 1.10
- * @CAIRO_DEVICE_TYPE_XML: The device is of type XML, since 1.10
- * @CAIRO_DEVICE_TYPE_COGL: The device is of type cogl, since 1.12
- * @CAIRO_DEVICE_TYPE_WIN32: The device is of type win32, since 1.12
- * @CAIRO_DEVICE_TYPE_INVALID: The device is invalid, since 1.10
- *
- * #cairo_device_type_t is used to describe the type of a given
- * device. The devices types are also known as "backends" within cairo.
- *
- * The device type can be queried with cairo_device_get_type()
- *
- * The various #cairo_device_t functions can be used with devices of
- * any type, but some backends also provide type-specific functions
- * that must only be called with a device of the appropriate
- * type. These functions have names that begin with
- * cairo_type_device such as
- * cairo_xcb_device_debug_cap_xrender_version().
- *
- * The behavior of calling a type-specific function with a device of
- * the wrong type is undefined.
- *
- * New entries may be added in future versions.
- *
- * Since: 1.10
- **/
-typedef enum _cairo_device_type {
- CAIRO_DEVICE_TYPE_DRM,
- CAIRO_DEVICE_TYPE_GL,
- CAIRO_DEVICE_TYPE_SCRIPT,
- CAIRO_DEVICE_TYPE_XCB,
- CAIRO_DEVICE_TYPE_XLIB,
- CAIRO_DEVICE_TYPE_XML,
- CAIRO_DEVICE_TYPE_COGL,
- CAIRO_DEVICE_TYPE_WIN32,
-
- CAIRO_DEVICE_TYPE_INVALID = -1
-} cairo_device_type_t;
-
-cairo_public cairo_device_type_t
-cairo_device_get_type (cairo_device_t *device);
-
-cairo_public cairo_status_t
-cairo_device_status (cairo_device_t *device);
-
-cairo_public cairo_status_t
-cairo_device_acquire (cairo_device_t *device);
-
-cairo_public void
-cairo_device_release (cairo_device_t *device);
-
-cairo_public void
-cairo_device_flush (cairo_device_t *device);
-
-cairo_public void
-cairo_device_finish (cairo_device_t *device);
-
-cairo_public void
-cairo_device_destroy (cairo_device_t *device);
-
-cairo_public unsigned int
-cairo_device_get_reference_count (cairo_device_t *device);
-
-cairo_public void *
-cairo_device_get_user_data (cairo_device_t *device,
- const cairo_user_data_key_t *key);
-
-cairo_public cairo_status_t
-cairo_device_set_user_data (cairo_device_t *device,
- const cairo_user_data_key_t *key,
- void *user_data,
- cairo_destroy_func_t destroy);
-
-
-/* Surface manipulation */
-
-cairo_public cairo_surface_t *
-cairo_surface_create_similar (cairo_surface_t *other,
- cairo_content_t content,
- int width,
- int height);
-
-cairo_public cairo_surface_t *
-cairo_surface_create_similar_image (cairo_surface_t *other,
- cairo_format_t format,
- int width,
- int height);
-
-cairo_public cairo_surface_t *
-cairo_surface_map_to_image (cairo_surface_t *surface,
- const cairo_rectangle_int_t *extents);
-
-cairo_public void
-cairo_surface_unmap_image (cairo_surface_t *surface,
- cairo_surface_t *image);
-
-cairo_public cairo_surface_t *
-cairo_surface_create_for_rectangle (cairo_surface_t *target,
- double x,
- double y,
- double width,
- double height);
-
-typedef enum {
- CAIRO_SURFACE_OBSERVER_NORMAL = 0,
- CAIRO_SURFACE_OBSERVER_RECORD_OPERATIONS = 0x1
-} cairo_surface_observer_mode_t;
-
-cairo_public cairo_surface_t *
-cairo_surface_create_observer (cairo_surface_t *target,
- cairo_surface_observer_mode_t mode);
-
-typedef void (*cairo_surface_observer_callback_t) (cairo_surface_t *observer,
- cairo_surface_t *target,
- void *data);
-
-cairo_public cairo_status_t
-cairo_surface_observer_add_paint_callback (cairo_surface_t *abstract_surface,
- cairo_surface_observer_callback_t func,
- void *data);
-
-cairo_public cairo_status_t
-cairo_surface_observer_add_mask_callback (cairo_surface_t *abstract_surface,
- cairo_surface_observer_callback_t func,
- void *data);
-
-cairo_public cairo_status_t
-cairo_surface_observer_add_fill_callback (cairo_surface_t *abstract_surface,
- cairo_surface_observer_callback_t func,
- void *data);
-
-cairo_public cairo_status_t
-cairo_surface_observer_add_stroke_callback (cairo_surface_t *abstract_surface,
- cairo_surface_observer_callback_t func,
- void *data);
-
-cairo_public cairo_status_t
-cairo_surface_observer_add_glyphs_callback (cairo_surface_t *abstract_surface,
- cairo_surface_observer_callback_t func,
- void *data);
-
-cairo_public cairo_status_t
-cairo_surface_observer_add_flush_callback (cairo_surface_t *abstract_surface,
- cairo_surface_observer_callback_t func,
- void *data);
-
-cairo_public cairo_status_t
-cairo_surface_observer_add_finish_callback (cairo_surface_t *abstract_surface,
- cairo_surface_observer_callback_t func,
- void *data);
-
-cairo_public cairo_status_t
-cairo_surface_observer_print (cairo_surface_t *surface,
- cairo_write_func_t write_func,
- void *closure);
-cairo_public double
-cairo_surface_observer_elapsed (cairo_surface_t *surface);
-
-cairo_public cairo_status_t
-cairo_device_observer_print (cairo_device_t *device,
- cairo_write_func_t write_func,
- void *closure);
-
-cairo_public double
-cairo_device_observer_elapsed (cairo_device_t *device);
-
-cairo_public double
-cairo_device_observer_paint_elapsed (cairo_device_t *device);
-
-cairo_public double
-cairo_device_observer_mask_elapsed (cairo_device_t *device);
-
-cairo_public double
-cairo_device_observer_fill_elapsed (cairo_device_t *device);
-
-cairo_public double
-cairo_device_observer_stroke_elapsed (cairo_device_t *device);
-
-cairo_public double
-cairo_device_observer_glyphs_elapsed (cairo_device_t *device);
-
-cairo_public cairo_surface_t *
-cairo_surface_reference (cairo_surface_t *surface);
-
-cairo_public void
-cairo_surface_finish (cairo_surface_t *surface);
-
-cairo_public void
-cairo_surface_destroy (cairo_surface_t *surface);
-
-cairo_public cairo_device_t *
-cairo_surface_get_device (cairo_surface_t *surface);
-
-cairo_public unsigned int
-cairo_surface_get_reference_count (cairo_surface_t *surface);
-
-cairo_public cairo_status_t
-cairo_surface_status (cairo_surface_t *surface);
-
-/**
- * cairo_surface_type_t:
- * @CAIRO_SURFACE_TYPE_IMAGE: The surface is of type image, since 1.2
- * @CAIRO_SURFACE_TYPE_PDF: The surface is of type pdf, since 1.2
- * @CAIRO_SURFACE_TYPE_PS: The surface is of type ps, since 1.2
- * @CAIRO_SURFACE_TYPE_XLIB: The surface is of type xlib, since 1.2
- * @CAIRO_SURFACE_TYPE_XCB: The surface is of type xcb, since 1.2
- * @CAIRO_SURFACE_TYPE_GLITZ: The surface is of type glitz, since 1.2
- * @CAIRO_SURFACE_TYPE_QUARTZ: The surface is of type quartz, since 1.2
- * @CAIRO_SURFACE_TYPE_WIN32: The surface is of type win32, since 1.2
- * @CAIRO_SURFACE_TYPE_BEOS: The surface is of type beos, since 1.2
- * @CAIRO_SURFACE_TYPE_DIRECTFB: The surface is of type directfb, since 1.2
- * @CAIRO_SURFACE_TYPE_SVG: The surface is of type svg, since 1.2
- * @CAIRO_SURFACE_TYPE_OS2: The surface is of type os2, since 1.4
- * @CAIRO_SURFACE_TYPE_WIN32_PRINTING: The surface is a win32 printing surface, since 1.6
- * @CAIRO_SURFACE_TYPE_QUARTZ_IMAGE: The surface is of type quartz_image, since 1.6
- * @CAIRO_SURFACE_TYPE_SCRIPT: The surface is of type script, since 1.10
- * @CAIRO_SURFACE_TYPE_QT: The surface is of type Qt, since 1.10
- * @CAIRO_SURFACE_TYPE_RECORDING: The surface is of type recording, since 1.10
- * @CAIRO_SURFACE_TYPE_VG: The surface is a OpenVG surface, since 1.10
- * @CAIRO_SURFACE_TYPE_GL: The surface is of type OpenGL, since 1.10
- * @CAIRO_SURFACE_TYPE_DRM: The surface is of type Direct Render Manager, since 1.10
- * @CAIRO_SURFACE_TYPE_TEE: The surface is of type 'tee' (a multiplexing surface), since 1.10
- * @CAIRO_SURFACE_TYPE_XML: The surface is of type XML (for debugging), since 1.10
- * @CAIRO_SURFACE_TYPE_SKIA: The surface is of type Skia, since 1.10
- * @CAIRO_SURFACE_TYPE_SUBSURFACE: The surface is a subsurface created with
- * cairo_surface_create_for_rectangle(), since 1.10
- * @CAIRO_SURFACE_TYPE_COGL: This surface is of type Cogl, since 1.12
- *
- * #cairo_surface_type_t is used to describe the type of a given
- * surface. The surface types are also known as "backends" or "surface
- * backends" within cairo.
- *
- * The type of a surface is determined by the function used to create
- * it, which will generally be of the form
- * cairo_type_surface_create(),
- * (though see cairo_surface_create_similar() as well).
- *
- * The surface type can be queried with cairo_surface_get_type()
- *
- * The various #cairo_surface_t functions can be used with surfaces of
- * any type, but some backends also provide type-specific functions
- * that must only be called with a surface of the appropriate
- * type. These functions have names that begin with
- * cairo_type_surface such as cairo_image_surface_get_width().
- *
- * The behavior of calling a type-specific function with a surface of
- * the wrong type is undefined.
- *
- * New entries may be added in future versions.
- *
- * Since: 1.2
- **/
-typedef enum _cairo_surface_type {
- CAIRO_SURFACE_TYPE_IMAGE,
- CAIRO_SURFACE_TYPE_PDF,
- CAIRO_SURFACE_TYPE_PS,
- CAIRO_SURFACE_TYPE_XLIB,
- CAIRO_SURFACE_TYPE_XCB,
- CAIRO_SURFACE_TYPE_GLITZ,
- CAIRO_SURFACE_TYPE_QUARTZ,
- CAIRO_SURFACE_TYPE_WIN32,
- CAIRO_SURFACE_TYPE_BEOS,
- CAIRO_SURFACE_TYPE_DIRECTFB,
- CAIRO_SURFACE_TYPE_SVG,
- CAIRO_SURFACE_TYPE_OS2,
- CAIRO_SURFACE_TYPE_WIN32_PRINTING,
- CAIRO_SURFACE_TYPE_QUARTZ_IMAGE,
- CAIRO_SURFACE_TYPE_SCRIPT,
- CAIRO_SURFACE_TYPE_QT,
- CAIRO_SURFACE_TYPE_RECORDING,
- CAIRO_SURFACE_TYPE_VG,
- CAIRO_SURFACE_TYPE_GL,
- CAIRO_SURFACE_TYPE_DRM,
- CAIRO_SURFACE_TYPE_TEE,
- CAIRO_SURFACE_TYPE_XML,
- CAIRO_SURFACE_TYPE_SKIA,
- CAIRO_SURFACE_TYPE_SUBSURFACE,
- CAIRO_SURFACE_TYPE_COGL
-} cairo_surface_type_t;
-
-cairo_public cairo_surface_type_t
-cairo_surface_get_type (cairo_surface_t *surface);
-
-cairo_public cairo_content_t
-cairo_surface_get_content (cairo_surface_t *surface);
-
-#if CAIRO_HAS_PNG_FUNCTIONS
-
-cairo_public cairo_status_t
-cairo_surface_write_to_png (cairo_surface_t *surface,
- const char *filename);
-
-cairo_public cairo_status_t
-cairo_surface_write_to_png_stream (cairo_surface_t *surface,
- cairo_write_func_t write_func,
- void *closure);
-
-#endif
-
-cairo_public void *
-cairo_surface_get_user_data (cairo_surface_t *surface,
- const cairo_user_data_key_t *key);
-
-cairo_public cairo_status_t
-cairo_surface_set_user_data (cairo_surface_t *surface,
- const cairo_user_data_key_t *key,
- void *user_data,
- cairo_destroy_func_t destroy);
-
-#define CAIRO_MIME_TYPE_JPEG "image/jpeg"
-#define CAIRO_MIME_TYPE_PNG "image/png"
-#define CAIRO_MIME_TYPE_JP2 "image/jp2"
-#define CAIRO_MIME_TYPE_URI "text/x-uri"
-#define CAIRO_MIME_TYPE_UNIQUE_ID "application/x-cairo.uuid"
-
-cairo_public void
-cairo_surface_get_mime_data (cairo_surface_t *surface,
- const char *mime_type,
- const unsigned char **data,
- unsigned long *length);
-
-cairo_public cairo_status_t
-cairo_surface_set_mime_data (cairo_surface_t *surface,
- const char *mime_type,
- const unsigned char *data,
- unsigned long length,
- cairo_destroy_func_t destroy,
- void *closure);
-
-cairo_public cairo_bool_t
-cairo_surface_supports_mime_type (cairo_surface_t *surface,
- const char *mime_type);
-
-cairo_public void
-cairo_surface_get_font_options (cairo_surface_t *surface,
- cairo_font_options_t *options);
-
-cairo_public void
-cairo_surface_flush (cairo_surface_t *surface);
-
-cairo_public void
-cairo_surface_mark_dirty (cairo_surface_t *surface);
-
-cairo_public void
-cairo_surface_mark_dirty_rectangle (cairo_surface_t *surface,
- int x,
- int y,
- int width,
- int height);
-
-cairo_public void
-cairo_surface_set_device_offset (cairo_surface_t *surface,
- double x_offset,
- double y_offset);
-
-cairo_public void
-cairo_surface_get_device_offset (cairo_surface_t *surface,
- double *x_offset,
- double *y_offset);
-
-cairo_public void
-cairo_surface_set_fallback_resolution (cairo_surface_t *surface,
- double x_pixels_per_inch,
- double y_pixels_per_inch);
-
-cairo_public void
-cairo_surface_get_fallback_resolution (cairo_surface_t *surface,
- double *x_pixels_per_inch,
- double *y_pixels_per_inch);
-
-cairo_public void
-cairo_surface_copy_page (cairo_surface_t *surface);
-
-cairo_public void
-cairo_surface_show_page (cairo_surface_t *surface);
-
-cairo_public cairo_bool_t
-cairo_surface_has_show_text_glyphs (cairo_surface_t *surface);
-
-/* Image-surface functions */
-
-cairo_public cairo_surface_t *
-cairo_image_surface_create (cairo_format_t format,
- int width,
- int height);
-
-cairo_public int
-cairo_format_stride_for_width (cairo_format_t format,
- int width);
-
-cairo_public cairo_surface_t *
-cairo_image_surface_create_for_data (unsigned char *data,
- cairo_format_t format,
- int width,
- int height,
- int stride);
-
-cairo_public unsigned char *
-cairo_image_surface_get_data (cairo_surface_t *surface);
-
-cairo_public cairo_format_t
-cairo_image_surface_get_format (cairo_surface_t *surface);
-
-cairo_public int
-cairo_image_surface_get_width (cairo_surface_t *surface);
-
-cairo_public int
-cairo_image_surface_get_height (cairo_surface_t *surface);
-
-cairo_public int
-cairo_image_surface_get_stride (cairo_surface_t *surface);
-
-#if CAIRO_HAS_PNG_FUNCTIONS
-
-cairo_public cairo_surface_t *
-cairo_image_surface_create_from_png (const char *filename);
-
-cairo_public cairo_surface_t *
-cairo_image_surface_create_from_png_stream (cairo_read_func_t read_func,
- void *closure);
-
-#endif
-
-/* Recording-surface functions */
-
-cairo_public cairo_surface_t *
-cairo_recording_surface_create (cairo_content_t content,
- const cairo_rectangle_t *extents);
-
-cairo_public void
-cairo_recording_surface_ink_extents (cairo_surface_t *surface,
- double *x0,
- double *y0,
- double *width,
- double *height);
-
-cairo_public cairo_bool_t
-cairo_recording_surface_get_extents (cairo_surface_t *surface,
- cairo_rectangle_t *extents);
-
-/* raster-source pattern (callback) functions */
-
-/**
- * cairo_raster_source_acquire_func_t:
- * @pattern: the pattern being rendered from
- * @callback_data: the user data supplied during creation
- * @target: the rendering target surface
- * @extents: rectangular region of interest in pixels in sample space
- *
- * #cairo_raster_source_acquire_func_t is the type of function which is
- * called when a pattern is being rendered from. It should create a surface
- * that provides the pixel data for the region of interest as defined by
- * extents, though the surface itself does not have to be limited to that
- * area. For convenience the surface should probably be of image type,
- * created with cairo_surface_create_similar_image() for the target (which
- * enables the number of copies to be reduced during transfer to the
- * device). Another option, might be to return a similar surface to the
- * target for explicit handling by the application of a set of cached sources
- * on the device. The region of sample data provided should be defined using
- * cairo_surface_set_device_offset() to specify the top-left corner of the
- * sample data (along with width and height of the surface).
- *
- * Returns: a #cairo_surface_t
- *
- * Since: 1.12
- **/
-typedef cairo_surface_t *
-(*cairo_raster_source_acquire_func_t) (cairo_pattern_t *pattern,
- void *callback_data,
- cairo_surface_t *target,
- const cairo_rectangle_int_t *extents);
-
-/**
- * cairo_raster_source_release_func_t:
- * @pattern: the pattern being rendered from
- * @callback_data: the user data supplied during creation
- * @surface: the surface created during acquire
- *
- * #cairo_raster_source_release_func_t is the type of function which is
- * called when the pixel data is no longer being access by the pattern
- * for the rendering operation. Typically this function will simply
- * destroy the surface created during acquire.
- *
- * Since: 1.12
- **/
-typedef void
-(*cairo_raster_source_release_func_t) (cairo_pattern_t *pattern,
- void *callback_data,
- cairo_surface_t *surface);
-
-/**
- * cairo_raster_source_snapshot_func_t:
- * @pattern: the pattern being rendered from
- * @callback_data: the user data supplied during creation
- *
- * #cairo_raster_source_snapshot_func_t is the type of function which is
- * called when the pixel data needs to be preserved for later use
- * during printing. This pattern will be accessed again later, and it
- * is expected to provide the pixel data that was current at the time
- * of snapshotting.
- *
- * Return value: CAIRO_STATUS_SUCCESS on success, or one of the
- * #cairo_status_t error codes for failure.
- *
- * Since: 1.12
- **/
-typedef cairo_status_t
-(*cairo_raster_source_snapshot_func_t) (cairo_pattern_t *pattern,
- void *callback_data);
-
-/**
- * cairo_raster_source_copy_func_t:
- * @pattern: the #cairo_pattern_t that was copied to
- * @callback_data: the user data supplied during creation
- * @other: the #cairo_pattern_t being used as the source for the copy
- *
- * #cairo_raster_source_copy_func_t is the type of function which is
- * called when the pattern gets copied as a normal part of rendering.
- *
- * Return value: CAIRO_STATUS_SUCCESS on success, or one of the
- * #cairo_status_t error codes for failure.
- *
- * Since: 1.12
- **/
-typedef cairo_status_t
-(*cairo_raster_source_copy_func_t) (cairo_pattern_t *pattern,
- void *callback_data,
- const cairo_pattern_t *other);
-
-/**
- * cairo_raster_source_finish_func_t:
- * @pattern: the pattern being rendered from
- * @callback_data: the user data supplied during creation
- *
- * #cairo_raster_source_finish_func_t is the type of function which is
- * called when the pattern (or a copy thereof) is no longer required.
- *
- * Since: 1.12
- **/
-typedef void
-(*cairo_raster_source_finish_func_t) (cairo_pattern_t *pattern,
- void *callback_data);
-
-cairo_public cairo_pattern_t *
-cairo_pattern_create_raster_source (void *user_data,
- cairo_content_t content,
- int width, int height);
-
-cairo_public void
-cairo_raster_source_pattern_set_callback_data (cairo_pattern_t *pattern,
- void *data);
-
-cairo_public void *
-cairo_raster_source_pattern_get_callback_data (cairo_pattern_t *pattern);
-
-cairo_public void
-cairo_raster_source_pattern_set_acquire (cairo_pattern_t *pattern,
- cairo_raster_source_acquire_func_t acquire,
- cairo_raster_source_release_func_t release);
-
-cairo_public void
-cairo_raster_source_pattern_get_acquire (cairo_pattern_t *pattern,
- cairo_raster_source_acquire_func_t *acquire,
- cairo_raster_source_release_func_t *release);
-cairo_public void
-cairo_raster_source_pattern_set_snapshot (cairo_pattern_t *pattern,
- cairo_raster_source_snapshot_func_t snapshot);
-
-cairo_public cairo_raster_source_snapshot_func_t
-cairo_raster_source_pattern_get_snapshot (cairo_pattern_t *pattern);
-
-cairo_public void
-cairo_raster_source_pattern_set_copy (cairo_pattern_t *pattern,
- cairo_raster_source_copy_func_t copy);
-
-cairo_public cairo_raster_source_copy_func_t
-cairo_raster_source_pattern_get_copy (cairo_pattern_t *pattern);
-
-cairo_public void
-cairo_raster_source_pattern_set_finish (cairo_pattern_t *pattern,
- cairo_raster_source_finish_func_t finish);
-
-cairo_public cairo_raster_source_finish_func_t
-cairo_raster_source_pattern_get_finish (cairo_pattern_t *pattern);
-
-/* Pattern creation functions */
-
-cairo_public cairo_pattern_t *
-cairo_pattern_create_rgb (double red, double green, double blue);
-
-cairo_public cairo_pattern_t *
-cairo_pattern_create_rgba (double red, double green, double blue,
- double alpha);
-
-cairo_public cairo_pattern_t *
-cairo_pattern_create_for_surface (cairo_surface_t *surface);
-
-cairo_public cairo_pattern_t *
-cairo_pattern_create_linear (double x0, double y0,
- double x1, double y1);
-
-cairo_public cairo_pattern_t *
-cairo_pattern_create_radial (double cx0, double cy0, double radius0,
- double cx1, double cy1, double radius1);
-
-cairo_public cairo_pattern_t *
-cairo_pattern_create_mesh (void);
-
-cairo_public cairo_pattern_t *
-cairo_pattern_reference (cairo_pattern_t *pattern);
-
-cairo_public void
-cairo_pattern_destroy (cairo_pattern_t *pattern);
-
-cairo_public unsigned int
-cairo_pattern_get_reference_count (cairo_pattern_t *pattern);
-
-cairo_public cairo_status_t
-cairo_pattern_status (cairo_pattern_t *pattern);
-
-cairo_public void *
-cairo_pattern_get_user_data (cairo_pattern_t *pattern,
- const cairo_user_data_key_t *key);
-
-cairo_public cairo_status_t
-cairo_pattern_set_user_data (cairo_pattern_t *pattern,
- const cairo_user_data_key_t *key,
- void *user_data,
- cairo_destroy_func_t destroy);
-
-/**
- * cairo_pattern_type_t:
- * @CAIRO_PATTERN_TYPE_SOLID: The pattern is a solid (uniform)
- * color. It may be opaque or translucent, since 1.2.
- * @CAIRO_PATTERN_TYPE_SURFACE: The pattern is a based on a surface (an image), since 1.2.
- * @CAIRO_PATTERN_TYPE_LINEAR: The pattern is a linear gradient, since 1.2.
- * @CAIRO_PATTERN_TYPE_RADIAL: The pattern is a radial gradient, since 1.2.
- * @CAIRO_PATTERN_TYPE_MESH: The pattern is a mesh, since 1.12.
- * @CAIRO_PATTERN_TYPE_RASTER_SOURCE: The pattern is a user pattern providing raster data, since 1.12.
- *
- * #cairo_pattern_type_t is used to describe the type of a given pattern.
- *
- * The type of a pattern is determined by the function used to create
- * it. The cairo_pattern_create_rgb() and cairo_pattern_create_rgba()
- * functions create SOLID patterns. The remaining
- * cairo_pattern_create functions map to pattern types in obvious
- * ways.
- *
- * The pattern type can be queried with cairo_pattern_get_type()
- *
- * Most #cairo_pattern_t functions can be called with a pattern of any
- * type, (though trying to change the extend or filter for a solid
- * pattern will have no effect). A notable exception is
- * cairo_pattern_add_color_stop_rgb() and
- * cairo_pattern_add_color_stop_rgba() which must only be called with
- * gradient patterns (either LINEAR or RADIAL). Otherwise the pattern
- * will be shutdown and put into an error state.
- *
- * New entries may be added in future versions.
- *
- * Since: 1.2
- **/
-typedef enum _cairo_pattern_type {
- CAIRO_PATTERN_TYPE_SOLID,
- CAIRO_PATTERN_TYPE_SURFACE,
- CAIRO_PATTERN_TYPE_LINEAR,
- CAIRO_PATTERN_TYPE_RADIAL,
- CAIRO_PATTERN_TYPE_MESH,
- CAIRO_PATTERN_TYPE_RASTER_SOURCE
-} cairo_pattern_type_t;
-
-cairo_public cairo_pattern_type_t
-cairo_pattern_get_type (cairo_pattern_t *pattern);
-
-cairo_public void
-cairo_pattern_add_color_stop_rgb (cairo_pattern_t *pattern,
- double offset,
- double red, double green, double blue);
-
-cairo_public void
-cairo_pattern_add_color_stop_rgba (cairo_pattern_t *pattern,
- double offset,
- double red, double green, double blue,
- double alpha);
-
-cairo_public void
-cairo_mesh_pattern_begin_patch (cairo_pattern_t *pattern);
-
-cairo_public void
-cairo_mesh_pattern_end_patch (cairo_pattern_t *pattern);
-
-cairo_public void
-cairo_mesh_pattern_curve_to (cairo_pattern_t *pattern,
- double x1, double y1,
- double x2, double y2,
- double x3, double y3);
-
-cairo_public void
-cairo_mesh_pattern_line_to (cairo_pattern_t *pattern,
- double x, double y);
-
-cairo_public void
-cairo_mesh_pattern_move_to (cairo_pattern_t *pattern,
- double x, double y);
-
-cairo_public void
-cairo_mesh_pattern_set_control_point (cairo_pattern_t *pattern,
- unsigned int point_num,
- double x, double y);
-
-cairo_public void
-cairo_mesh_pattern_set_corner_color_rgb (cairo_pattern_t *pattern,
- unsigned int corner_num,
- double red, double green, double blue);
-
-cairo_public void
-cairo_mesh_pattern_set_corner_color_rgba (cairo_pattern_t *pattern,
- unsigned int corner_num,
- double red, double green, double blue,
- double alpha);
-
-cairo_public void
-cairo_pattern_set_matrix (cairo_pattern_t *pattern,
- const cairo_matrix_t *matrix);
-
-cairo_public void
-cairo_pattern_get_matrix (cairo_pattern_t *pattern,
- cairo_matrix_t *matrix);
-
-/**
- * cairo_extend_t:
- * @CAIRO_EXTEND_NONE: pixels outside of the source pattern
- * are fully transparent (Since 1.0)
- * @CAIRO_EXTEND_REPEAT: the pattern is tiled by repeating (Since 1.0)
- * @CAIRO_EXTEND_REFLECT: the pattern is tiled by reflecting
- * at the edges (Since 1.0; but only implemented for surface patterns since 1.6)
- * @CAIRO_EXTEND_PAD: pixels outside of the pattern copy
- * the closest pixel from the source (Since 1.2; but only
- * implemented for surface patterns since 1.6)
- *
- * #cairo_extend_t is used to describe how pattern color/alpha will be
- * determined for areas "outside" the pattern's natural area, (for
- * example, outside the surface bounds or outside the gradient
- * geometry).
- *
- * Mesh patterns are not affected by the extend mode.
- *
- * The default extend mode is %CAIRO_EXTEND_NONE for surface patterns
- * and %CAIRO_EXTEND_PAD for gradient patterns.
- *
- * New entries may be added in future versions.
- *
- * Since: 1.0
- **/
-typedef enum _cairo_extend {
- CAIRO_EXTEND_NONE,
- CAIRO_EXTEND_REPEAT,
- CAIRO_EXTEND_REFLECT,
- CAIRO_EXTEND_PAD
-} cairo_extend_t;
-
-cairo_public void
-cairo_pattern_set_extend (cairo_pattern_t *pattern, cairo_extend_t extend);
-
-cairo_public cairo_extend_t
-cairo_pattern_get_extend (cairo_pattern_t *pattern);
-
-/**
- * cairo_filter_t:
- * @CAIRO_FILTER_FAST: A high-performance filter, with quality similar
- * to %CAIRO_FILTER_NEAREST (Since 1.0)
- * @CAIRO_FILTER_GOOD: A reasonable-performance filter, with quality
- * similar to %CAIRO_FILTER_BILINEAR (Since 1.0)
- * @CAIRO_FILTER_BEST: The highest-quality available, performance may
- * not be suitable for interactive use. (Since 1.0)
- * @CAIRO_FILTER_NEAREST: Nearest-neighbor filtering (Since 1.0)
- * @CAIRO_FILTER_BILINEAR: Linear interpolation in two dimensions (Since 1.0)
- * @CAIRO_FILTER_GAUSSIAN: This filter value is currently
- * unimplemented, and should not be used in current code. (Since 1.0)
- *
- * #cairo_filter_t is used to indicate what filtering should be
- * applied when reading pixel values from patterns. See
- * cairo_pattern_set_filter() for indicating the desired filter to be
- * used with a particular pattern.
- *
- * Since: 1.0
- **/
-typedef enum _cairo_filter {
- CAIRO_FILTER_FAST,
- CAIRO_FILTER_GOOD,
- CAIRO_FILTER_BEST,
- CAIRO_FILTER_NEAREST,
- CAIRO_FILTER_BILINEAR,
- CAIRO_FILTER_GAUSSIAN
-} cairo_filter_t;
-
-cairo_public void
-cairo_pattern_set_filter (cairo_pattern_t *pattern, cairo_filter_t filter);
-
-cairo_public cairo_filter_t
-cairo_pattern_get_filter (cairo_pattern_t *pattern);
-
-cairo_public cairo_status_t
-cairo_pattern_get_rgba (cairo_pattern_t *pattern,
- double *red, double *green,
- double *blue, double *alpha);
-
-cairo_public cairo_status_t
-cairo_pattern_get_surface (cairo_pattern_t *pattern,
- cairo_surface_t **surface);
-
-
-cairo_public cairo_status_t
-cairo_pattern_get_color_stop_rgba (cairo_pattern_t *pattern,
- int index, double *offset,
- double *red, double *green,
- double *blue, double *alpha);
-
-cairo_public cairo_status_t
-cairo_pattern_get_color_stop_count (cairo_pattern_t *pattern,
- int *count);
-
-cairo_public cairo_status_t
-cairo_pattern_get_linear_points (cairo_pattern_t *pattern,
- double *x0, double *y0,
- double *x1, double *y1);
-
-cairo_public cairo_status_t
-cairo_pattern_get_radial_circles (cairo_pattern_t *pattern,
- double *x0, double *y0, double *r0,
- double *x1, double *y1, double *r1);
-
-cairo_public cairo_status_t
-cairo_mesh_pattern_get_patch_count (cairo_pattern_t *pattern,
- unsigned int *count);
-
-cairo_public cairo_path_t *
-cairo_mesh_pattern_get_path (cairo_pattern_t *pattern,
- unsigned int patch_num);
-
-cairo_public cairo_status_t
-cairo_mesh_pattern_get_corner_color_rgba (cairo_pattern_t *pattern,
- unsigned int patch_num,
- unsigned int corner_num,
- double *red, double *green,
- double *blue, double *alpha);
-
-cairo_public cairo_status_t
-cairo_mesh_pattern_get_control_point (cairo_pattern_t *pattern,
- unsigned int patch_num,
- unsigned int point_num,
- double *x, double *y);
-
-/* Matrix functions */
-
-cairo_public void
-cairo_matrix_init (cairo_matrix_t *matrix,
- double xx, double yx,
- double xy, double yy,
- double x0, double y0);
-
-cairo_public void
-cairo_matrix_init_identity (cairo_matrix_t *matrix);
-
-cairo_public void
-cairo_matrix_init_translate (cairo_matrix_t *matrix,
- double tx, double ty);
-
-cairo_public void
-cairo_matrix_init_scale (cairo_matrix_t *matrix,
- double sx, double sy);
-
-cairo_public void
-cairo_matrix_init_rotate (cairo_matrix_t *matrix,
- double radians);
-
-cairo_public void
-cairo_matrix_translate (cairo_matrix_t *matrix, double tx, double ty);
-
-cairo_public void
-cairo_matrix_scale (cairo_matrix_t *matrix, double sx, double sy);
-
-cairo_public void
-cairo_matrix_rotate (cairo_matrix_t *matrix, double radians);
-
-cairo_public cairo_status_t
-cairo_matrix_invert (cairo_matrix_t *matrix);
-
-cairo_public void
-cairo_matrix_multiply (cairo_matrix_t *result,
- const cairo_matrix_t *a,
- const cairo_matrix_t *b);
-
-cairo_public void
-cairo_matrix_transform_distance (const cairo_matrix_t *matrix,
- double *dx, double *dy);
-
-cairo_public void
-cairo_matrix_transform_point (const cairo_matrix_t *matrix,
- double *x, double *y);
-
-/* Region functions */
-
-/**
- * cairo_region_t:
- *
- * A #cairo_region_t represents a set of integer-aligned rectangles.
- *
- * It allows set-theoretical operations like cairo_region_union() and
- * cairo_region_intersect() to be performed on them.
- *
- * Memory management of #cairo_region_t is done with
- * cairo_region_reference() and cairo_region_destroy().
- *
- * Since: 1.10
- **/
-typedef struct _cairo_region cairo_region_t;
-
-typedef enum _cairo_region_overlap {
- CAIRO_REGION_OVERLAP_IN, /* completely inside region */
- CAIRO_REGION_OVERLAP_OUT, /* completely outside region */
- CAIRO_REGION_OVERLAP_PART /* partly inside region */
-} cairo_region_overlap_t;
-
-cairo_public cairo_region_t *
-cairo_region_create (void);
-
-cairo_public cairo_region_t *
-cairo_region_create_rectangle (const cairo_rectangle_int_t *rectangle);
-
-cairo_public cairo_region_t *
-cairo_region_create_rectangles (const cairo_rectangle_int_t *rects,
- int count);
-
-cairo_public cairo_region_t *
-cairo_region_copy (const cairo_region_t *original);
-
-cairo_public cairo_region_t *
-cairo_region_reference (cairo_region_t *region);
-
-cairo_public void
-cairo_region_destroy (cairo_region_t *region);
-
-cairo_public cairo_bool_t
-cairo_region_equal (const cairo_region_t *a, const cairo_region_t *b);
-
-cairo_public cairo_status_t
-cairo_region_status (const cairo_region_t *region);
-
-cairo_public void
-cairo_region_get_extents (const cairo_region_t *region,
- cairo_rectangle_int_t *extents);
-
-cairo_public int
-cairo_region_num_rectangles (const cairo_region_t *region);
-
-cairo_public void
-cairo_region_get_rectangle (const cairo_region_t *region,
- int nth,
- cairo_rectangle_int_t *rectangle);
-
-cairo_public cairo_bool_t
-cairo_region_is_empty (const cairo_region_t *region);
-
-cairo_public cairo_region_overlap_t
-cairo_region_contains_rectangle (const cairo_region_t *region,
- const cairo_rectangle_int_t *rectangle);
-
-cairo_public cairo_bool_t
-cairo_region_contains_point (const cairo_region_t *region, int x, int y);
-
-cairo_public void
-cairo_region_translate (cairo_region_t *region, int dx, int dy);
-
-cairo_public cairo_status_t
-cairo_region_subtract (cairo_region_t *dst, const cairo_region_t *other);
-
-cairo_public cairo_status_t
-cairo_region_subtract_rectangle (cairo_region_t *dst,
- const cairo_rectangle_int_t *rectangle);
-
-cairo_public cairo_status_t
-cairo_region_intersect (cairo_region_t *dst, const cairo_region_t *other);
-
-cairo_public cairo_status_t
-cairo_region_intersect_rectangle (cairo_region_t *dst,
- const cairo_rectangle_int_t *rectangle);
-
-cairo_public cairo_status_t
-cairo_region_union (cairo_region_t *dst, const cairo_region_t *other);
-
-cairo_public cairo_status_t
-cairo_region_union_rectangle (cairo_region_t *dst,
- const cairo_rectangle_int_t *rectangle);
-
-cairo_public cairo_status_t
-cairo_region_xor (cairo_region_t *dst, const cairo_region_t *other);
-
-cairo_public cairo_status_t
-cairo_region_xor_rectangle (cairo_region_t *dst,
- const cairo_rectangle_int_t *rectangle);
-
-/* Functions to be used while debugging (not intended for use in production code) */
-cairo_public void
-cairo_debug_reset_static_data (void);
-
-
-CAIRO_END_DECLS
-
-#endif /* CAIRO_H */
diff --git a/configure.ac b/configure.ac
deleted file mode 100644
index e41cb41..0000000
--- a/configure.ac
+++ /dev/null
@@ -1,15 +0,0 @@
-AC_INIT([amN3888_RefImpl], [1.0], [mikebmcl@gmail.com])
-AM_INIT_AUTOMAKE([foreign -Wall -Werror])
-AC_PROG_CC
-AM_PROG_CC_C_O
-AC_PROG_CXX
-AC_CONFIG_HEADERS([config.h])
-AC_CONFIG_FILES([Makefile N3888_RefImpl/Makefile N3888_RefImpl/src/Makefile])
-AC_CONFIG_MACRO_DIR([m4])
-AC_LANG([C++])
-AX_CXX_COMPILE_STDCXX_11([noext], [mandatory])
-AX_CFLAGS_WARN_ALL
-AX_CXXFLAGS_WARN_ALL
-PKG_CHECK_MODULES([GTKCAIRO], [gtk+-3.0 >= 3.8.0 gmodule-2.0 gobject-2.0 cairo >= 1.12.16 x11])
-AC_SUBST([DOLLAR_SIGN],[$])
-AC_OUTPUT
diff --git a/doc/p0267r0.pdf b/doc/p0267r0.pdf
new file mode 100644
index 0000000..07d943d
Binary files /dev/null and b/doc/p0267r0.pdf differ
diff --git a/examples/hello-world/CMakeLists.txt b/examples/hello-world/CMakeLists.txt
new file mode 100644
index 0000000..72f1682
--- /dev/null
+++ b/examples/hello-world/CMakeLists.txt
@@ -0,0 +1,11 @@
+cmake_minimum_required(VERSION 2.8.12)
+
+project(hello CXX)
+
+set(CMAKE_CXX_STANDARD 14)
+set(CMAKE_CXX_EXTENSIONS OFF)
+
+add_executable(hello hello.cpp)
+
+target_link_libraries(hello ${IO2D_LIBRARY})
+target_include_directories(hello PRIVATE ${IO2D_INCLUDE_DIR})
diff --git a/examples/hello-world/hello.cpp b/examples/hello-world/hello.cpp
new file mode 100644
index 0000000..d73a6a7
--- /dev/null
+++ b/examples/hello-world/hello.cpp
@@ -0,0 +1,40 @@
+#include
+
+#include
+#include "tga_header.h"
+
+namespace io2d = std::experimental::io2d;
+
+void save_surface_to_tga_file(io2d::image_surface& surface,
+ std::string const& fileName)
+{
+ tga::header tga_header;
+ tga_header.image_type = tga::image_type::true_color;
+ tga_header.image_spec.width = surface.width();
+ tga_header.image_spec.height = surface.height();
+ tga_header.image_spec.depth = 32;
+ tga_header.image_spec.descriptor.top = 1;
+
+ std::ofstream ofs(fileName, std::ofstream::binary);
+ ofs.write(reinterpret_cast(&tga_header),
+ sizeof(tga_header));
+
+ auto bytes = surface.data();
+ ofs.write(reinterpret_cast(&bytes[0]),
+ bytes.size());
+}
+
+int main ()
+{
+ io2d::image_surface image(io2d::format::argb32, 240, 80);
+
+ image.font_resource("Consolas", 32.0, io2d::font_slant::normal,
+ io2d::font_weight::bold);
+
+ io2d::brush cyan(io2d::rgba_color::cyan());
+ image.brush(cyan);
+
+ image.render_text("Hello World", {20.0, 50.0});
+
+ save_surface_to_tga_file(image, "hello.tga");
+}
diff --git a/examples/hello-world/tga_header.h b/examples/hello-world/tga_header.h
new file mode 100644
index 0000000..9344b63
--- /dev/null
+++ b/examples/hello-world/tga_header.h
@@ -0,0 +1,63 @@
+#pragma once
+
+#include
+
+// http://stackoverflow.com/questions/14025735/problems-displaying-targa-tga
+namespace tga
+{
+ enum class color_map_type : uint8_t
+ {
+ absent = 0,
+ present = 1,
+ };
+
+ enum class image_type : uint8_t
+ {
+ none = 0,
+ color_mapped = 1,
+ true_color = 2,
+ black_white = 3,
+ rle_color_mapped = 9,
+ rle_true_color = 10,
+ rle_black_white = 11,
+ };
+
+ #pragma pack(1)
+ struct color_map_spec
+ {
+ uint16_t first_entry_index {0};
+ uint16_t length {0};
+ uint8_t entry_size {0};
+ };
+ static_assert(sizeof(color_map_spec) == 5, "bad size");
+
+ struct image_descriptor
+ {
+ uint8_t alpha : 4;
+ uint8_t right : 1;
+ uint8_t top : 1;
+ uint8_t reserved : 2;
+ };
+ static_assert(sizeof(image_descriptor) == 1, "bad size");
+
+ struct image_spec
+ {
+ uint16_t x_origin {0};
+ uint16_t y_origin {0};
+ uint16_t width {0};
+ uint16_t height {0};
+ uint8_t depth {0};
+ image_descriptor descriptor {0};
+ };
+ static_assert(sizeof(image_spec) == 10, "bad size");
+
+ struct header
+ {
+ uint8_t id_length {0};
+ tga::color_map_type color_map_type {tga::color_map_type::absent };
+ tga::image_type image_type;
+ tga::color_map_spec color_map_spec;
+ tga::image_spec image_spec;
+ };
+ static_assert(sizeof(header) == 18, "bad size");
+}
diff --git a/N3888_RefImpl/src/io2d.h b/io2d/include/io2d.h
similarity index 83%
rename from N3888_RefImpl/src/io2d.h
rename to io2d/include/io2d.h
index 2beefc0..ea1dda2 100644
--- a/N3888_RefImpl/src/io2d.h
+++ b/io2d/include/io2d.h
@@ -15,12 +15,15 @@
#include
#include
#include
+#include
#ifdef _WIN32_WINNT
#define NOMINMAX
#define WIN32_LEAN_AND_MEAN
#include
-#else
+#elif defined(USE_XCB)
+#include
+#elif defined(USE_XLIB)
#include
#include
#include
@@ -30,81 +33,6 @@
#define noexcept
#endif
-//namespace std {
-// namespace experimental {
-// ////// From C++ Extensions for Library Fundamentals, N4335
-// //struct nullopt_t {
-// // constexpr explicit nullopt_t(int) noexcept {
-// // }
-// //};
-// //constexpr nullopt_t nullopt{ 0 };
-//
-//// namespace io2d {
-////#if _Inline_namespace_conditional_support_test
-//// inline namespace v1 {
-////#endif
-//// enum class io2d_error;
-//// enum class antialias;
-//// enum class content;
-//// enum class fill_rule;
-//// enum class line_cap;
-//// enum class line_join;
-//// enum class compositing_operator;
-//// enum class format;
-//// enum class extend;
-//// enum class filter;
-//// enum class brush_type;
-//// enum class font_slant;
-//// enum class font_weight;
-//// enum class subpixel_order;
-//// enum class path_data_type;
-//// enum class scaling;
-//// class io2d_error_category;
-//// class rectangle;
-//// class rgba_color;
-//// class vector_2d;
-//// class font_extents;
-//// class text_extents;
-//// class matrix_2d;
-//// //class path_data;
-//// class _Point;
-//// //class move_to;
-//// //class line_to;
-//// //class rel_move_to;
-//// //class rel_line_to;
-//// class _Curve_to;
-//// //class curve_to;
-//// //class rel_curve_to;
-//// class _Arc;
-//// //class arc;
-//// //class arc_negative;
-//// //class new_sub_path;
-//// //class close_path;
-//// //class change_matrix;
-//// //class change_origin;
-//// class path;
-//// class path_factory;
-//// class device;
-//// class font_options;
-//// class font_face;
-//// class simple_font_face;
-//// class brush;
-//// class solid_color_brush_factory;
-//// class linear_brush_factory;
-//// class radial_brush_factory;
-//// //class mesh_brush_factory;
-//// struct _Surface_native_handles;
-//// class surface;
-//// class image_surface;
-//// class display_surface;
-//// class surface_brush_factory;
-////#if _Inline_namespace_conditional_support_test
-//// }
-////#endif
-//// }
-// }
-//}
-
namespace std {
namespace experimental {
@@ -283,6 +211,12 @@ namespace std {
none // Do not scale.
};
+ enum class refresh_rate {
+ as_needed,
+ as_fast_as_possible,
+ fixed
+ };
+
// I don't know why Clang/C2 is complaining about weak vtables here since the at least one virtual function is always anchored but for now silence the warnings. I've never seen this using Clang on OpenSUSE.
#ifdef _WIN32
#ifdef __clang__
@@ -1391,6 +1325,10 @@ namespace std {
path& operator=(path&& other) noexcept;
};
+ // Forward declaration
+ class font_resource;
+ class glyph_run;
+
class path_factory {
friend path;
::std::vector _Data;
@@ -1438,6 +1376,10 @@ namespace std {
void change_origin(const vector_2d& pt);
void change_origin(const vector_2d& pt, ::std::error_code& ec) noexcept;
void clear() noexcept;
+ void add_text(const font_resource& fr, const ::std::string& utf8, const vector_2d& pt);
+ void add_text(const font_resource& fr, const ::std::string& utf8, const vector_2d& pt, ::std::error_code& ec) noexcept;
+ void add_glyph_run(const font_resource& fr, const glyph_run& gr);
+ void add_glyph_run(const font_resource& fr, const glyph_run& gr, ::std::error_code& ec) noexcept;
// Observers
::std::experimental::io2d::rectangle path_extents() const;
@@ -1500,72 +1442,182 @@ namespace std {
::std::experimental::io2d::subpixel_order subpixel_order() const noexcept;
};
- // I don't know why Clang/C2 is complaining about weak vtables here since the at least one virtual function is always anchored but for now silence the warnings. I've never seen this using Clang on OpenSUSE.
-#ifdef _WIN32
-#ifdef __clang__
-#pragma clang diagnostic push
-#pragma clang diagnostic ignored "-Wweak-vtables"
-#endif
-#endif
+ class font_resource_factory {
+ ::std::string _Family;
+ ::std::experimental::io2d::font_slant _Font_slant = ::std::experimental::io2d::font_slant::normal;
+ ::std::experimental::io2d::font_weight _Font_weight = ::std::experimental::io2d::font_weight::normal;
+ ::std::experimental::io2d::font_options _Font_options;
+ matrix_2d _Font_matrix = matrix_2d::init_scale({ 16.0, 16.0 });
+ matrix_2d _Surface_matrix;
- class font_face {
- friend surface;
public:
- typedef cairo_font_face_t* native_handle_type;
- protected:
- ::std::shared_ptr _Font_face;
- explicit font_face(native_handle_type nh);
- font_face(native_handle_type nh, ::std::error_code& ec) noexcept;
- public:
- native_handle_type native_handle() const noexcept;
+ font_resource_factory() = default;
+ font_resource_factory(const font_resource_factory&) = default;
+ font_resource_factory& operator=(const font_resource_factory&) = default;
+ font_resource_factory(font_resource_factory&&) noexcept = default;
+ font_resource_factory& operator=(font_resource_factory&&) noexcept;
+ explicit font_resource_factory(const ::std::string& family,
+ ::std::experimental::io2d::font_slant fs = ::std::experimental::io2d::font_slant::normal,
+ ::std::experimental::io2d::font_weight fw = ::std::experimental::io2d::font_weight::normal,
+ const matrix_2d& fm = matrix_2d::init_scale({ 16.0, 16.0 }),
+ const ::std::experimental::io2d::font_options& fo = ::std::experimental::io2d::font_options(),
+ const matrix_2d& sm = matrix_2d::init_identity());
+ font_resource_factory(const ::std::string& family,
+ ::std::error_code& ec,
+ ::std::experimental::io2d::font_slant fs = ::std::experimental::io2d::font_slant::normal,
+ ::std::experimental::io2d::font_weight fw = ::std::experimental::io2d::font_weight::normal,
+ const matrix_2d& fm = matrix_2d::init_scale({ 16.0, 16.0 }),
+ const ::std::experimental::io2d::font_options& fo = ::std::experimental::io2d::font_options(),
+ const matrix_2d& sm = matrix_2d::init_identity()) noexcept;
+
+ // Modifiers
+ void font_family(const ::std::string& f);
+ void font_family(const ::std::string& f, ::std::error_code& ec) noexcept;
+ void font_slant(const ::std::experimental::io2d::font_slant fs);
+ void font_slant(const ::std::experimental::io2d::font_slant fs, ::std::error_code& ec) noexcept;
+ void font_weight(::std::experimental::io2d::font_weight fw);
+ void font_weight(::std::experimental::io2d::font_weight fw, ::std::error_code& ec) noexcept;
+ void font_options(const ::std::experimental::io2d::font_options& fo) noexcept;
+ void font_matrix(const matrix_2d& m) noexcept;
+ void surface_matrix(const matrix_2d& m) noexcept;
- font_face() = delete;
- font_face(const font_face&) noexcept = default;
- font_face& operator=(const font_face&) noexcept = default;
- font_face(font_face&& other) noexcept;
- font_face& operator=(font_face&& other) noexcept;
- virtual ~font_face();
+ // Observers
+ ::std::string font_family() const;
+ ::std::string font_family(::std::error_code& ec) const noexcept;
+ ::std::experimental::io2d::font_slant font_slant() const noexcept;
+ ::std::experimental::io2d::font_weight font_weight() const noexcept;
+ ::std::experimental::io2d::font_options font_options() const noexcept;
+ matrix_2d font_matrix() const noexcept;
+ matrix_2d surface_matrix() const noexcept;
};
- // I don't know why Clang/C2 is complaining about weak vtables here since the at least one virtual function is always anchored but for now silence the warnings. I've never seen this using Clang on OpenSUSE.
-#ifdef _WIN32
-#ifdef __clang__
-#pragma clang diagnostic pop
-#endif
-#endif
+ //Forward declaration
+ class glyph_run;
+ class path_factory;
- // I don't know why Clang/C2 is complaining about weak vtables here since the at least one virtual function is always anchored but for now silence the warnings. I've never seen this using Clang on OpenSUSE.
-#ifdef _WIN32
-#ifdef __clang__
-#pragma clang diagnostic push
-#pragma clang diagnostic ignored "-Wweak-vtables"
-#endif
-#endif
+ class font_resource {
+ friend surface;
+ friend glyph_run;
+ friend path_factory;
+
+ ::std::shared_ptr _Scaled_font;
+ ::std::shared_ptr<::std::string> _Font_family;
+ ::std::experimental::io2d::font_slant _Font_slant;
+ ::std::experimental::io2d::font_weight _Font_weight;
+ ::std::shared_ptr _Font_options;
- class simple_font_face : public font_face {
public:
- simple_font_face() = delete;
- simple_font_face(const simple_font_face&) noexcept = default;
- simple_font_face& operator=(const simple_font_face&) noexcept = default;
- simple_font_face(const ::std::string& family, ::std::experimental::io2d::font_slant fs, ::std::experimental::io2d::font_weight fw);
- simple_font_face(const ::std::string& family, ::std::experimental::io2d::font_slant fs, ::std::experimental::io2d::font_weight fw, ::std::error_code& ec) noexcept;
- simple_font_face(simple_font_face&& other) noexcept;
- simple_font_face& operator=(simple_font_face&& other) noexcept;
- virtual ~simple_font_face();
+ font_resource() = delete;
+ font_resource(const font_resource&) noexcept = default;
+ font_resource& operator=(const font_resource&) noexcept = default;
+ font_resource(font_resource&&) noexcept = default;
+ font_resource& operator=(font_resource&&) noexcept = default;
+ explicit font_resource(const font_resource_factory& f);
+ font_resource(const font_resource_factory& f, ::std::error_code& ec) noexcept;
// Observers
::std::string font_family() const;
- void font_family(::std::string& str, ::std::error_code& ec) const noexcept;
+ ::std::string font_family(::std::error_code& ec) const noexcept;
::std::experimental::io2d::font_slant font_slant() const noexcept;
::std::experimental::io2d::font_weight font_weight() const noexcept;
+ ::std::experimental::io2d::font_options font_options() const noexcept;
+ matrix_2d font_matrix() const noexcept;
+ matrix_2d surface_matrix() const noexcept;
+ ::std::experimental::io2d::font_extents font_extents() const noexcept;
+ ::std::experimental::io2d::text_extents text_extents(const ::std::string& utf8) const noexcept;
+ glyph_run make_glyph_run(const ::std::string& utf8, const vector_2d& pos) const;
+ glyph_run make_glyph_run(const ::std::string& utf8, const vector_2d& pos, ::std::error_code& ec) const noexcept;
};
- // I don't know why Clang/C2 is complaining about weak vtables here since the at least one virtual function is always anchored but for now silence the warnings. I've never seen this using Clang on OpenSUSE.
-#ifdef _WIN32
-#ifdef __clang__
-#pragma clang diagnostic pop
-#endif
-#endif
+ class glyph_run {
+ friend ::std::experimental::io2d::font_resource;
+ friend surface;
+ friend path_factory;
+
+ public:
+ class glyph {
+ friend glyph_run;
+ public:
+ typedef unsigned long index_type; // impldef
+ private:
+ index_type _Index = 0;
+ double _X = 0.0;
+ double _Y = 0.0;
+ cairo_glyph_t* _Native_glyph = nullptr;
+ public:
+ glyph() noexcept = default;
+ glyph(const glyph&) noexcept = default;
+ glyph& operator=(const glyph&) noexcept = default;
+ glyph(glyph&&) noexcept = default;
+ glyph& operator=(glyph&&) noexcept = default;
+ glyph(index_type i, double x, double y) noexcept;
+
+ // Modifiers
+ void index(index_type i) noexcept;
+ void x(double val) noexcept;
+ void y(double val) noexcept;
+
+ // Observers
+ index_type index() const noexcept;
+ double x() const noexcept;
+ double y() const noexcept;
+ };
+
+ class cluster {
+ friend glyph_run;
+ // Clusters are useful when dealing with ligatures and ordering in scripts that require complex text layout.
+ int _Glyph_count = 0; // Note: It's possible that processing could result in a cluster where one or more characters map to zero glyphs due to the previous or next cluster.
+ int _Byte_count = 0; // Note: UTF-8 is variable byte length. A single cluster can map to multiple characters. Lastly, it's possible that processing could result in a cluster with one or more glyphs map to zero characters due to the previous or next cluster.
+ cairo_text_cluster_t* _Native_cluster = nullptr;
+ public:
+ cluster() noexcept = default;
+ cluster(const cluster&) noexcept = default;
+ cluster& operator=(const cluster&) noexcept = default;
+ cluster(cluster&&) noexcept = default;
+ cluster& operator=(cluster&&) noexcept = default;
+ cluster(int glyphs, int bytes) noexcept;
+
+ // Modifiers
+ void glyph_count(int count) noexcept;
+ void byte_count(int count) noexcept;
+
+ // Observers
+ int glyph_count() const noexcept;
+ int byte_count() const noexcept;
+ };
+
+ private:
+ ::std::string _Text_string;
+ ::std::experimental::io2d::font_resource _Font_resource;
+ ::std::vector _Glyphs;
+ ::std::vector _Clusters;
+ ::std::shared_ptr _Cairo_glyphs;
+ ::std::shared_ptr _Cairo_text_clusters;
+ vector_2d _Position;
+ cairo_text_cluster_flags_t _Text_cluster_flags;
+
+ glyph_run(const ::std::experimental::io2d::font_resource& fr, const ::std::string& utf8, const vector_2d& pos);
+ glyph_run(const ::std::experimental::io2d::font_resource& fr, const ::std::string& utf8, const vector_2d& pos, ::std::error_code& ec) noexcept;
+
+ public:
+ glyph_run(const glyph_run&) = default;
+ glyph_run& operator=(const glyph_run&) = default;
+ glyph_run(glyph_run&&) noexcept = default;
+ glyph_run& operator=(glyph_run&&) noexcept;
+
+ // Modifiers
+ ::std::vector& glyphs() noexcept;
+ ::std::vector& clusters() noexcept;
+
+ // Observers
+ const ::std::string& original_text() const noexcept;
+ const ::std::vector& glyphs() const noexcept;
+ const ::std::vector& clusters() const noexcept;
+ const ::std::experimental::io2d::font_resource& font_resource() const noexcept;
+ bool reversed_clusters() const noexcept;
+ vector_2d position() const noexcept;
+ text_extents extents() const noexcept;
+ };
// Forward declaration.
class linear_brush_factory;
@@ -1818,10 +1870,7 @@ namespace std {
::std::experimental::io2d::path_factory _Immediate_path;
typedef matrix_2d _Transform_matrix_type;
_Transform_matrix_type _Transform_matrix;
- ::std::shared_ptr<::std::experimental::io2d::font_face> _Font_face;
- typedef matrix_2d _Font_matrix_type;
- _Font_matrix_type _Font_matrix; // Covers both font size and full font matrix - font size is just a uniform scale matrix.
- ::std::experimental::io2d::font_options _Font_options;
+ ::std::experimental::io2d::font_resource _Font_resource;
// Relies on C++17 noexcept guarantee for vector default ctor (N4258, adopted 2014-11).
::std::stack<::std::tuple<
@@ -1837,9 +1886,7 @@ namespace std {
::std::shared_ptr<::std::experimental::io2d::path>,
::std::experimental::io2d::path_factory,
_Transform_matrix_type,
- ::std::shared_ptr<::std::experimental::io2d::font_face>,
- _Font_matrix_type,
- ::std::experimental::io2d::font_options
+ ::std::experimental::io2d::font_resource
>, ::std::vector<::std::tuple<
::std::experimental::io2d::brush,
::std::experimental::io2d::antialias,
@@ -1853,9 +1900,7 @@ namespace std {
::std::shared_ptr<::std::experimental::io2d::path>,
::std::experimental::io2d::path_factory,
_Transform_matrix_type,
- ::std::shared_ptr<::std::experimental::io2d::font_face>,
- _Font_matrix_type,
- ::std::experimental::io2d::font_options>>> _Saved_state;
+ ::std::experimental::io2d::font_resource>>> _Saved_state;
void _Ensure_state();
void _Ensure_state(::std::error_code& ec) noexcept;
@@ -1935,60 +1980,48 @@ namespace std {
void fill(const rgba_color& c, ::std::error_code& ec) noexcept;
void fill(const ::std::experimental::io2d::brush& b);
void fill(const ::std::experimental::io2d::brush& b, ::std::error_code& ec) noexcept;
- void fill(const surface& s, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good);
- void fill(const surface& s, ::std::error_code& ec, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good) noexcept;
- void fill(const surface& s, const matrix_2d& m, extend e = extend::none, filter f = filter::good);
- void fill(const surface& s, const matrix_2d& m, ::std::error_code& ec, extend e = extend::none, filter f = filter::good) noexcept;
+ void fill(const surface& s, const matrix_2d& m = matrix_2d::init_identity(), extend e = extend::none, filter f = filter::good);
+ void fill(const surface& s, ::std::error_code& ec, const matrix_2d& m = matrix_2d::init_identity(), extend e = extend::none, filter f = filter::good) noexcept;
void fill_immediate();
void fill_immediate(::std::error_code& ec) noexcept;
void fill_immediate(const rgba_color& c);
void fill_immediate(const rgba_color& c, ::std::error_code& ec) noexcept;
void fill_immediate(const ::std::experimental::io2d::brush& b);
void fill_immediate(const ::std::experimental::io2d::brush& b, ::std::error_code& ec) noexcept;
- void fill_immediate(const surface& s, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good);
- void fill_immediate(const surface& s, ::std::error_code& ec, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good) noexcept;
- void fill_immediate(const surface& s, const matrix_2d& m, extend e = extend::none, filter f = filter::good);
- void fill_immediate(const surface& s, const matrix_2d& m, ::std::error_code& ec, extend e = extend::none, filter f = filter::good) noexcept;
+ void fill_immediate(const surface& s, const matrix_2d& m = matrix_2d::init_identity(), extend e = extend::none, filter f = filter::good);
+ void fill_immediate(const surface& s, ::std::error_code& ec, const matrix_2d& m = matrix_2d::init_identity(), extend e = extend::none, filter f = filter::good) noexcept;
void paint();
void paint(::std::error_code& ec) noexcept;
void paint(const rgba_color& c);
void paint(const rgba_color& c, ::std::error_code& ec) noexcept;
void paint(const ::std::experimental::io2d::brush& b);
void paint(const ::std::experimental::io2d::brush& b, ::std::error_code& ec) noexcept;
- void paint(const surface& s, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good);
- void paint(const surface& s, ::std::error_code& ec, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good) noexcept;
- void paint(const surface& s, const matrix_2d& m, extend e = extend::none, filter f = filter::good);
- void paint(const surface& s, const matrix_2d& m, ::std::error_code& ec, extend e = extend::none, filter f = filter::good) noexcept;
+ void paint(const surface& s, const matrix_2d& m = matrix_2d::init_identity(), extend e = extend::none, filter f = filter::good);
+ void paint(const surface& s, ::std::error_code& ec, const matrix_2d& m = matrix_2d::init_identity(), extend e = extend::none, filter f = filter::good) noexcept;
void paint(double alpha);
void paint(double alpha, ::std::error_code& ec) noexcept;
void paint(const rgba_color& c, double alpha);
void paint(const rgba_color& c, double alpha, ::std::error_code& ec) noexcept;
void paint(const ::std::experimental::io2d::brush& b, double alpha);
void paint(const ::std::experimental::io2d::brush& b, double alpha, ::std::error_code& ec) noexcept;
- void paint(const surface& s, double alpha, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good);
- void paint(const surface& s, double alpha, ::std::error_code& ec, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good) noexcept;
- void paint(const surface& s, double alpha, const matrix_2d& m, extend e = extend::none, filter f = filter::good);
- void paint(const surface& s, double alpha, const matrix_2d& m, ::std::error_code& ec, extend e = extend::none, filter f = filter::good) noexcept;
+ void paint(const surface& s, double alpha, const matrix_2d& m = matrix_2d::init_identity(), extend e = extend::none, filter f = filter::good);
+ void paint(const surface& s, double alpha, ::std::error_code& ec, const matrix_2d& m = matrix_2d::init_identity(), extend e = extend::none, filter f = filter::good) noexcept;
void stroke();
void stroke(::std::error_code& ec) noexcept;
void stroke(const rgba_color& c);
void stroke(const rgba_color& c, ::std::error_code& ec) noexcept;
void stroke(const ::std::experimental::io2d::brush& b);
void stroke(const ::std::experimental::io2d::brush& b, ::std::error_code& ec) noexcept;
- void stroke(const surface& s, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good);
- void stroke(const surface& s, ::std::error_code& ec, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good) noexcept;
- void stroke(const surface& s, const matrix_2d& m, extend e = extend::none, filter f = filter::good);
- void stroke(const surface& s, const matrix_2d& m, ::std::error_code& ec, extend e = extend::none, filter f = filter::good) noexcept;
+ void stroke(const surface& s, const matrix_2d& m = matrix_2d::init_identity(), extend e = extend::none, filter f = filter::good);
+ void stroke(const surface& s, ::std::error_code& ec, const matrix_2d& m = matrix_2d::init_identity(), extend e = extend::none, filter f = filter::good) noexcept;
void stroke_immediate();
void stroke_immediate(::std::error_code& ec) noexcept;
void stroke_immediate(const rgba_color& c);
void stroke_immediate(const rgba_color& c, ::std::error_code& ec) noexcept;
void stroke_immediate(const ::std::experimental::io2d::brush& b);
void stroke_immediate(const ::std::experimental::io2d::brush& b, ::std::error_code& ec) noexcept;
- void stroke_immediate(const surface& s, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good);
- void stroke_immediate(const surface& s, ::std::error_code& ec, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good) noexcept;
- void stroke_immediate(const surface& s, const matrix_2d& m, extend e = extend::none, filter f = filter::good);
- void stroke_immediate(const surface& s, const matrix_2d& m, ::std::error_code& ec, extend e = extend::none, filter f = filter::good) noexcept;
+ void stroke_immediate(const surface& s, const matrix_2d& m = matrix_2d::init_identity(), extend e = extend::none, filter f = filter::good);
+ void stroke_immediate(const surface& s, ::std::error_code& ec, const matrix_2d& m = matrix_2d::init_identity(), extend e = extend::none, filter f = filter::good) noexcept;
// \ref{\iotwod.surface.modifiers.maskrender}, mask render modifiers:
void mask(const ::std::experimental::io2d::brush& maskBrush);
@@ -1997,60 +2030,32 @@ namespace std {
void mask(const ::std::experimental::io2d::brush& maskBrush, const rgba_color& c, ::std::error_code& ec) noexcept;
void mask(const ::std::experimental::io2d::brush& maskBrush, const ::std::experimental::io2d::brush& b);
void mask(const ::std::experimental::io2d::brush& maskBrush, const ::std::experimental::io2d::brush& b, ::std::error_code& ec) noexcept;
- void mask(const ::std::experimental::io2d::brush& maskBrush, const surface& s, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good);
- void mask(const ::std::experimental::io2d::brush& maskBrush, const surface& s, ::std::error_code& ec, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good) noexcept;
- void mask(const ::std::experimental::io2d::brush& maskBrush, const surface& s, const matrix_2d& m, extend e = extend::none, filter f = filter::good);
- void mask(const ::std::experimental::io2d::brush& maskBrush, const surface& s, const matrix_2d& m, ::std::error_code& ec, extend e = extend::none, filter f = filter::good) noexcept;
- void mask(const surface& maskSurface);
- void mask(const surface& maskSurface, ::std::error_code& ec) noexcept;
- void mask(const surface& maskSurface, const rgba_color& c);
- void mask(const surface& maskSurface, const rgba_color& c, ::std::error_code& ec) noexcept;
- void mask(const surface& maskSurface, const ::std::experimental::io2d::brush& b);
- void mask(const surface& maskSurface, const ::std::experimental::io2d::brush& b, ::std::error_code& ec) noexcept;
- void mask(const surface& maskSurface, const surface& s, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good);
- void mask(const surface& maskSurface, const surface& s, ::std::error_code& ec, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good) noexcept;
- void mask(const surface& maskSurface, const surface& s, const matrix_2d& m, extend e = extend::none, filter f = filter::good);
- void mask(const surface& maskSurface, const surface& s, const matrix_2d& m, ::std::error_code& ec, extend e = extend::none, filter f = filter::good) noexcept;
- void mask(const surface& maskSurface, const vector_2d& maskOrigin);
- void mask(const surface& maskSurface, const vector_2d& maskOrigin, ::std::error_code& ec) noexcept;
- void mask(const surface& maskSurface, const vector_2d& maskOrigin, const rgba_color& c);
- void mask(const surface& maskSurface, const vector_2d& maskOrigin, const rgba_color& c, ::std::error_code& ec) noexcept;
- void mask(const surface& maskSurface, const vector_2d& maskOrigin, const ::std::experimental::io2d::brush& b);
- void mask(const surface& maskSurface, const vector_2d& maskOrigin, const ::std::experimental::io2d::brush& b, ::std::error_code& ec) noexcept;
- void mask(const surface& maskSurface, const vector_2d& maskOrigin, const surface& s, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good);
- void mask(const surface& maskSurface, const vector_2d& maskOrigin, const surface& s, ::std::error_code& ec, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good) noexcept;
- void mask(const surface& maskSurface, const vector_2d& maskOrigin, const surface& s, const matrix_2d& m, extend e = extend::none, filter f = filter::good);
- void mask(const surface& maskSurface, const vector_2d& maskOrigin, const surface& s, const matrix_2d& m, ::std::error_code& ec, extend e = extend::none, filter f = filter::good) noexcept;
+ void mask(const ::std::experimental::io2d::brush& maskBrush, const surface& s, const matrix_2d& m = matrix_2d::init_identity(), extend e = extend::none, filter f = filter::good);
+ void mask(const ::std::experimental::io2d::brush& maskBrush, const surface& s, ::std::error_code& ec, const matrix_2d& m = matrix_2d::init_identity(), extend e = extend::none, filter f = filter::good) noexcept;
+ void mask(surface& maskSurface, const matrix_2d& maskMatrix = matrix_2d::init_identity(), extend maskExtend = extend::none, filter maskFilter = filter::good);
+ void mask(surface& maskSurface, ::std::error_code& ec, const matrix_2d& maskMatrix = matrix_2d::init_identity(), extend maskExtend = extend::none, filter maskFilter = filter::good) noexcept;
+ void mask(surface& maskSurface, const rgba_color& c, const matrix_2d& maskMatrix = matrix_2d::init_identity(), extend maskExtend = extend::none, filter maskFilter = filter::good);
+ void mask(surface& maskSurface, const rgba_color& c, ::std::error_code& ec, const matrix_2d& maskMatrix = matrix_2d::init_identity(), extend maskExtend = extend::none, filter maskFilter = filter::good) noexcept;
+ void mask(surface& maskSurface, const ::std::experimental::io2d::brush& b, const matrix_2d& maskMatrix = matrix_2d::init_identity(), extend maskExtend = extend::none, filter maskFilter = filter::good);
+ void mask(surface& maskSurface, const ::std::experimental::io2d::brush& b, ::std::error_code& ec, const matrix_2d& maskMatrix = matrix_2d::init_identity(), extend maskExtend = extend::none, filter maskFilter = filter::good) noexcept;
+ void mask(surface& maskSurface, const surface& s, const matrix_2d& maskMatrix = matrix_2d::init_identity(), const matrix_2d& m = matrix_2d::init_identity(), extend maskExtend = extend::none, extend e = extend::none, filter maskFilter = filter::good, filter f = filter::good);
+ void mask(surface& maskSurface, const surface& s, ::std::error_code& ec, const matrix_2d& maskMatrix = matrix_2d::init_identity(), const matrix_2d& m = matrix_2d::init_identity(), extend maskExtend = extend::none, extend e = extend::none, filter maskFilter = filter::good, filter f = filter::good) noexcept;
void mask_immediate(const ::std::experimental::io2d::brush& maskBrush);
void mask_immediate(const ::std::experimental::io2d::brush& maskBrush, ::std::error_code& ec) noexcept;
void mask_immediate(const ::std::experimental::io2d::brush& maskBrush, const rgba_color& c);
void mask_immediate(const ::std::experimental::io2d::brush& maskBrush, const rgba_color& c, ::std::error_code& ec) noexcept;
void mask_immediate(const ::std::experimental::io2d::brush& maskBrush, const ::std::experimental::io2d::brush& b);
void mask_immediate(const ::std::experimental::io2d::brush& maskBrush, const ::std::experimental::io2d::brush& b, ::std::error_code& ec) noexcept;
- void mask_immediate(const ::std::experimental::io2d::brush& maskBrush, const surface& s, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good);
- void mask_immediate(const ::std::experimental::io2d::brush& maskBrush, const surface& s, ::std::error_code& ec, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good) noexcept;
- void mask_immediate(const ::std::experimental::io2d::brush& maskBrush, const surface& s, const matrix_2d& m, extend e = extend::none, filter f = filter::good);
- void mask_immediate(const ::std::experimental::io2d::brush& maskBrush, const surface& s, const matrix_2d& m, ::std::error_code& ec, extend e = extend::none, filter f = filter::good) noexcept;
- void mask_immediate(const surface& maskSurface);
- void mask_immediate(const surface& maskSurface, ::std::error_code& ec) noexcept;
- void mask_immediate(const surface& maskSurface, const rgba_color& c);
- void mask_immediate(const surface& maskSurface, const rgba_color& c, ::std::error_code& ec) noexcept;
- void mask_immediate(const surface& maskSurface, const ::std::experimental::io2d::brush& b);
- void mask_immediate(const surface& maskSurface, const ::std::experimental::io2d::brush& b, ::std::error_code& ec) noexcept;
- void mask_immediate(const surface& maskSurface, const surface& s, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good);
- void mask_immediate(const surface& maskSurface, const surface& s, ::std::error_code& ec, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good) noexcept;
- void mask_immediate(const surface& maskSurface, const surface& s, const matrix_2d& m, extend e = extend::none, filter f = filter::good);
- void mask_immediate(const surface& maskSurface, const surface& s, const matrix_2d& m, ::std::error_code& ec, extend e = extend::none, filter f = filter::good) noexcept;
- void mask_immediate(const surface& maskSurface, const vector_2d& maskOrigin);
- void mask_immediate(const surface& maskSurface, const vector_2d& maskOrigin, ::std::error_code& ec) noexcept;
- void mask_immediate(const surface& maskSurface, const vector_2d& maskOrigin, const rgba_color& c);
- void mask_immediate(const surface& maskSurface, const vector_2d& maskOrigin, const rgba_color& c, ::std::error_code& ec) noexcept;
- void mask_immediate(const surface& maskSurface, const vector_2d& maskOrigin, const ::std::experimental::io2d::brush& b);
- void mask_immediate(const surface& maskSurface, const vector_2d& maskOrigin, const ::std::experimental::io2d::brush& b, ::std::error_code& ec) noexcept;
- void mask_immediate(const surface& maskSurface, const vector_2d& maskOrigin, const surface& s, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good);
- void mask_immediate(const surface& maskSurface, const vector_2d& maskOrigin, const surface& s, ::std::error_code& ec, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good) noexcept;
- void mask_immediate(const surface& maskSurface, const vector_2d& maskOrigin, const surface& s, const matrix_2d& m, extend e = extend::none, filter f = filter::good);
- void mask_immediate(const surface& maskSurface, const vector_2d& maskOrigin, const surface& s, const matrix_2d& m, ::std::error_code& ec, extend e = extend::none, filter f = filter::good) noexcept;
+ void mask_immediate(const ::std::experimental::io2d::brush& maskBrush, const surface& s, const matrix_2d& m = matrix_2d::init_identity(), extend e = extend::none, filter f = filter::good);
+ void mask_immediate(const ::std::experimental::io2d::brush& maskBrush, const surface& s, ::std::error_code& ec, const matrix_2d& m = matrix_2d::init_identity(), extend e = extend::none, filter f = filter::good) noexcept;
+ void mask_immediate(surface& maskSurface, const matrix_2d& maskMatrix = matrix_2d::init_identity(), extend maskExtend = extend::none, filter maskFilter = filter::good);
+ void mask_immediate(surface& maskSurface, ::std::error_code& ec, const matrix_2d& maskMatrix = matrix_2d::init_identity(), extend maskExtend = extend::none, filter maskFilter = filter::good) noexcept;
+ void mask_immediate(surface& maskSurface, const rgba_color& c, const matrix_2d& maskMatrix = matrix_2d::init_identity(), extend maskExtend = extend::none, filter maskFilter = filter::good);
+ void mask_immediate(surface& maskSurface, const rgba_color& c, ::std::error_code& ec, const matrix_2d& maskMatrix = matrix_2d::init_identity(), extend maskExtend = extend::none, filter maskFilter = filter::good) noexcept;
+ void mask_immediate(surface& maskSurface, const ::std::experimental::io2d::brush& b, const matrix_2d& maskMatrix = matrix_2d::init_identity(), extend maskExtend = extend::none, filter maskFilter = filter::good);
+ void mask_immediate(surface& maskSurface, const ::std::experimental::io2d::brush& b, ::std::error_code& ec, const matrix_2d& maskMatrix = matrix_2d::init_identity(), extend maskExtend = extend::none, filter maskFilter = filter::good) noexcept;
+ void mask_immediate(surface& maskSurface, const surface& s, const matrix_2d& maskMatrix = matrix_2d::init_identity(), const matrix_2d& m = matrix_2d::init_identity(), extend maskExtend = extend::none, extend e = extend::none, filter maskFilter = filter::good, filter f = filter::good);
+ void mask_immediate(surface& maskSurface, const surface& s, ::std::error_code& ec, const matrix_2d& maskMatrix = matrix_2d::init_identity(), const matrix_2d& m = matrix_2d::init_identity(), extend maskExtend = extend::none, extend e = extend::none, filter maskFilter = filter::good, filter f = filter::good) noexcept;
// \ref{\iotwod.surface.modifiers.textrender}, text render modifiers:
vector_2d render_text(const ::std::string& utf8, const vector_2d& position);
@@ -2059,25 +2064,32 @@ namespace std {
vector_2d render_text(const ::std::string& utf8, const vector_2d& position, const rgba_color& c, ::std::error_code& ec) noexcept;
vector_2d render_text(const ::std::string& utf8, const vector_2d& position, const ::std::experimental::io2d::brush& b);
vector_2d render_text(const ::std::string& utf8, const vector_2d& position, const ::std::experimental::io2d::brush& b, ::std::error_code& ec) noexcept;
- vector_2d render_text(const ::std::string& utf8, const vector_2d& position, const surface& s, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good);
- vector_2d render_text(const ::std::string& utf8, const vector_2d& position, const surface& s, ::std::error_code& ec, const vector_2d& origin = vector_2d{ 0.0, 0.0 }, extend e = extend::none, filter f = filter::good) noexcept;
- vector_2d render_text(const ::std::string& utf8, const vector_2d& position, const surface& s, const matrix_2d& m, extend e = extend::none, filter f = filter::good);
- vector_2d render_text(const ::std::string& utf8, const vector_2d& position, const surface& s, const matrix_2d& m, ::std::error_code& ec, extend e = extend::none, filter f = filter::good) noexcept;
+ vector_2d render_text(const ::std::string& utf8, const vector_2d& position, const surface& s, const matrix_2d& m = matrix_2d::init_identity(), extend e = extend::none, filter f = filter::good);
+ vector_2d render_text(const ::std::string& utf8, const vector_2d& position, const surface& s, ::std::error_code& ec, const matrix_2d& m = matrix_2d::init_identity(), extend e = extend::none, filter f = filter::good) noexcept;
+ void render_glyph_run(const glyph_run& gr);
+ void render_glyph_run(const glyph_run& gr, ::std::error_code& ec) noexcept;
+ void render_glyph_run(const glyph_run& gr, const rgba_color& c);
+ void render_glyph_run(const glyph_run& gr, const rgba_color& c, ::std::error_code& ec) noexcept;
+ void render_glyph_run(const glyph_run& gr, const ::std::experimental::io2d::brush& b);
+ void render_glyph_run(const glyph_run& gr, const ::std::experimental::io2d::brush& b, ::std::error_code& ec) noexcept;
+ void render_glyph_run(const glyph_run& gr, const surface& s, const matrix_2d& m = matrix_2d::init_identity(), extend e = extend::none, filter f = filter::good);
+ void render_glyph_run(const glyph_run& gr, const surface& s, ::std::error_code& ec, const matrix_2d& m = matrix_2d::init_identity(), extend e = extend::none, filter f = filter::good) noexcept;
// \ref{\iotwod.surface.modifiers.transform}, transformation modifiers:
void matrix(const matrix_2d& matrix);
void matrix(const matrix_2d& matrix, ::std::error_code& ec) noexcept;
// \ref{\iotwod.surface.modifiers.font}, font modifiers:
- void font_face(const ::std::string& family, font_slant sl, font_weight w);
- void font_face(const ::std::string& family, font_slant sl, font_weight w, ::std::error_code& ec) noexcept;
- void font_face(const ::std::experimental::io2d::font_face& f);
- void font_face(const ::std::experimental::io2d::font_face& f, ::std::error_code& ec) noexcept;
- void font_size(double s);
- void font_size(double s, ::std::error_code& ec) noexcept;
- void font_matrix(const matrix_2d& m);
- void font_matrix(const matrix_2d& m, ::std::error_code& ec) noexcept;
- void font_options(const font_options& fo) noexcept;
+ void font_resource(const ::std::experimental::io2d::font_resource& f) noexcept;
+ void font_resource(const ::std::string& family, double size, font_slant sl = font_slant::normal, font_weight w = font_weight::normal);
+ void font_resource(const ::std::string& family, double size, ::std::error_code& ec, font_slant sl = font_slant::normal, font_weight w = font_weight::normal) noexcept;
+ //void font_face(const ::std::experimental::io2d::font_face& f);
+ //void font_face(const ::std::experimental::io2d::font_face& f, ::std::error_code& ec) noexcept;
+ //void font_size(double s);
+ //void font_size(double s, ::std::error_code& ec) noexcept;
+ //void font_matrix(const matrix_2d& m);
+ //void font_matrix(const matrix_2d& m, ::std::error_code& ec) noexcept;
+ //void font_options(const font_options& fo) noexcept;
// \ref{\iotwod.surface.observers.state}, state observers:
bool is_finished() const noexcept;
@@ -2120,10 +2132,12 @@ namespace std {
vector_2d surface_to_user_distance(const vector_2d& dpt, ::std::error_code& ec) const noexcept;
// \ref{\iotwod.surface.observers.font}, font observers:
- matrix_2d font_matrix() const noexcept;
- ::std::experimental::io2d::font_options font_options() const noexcept;
- ::std::experimental::io2d::font_face font_face() const;
- ::std::experimental::io2d::font_face font_face(::std::error_code& ec) const noexcept;
+ ::std::experimental::io2d::font_resource font_resource() const noexcept;
+
+ //matrix_2d font_matrix() const noexcept;
+ //::std::experimental::io2d::font_options font_options() const noexcept;
+ //::std::experimental::io2d::font_face font_face() const;
+ //::std::experimental::io2d::font_face font_face(::std::error_code& ec) const noexcept;
};
// I don't know why Clang/C2 is complaining about weak vtables here since the at least one virtual function is always anchored but for now silence the warnings. I've never seen this using Clang on OpenSUSE.
@@ -2230,7 +2244,17 @@ namespace std {
const int _Display_surface_ptr_window_data_byte_offset = 0;
LRESULT CALLBACK _RefImplWindowProc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam);
-#else
+#elif defined(USE_XCB)
+ struct _Xcb_display_surface_native_handle {
+ _Surface_native_handles sfc_nh;
+ _Surface_native_handles display_sfc_nh;
+ xcb_connection_t* connection;
+ ::std::mutex& connection_mutex;
+ int& connection_ref_count;
+ xcb_screen_t* screen;
+ xcb_window_t wndw;
+ };
+#elif defined(USE_XLIB)
struct _Xlib_display_surface_native_handle {
_Surface_native_handles sfc_nh;
Display* display;
@@ -2286,7 +2310,15 @@ namespace std {
HWND _Hwnd;
LRESULT _Window_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam);
-#else
+#elif defined(USE_XCB)
+ static ::std::mutex _Connection_mutex;
+ static ::std::unique_ptr _Connection;
+ static int _Connection_ref_count;
+ xcb_screen_t* _Screen;
+ xcb_window_t _Wndw;
+ bool _Can_draw = false;
+ const uint16_t _Window_border_width = 4;
+#elif defined(USE_XLIB)
static ::std::mutex _Display_mutex;
static ::std::unique_ptr> _Display;
static int _Display_ref_count;
@@ -2295,6 +2327,12 @@ namespace std {
static Bool _X11_if_event_pred(Display* display, XEvent* event, XPointer arg);
#endif
+ ::std::experimental::io2d::refresh_rate _Refresh_rate;
+ double _Desired_frame_rate;
+ ::std::atomic _Redraw_requested;
+ double _Elapsed_draw_time;
+ const double _Minimum_frame_rate = 0.01;
+ const double _Maximum_frame_rate = 120.0;
::std::unique_ptr> _Native_surface;
::std::unique_ptr> _Native_context;
@@ -2312,7 +2350,9 @@ namespace std {
public:
#ifdef _WIN32_WINNT
typedef _Win32_display_surface_native_handle native_handle_type;
-#else
+#elif defined(USE_XCB)
+ typedef _Xcb_display_surface_native_handle native_handle_type;
+#elif defined(USE_XLIB)
typedef _Xlib_display_surface_native_handle native_handle_type;
#endif
native_handle_type native_handle() const;
@@ -2324,16 +2364,16 @@ namespace std {
display_surface& operator=(display_surface&& other) noexcept;
display_surface(int preferredWidth, int preferredHeight, ::std::experimental::io2d::format preferredFormat,
- ::std::experimental::io2d::scaling scl = ::std::experimental::io2d::scaling::letterbox);
+ ::std::experimental::io2d::scaling scl = ::std::experimental::io2d::scaling::letterbox, ::std::experimental::io2d::refresh_rate rr = ::std::experimental::io2d::refresh_rate::as_fast_as_possible, double fps = 30.0);
display_surface(int preferredWidth, int preferredHeight, ::std::experimental::io2d::format preferredFormat, ::std::error_code& ec,
- ::std::experimental::io2d::scaling scl = ::std::experimental::io2d::scaling::letterbox) noexcept;
+ ::std::experimental::io2d::scaling scl = ::std::experimental::io2d::scaling::letterbox, ::std::experimental::io2d::refresh_rate rr = ::std::experimental::io2d::refresh_rate::as_fast_as_possible, double fps = 30.0) noexcept;
display_surface(int preferredWidth, int preferredHeight, ::std::experimental::io2d::format preferredFormat,
int preferredDisplayWidth, int preferredDisplayHeight,
- ::std::experimental::io2d::scaling scl = ::std::experimental::io2d::scaling::letterbox);
+ ::std::experimental::io2d::scaling scl = ::std::experimental::io2d::scaling::letterbox, ::std::experimental::io2d::refresh_rate rr = ::std::experimental::io2d::refresh_rate::as_fast_as_possible, double fps = 30.0);
display_surface(int preferredWidth, int preferredHeight, ::std::experimental::io2d::format preferredFormat,
int preferredDisplayWidth, int preferredDisplayHeight, ::std::error_code& ec,
- ::std::experimental::io2d::scaling scl = ::std::experimental::io2d::scaling::letterbox) noexcept;
+ ::std::experimental::io2d::scaling scl = ::std::experimental::io2d::scaling::letterbox, ::std::experimental::io2d::refresh_rate rr = ::std::experimental::io2d::refresh_rate::as_fast_as_possible, double fps = 30.0) noexcept;
virtual ~display_surface();
@@ -2367,6 +2407,10 @@ namespace std {
void letterbox_brush(const ::std::experimental::io2d::brush& b);
void letterbox_brush(const ::std::experimental::io2d::brush& b, ::std::error_code& ec) noexcept;
void auto_clear(bool val) noexcept;
+ void refresh_rate(::std::experimental::io2d::refresh_rate rr) noexcept;
+ bool desired_frame_rate(double fps) noexcept;
+ void redraw_required() noexcept;
+
int show();
int show(::std::error_code& ec); // Not noexcept because if the user-provided functions throw they will propagate, but otherwise is non-throwing.
void exit_show(int ms) noexcept;
@@ -2383,6 +2427,9 @@ namespace std {
::std::function<::std::experimental::io2d::rectangle(const display_surface&, bool&)> user_scaling_callback(::std::error_code& ec) const noexcept;
::std::experimental::io2d::brush letterbox_brush() const noexcept;
bool auto_clear() const noexcept;
+ ::std::experimental::io2d::refresh_rate refresh_rate() const noexcept;
+ double desired_frame_rate() const noexcept;
+ double elapsed_draw_time() const noexcept;
};
// I don't know why Clang/C2 is complaining about weak vtables here since the at least one virtual function is always anchored but for now silence the warnings. I've never seen this using Clang on OpenSUSE.
@@ -2414,25 +2461,25 @@ namespace std {
bool has_surface() const noexcept;
const image_surface& surface() const;
};
-#if _Variable_templates_condition_support_test
+#if _Variable_templates_conditional_support_test
template
- constexpr T pi = T(3.14159265358979323846264338327950288419716939937510L);
+ constexpr T pi = T(3.14159265358979323846264338327950288L);
template
- constexpr T two_pi = T(6.28318530717958647692528676655900576839433879875020L);
+ constexpr T two_pi = T(6.28318530717958647692528676655900576L);
template
- constexpr T half_pi = T(1.57079632679489661923132169163975144209858469968755L);
+ constexpr T half_pi = T(1.57079632679489661923132169163975144L);
template
- constexpr T three_pi_over_two = T(4.71238898038468985769396507491925432629575409906265L);
+ constexpr T three_pi_over_two = T(4.71238898038468985769396507491925432L);
#else
template
#if _Constexpr_conditional_support_test
constexpr
#endif
T pi() noexcept {
- return static_cast(3.14159265358979323846264338327950288419716939937510L);
+ return static_cast(3.14159265358979323846264338327950288L);
}
template
@@ -2440,7 +2487,7 @@ namespace std {
constexpr
#endif
T two_pi() noexcept {
- return static_cast(6.28318530717958647692528676655900576839433879875020L);
+ return static_cast(6.28318530717958647692528676655900576L);
}
template
@@ -2448,7 +2495,7 @@ namespace std {
constexpr
#endif
T half_pi() noexcept {
- return static_cast(1.57079632679489661923132169163975144209858469968755L);
+ return static_cast(1.57079632679489661923132169163975144L);
}
template
@@ -2456,15 +2503,15 @@ namespace std {
constexpr
#endif
T three_pi_over_two() noexcept {
- return static_cast(4.71238898038468985769396507491925432629575409906265L);
+ return static_cast(4.71238898038468985769396507491925432L);
}
#endif
int format_stride_for_width(format format, int width) noexcept;
- display_surface make_display_surface(int preferredWidth, int preferredHeight, format preferredFormat, scaling scl = scaling::letterbox);
- display_surface make_display_surface(int preferredWidth, int preferredHeight, format preferredFormat, ::std::error_code& ec, scaling scl = scaling::letterbox) noexcept;
- display_surface make_display_surface(int preferredWidth, int preferredHeight, format preferredFormat, int preferredDisplayWidth, int preferredDisplayHeight, scaling scl = scaling::letterbox);
+ display_surface make_display_surface(int preferredWidth, int preferredHeight, format preferredFormat, scaling scl = scaling::letterbox, refresh_rate rr = refresh_rate::as_fast_as_possible, double desiredFramerate = 30.0);
+ display_surface make_display_surface(int preferredWidth, int preferredHeight, format preferredFormat, ::std::error_code& ec, scaling scl = scaling::letterbox, refresh_rate rr = refresh_rate::as_fast_as_possible, double desiredFramerate = 30.0) noexcept;
+ display_surface make_display_surface(int preferredWidth, int preferredHeight, format preferredFormat, int preferredDisplayWidth, int preferredDisplayHeight, scaling scl = scaling::letterbox, refresh_rate rr = refresh_rate::as_fast_as_possible, double desiredFramerate = 30.0);
display_surface make_display_surface(int preferredWidth, int preferredHeight, format preferredFormat,
- int preferredDisplayWidth, int preferredDisplayHeight, ::std::error_code& ec, scaling scl = scaling::letterbox) noexcept;
+ int preferredDisplayWidth, int preferredDisplayHeight, ::std::error_code& ec, scaling scl = scaling::letterbox, refresh_rate rr = refresh_rate::as_fast_as_possible, double desiredFramerate = 30.0) noexcept;
image_surface make_image_surface(format format, int width, int height);
image_surface make_image_surface(format format, int width, int height, ::std::error_code& ec) noexcept;
#if _Inline_namespace_conditional_support_test
diff --git a/N3888_RefImpl/src/throw_helpers.h b/io2d/include/throw_helpers.h
similarity index 100%
rename from N3888_RefImpl/src/throw_helpers.h
rename to io2d/include/throw_helpers.h
diff --git a/N3888_RefImpl/src/xcairoenumhelpers.h b/io2d/include/xcairoenumhelpers.h
similarity index 100%
rename from N3888_RefImpl/src/xcairoenumhelpers.h
rename to io2d/include/xcairoenumhelpers.h
diff --git a/N3888_RefImpl/src/xio2d.h b/io2d/include/xio2d.h
similarity index 96%
rename from N3888_RefImpl/src/xio2d.h
rename to io2d/include/xio2d.h
index 176f66e..8b6143a 100644
--- a/N3888_RefImpl/src/xio2d.h
+++ b/io2d/include/xio2d.h
@@ -32,5 +32,5 @@
// Designed to be used to conditionally define compiler support for constexpr using a #if
#define _Constexpr_conditional_support_test ((__cplusplus >= 201103L) || (_MSC_FULL_VER >= 190022203))
-#define _Variable_templates_conditional_support_test ((__cplusplus >= 201402L) || _MSC_FULL_VER > 190023506)
+#define _Variable_templates_conditional_support_test ((__cplusplus >= 201402L) || _MSC_FULL_VER >= 190023918)
#endif
diff --git a/N3888_RefImpl/src/xio2dhelpers.h b/io2d/include/xio2dhelpers.h
similarity index 86%
rename from N3888_RefImpl/src/xio2dhelpers.h
rename to io2d/include/xio2dhelpers.h
index d062102..54e7e1a 100644
--- a/N3888_RefImpl/src/xio2dhelpers.h
+++ b/io2d/include/xio2dhelpers.h
@@ -374,6 +374,93 @@ namespace std {
rgba_color operator*(const rgba_color& lhs, double rhs);
rgba_color operator*(double lhs, const rgba_color& rhs);
rgba_color& operator*=(rgba_color& lhs, double rhs);
+
+ inline ::std::vector _Cairo_path_data_t_array_to_path_data_item_vector(const cairo_path_t& cpt) {
+ ::std::vector vec;
+ _Throw_if_failed_cairo_status_t(cpt.status);
+ for (auto i = 0; i < cpt.num_data; i += cpt.data[i].header.length) {
+ auto type = cpt.data[i].header.type;
+ switch (type)
+ {
+ case CAIRO_PATH_CLOSE_PATH:
+ {
+ vec.emplace_back(path_data_item::close_path());
+ } break;
+ case CAIRO_PATH_CURVE_TO:
+ {
+ vec.emplace_back(path_data_item::curve_to({ cpt.data[i + 1].point.x, cpt.data[i + 1].point.y }, { cpt.data[i + 2].point.x, cpt.data[i + 2].point.y }, { cpt.data[i + 3].point.x, cpt.data[i + 3].point.y }));
+ } break;
+ case CAIRO_PATH_LINE_TO:
+ {
+ vec.emplace_back(path_data_item::line_to({ cpt.data[i + 1].point.x, cpt.data[i + 1].point.y }));
+ } break;
+ case CAIRO_PATH_MOVE_TO:
+ {
+ vec.emplace_back(path_data_item::move_to({ cpt.data[i + 1].point.x, cpt.data[i + 1].point.y }));
+ } break;
+ default:
+ {
+ _Throw_if_failed_cairo_status_t(CAIRO_STATUS_INVALID_PATH_DATA);
+ } break;
+ }
+ }
+
+ return vec;
+ }
+
+ inline ::std::vector _Cairo_path_data_t_array_to_path_data_item_vector(const cairo_path_t& cpt, ::std::error_code& ec) noexcept {
+ ::std::vector vec;
+ ec = _Cairo_status_t_to_std_error_code(cpt.status);
+ if (static_cast(ec)) {
+ return vec;
+ }
+ ::std::vector::size_type reqSize{};
+ for (auto i = 0; i < cpt.num_data; i += cpt.data[i].header.length) {
+ reqSize++;
+ }
+ try {
+ vec.reserve(reqSize);
+ }
+ catch (const ::std::length_error&) {
+ ec = ::std::make_error_code(::std::errc::not_enough_memory);
+ return vec;
+ }
+ catch (const ::std::bad_alloc&) {
+ ec = ::std::make_error_code(::std::errc::not_enough_memory);
+ return vec;
+ }
+
+ for (auto i = 0; i < cpt.num_data; i += cpt.data[i].header.length) {
+ auto type = cpt.data[i].header.type;
+ switch (type)
+ {
+ case CAIRO_PATH_CLOSE_PATH:
+ {
+ vec.emplace_back(path_data_item::close_path());
+ } break;
+ case CAIRO_PATH_CURVE_TO:
+ {
+ vec.emplace_back(path_data_item::curve_to({ cpt.data[i + 1].point.x, cpt.data[i + 1].point.y }, { cpt.data[i + 2].point.x, cpt.data[i + 2].point.y }, { cpt.data[i + 3].point.x, cpt.data[i + 3].point.y }));
+ } break;
+ case CAIRO_PATH_LINE_TO:
+ {
+ vec.emplace_back(path_data_item::line_to({ cpt.data[i + 1].point.x, cpt.data[i + 1].point.y }));
+ } break;
+ case CAIRO_PATH_MOVE_TO:
+ {
+ vec.emplace_back(path_data_item::move_to({ cpt.data[i + 1].point.x, cpt.data[i + 1].point.y }));
+ } break;
+ default:
+ {
+ ec = _Cairo_status_t_to_std_error_code(CAIRO_STATUS_INVALID_PATH_DATA);
+ return vec;
+ } break;
+ }
+ }
+
+ ec.clear();
+ return vec;
+ }
#if _Inline_namespace_conditional_support_test
}
#endif
diff --git a/io2d/src/3rd-party/CMakeLists.txt b/io2d/src/3rd-party/CMakeLists.txt
new file mode 100644
index 0000000..a15c97f
--- /dev/null
+++ b/io2d/src/3rd-party/CMakeLists.txt
@@ -0,0 +1,9 @@
+cmake_minimum_required(VERSION 2.8.12)
+
+add_subdirectory(pixman)
+set(PIXMAN_INCLUDE_DIR
+ ${CMAKE_CURRENT_SOURCE_DIR}/pixman/pixman
+ ${CMAKE_CURRENT_BINARY_DIR}/pixman)
+set(PIXMAN_LIBRARY pixman)
+
+add_subdirectory(cairo)
diff --git a/cairo/.gitignore b/io2d/src/3rd-party/cairo/.gitignore
similarity index 100%
rename from cairo/.gitignore
rename to io2d/src/3rd-party/cairo/.gitignore
diff --git a/cairo/AUTHORS b/io2d/src/3rd-party/cairo/AUTHORS
similarity index 100%
rename from cairo/AUTHORS
rename to io2d/src/3rd-party/cairo/AUTHORS
diff --git a/cairo/BIBLIOGRAPHY b/io2d/src/3rd-party/cairo/BIBLIOGRAPHY
similarity index 100%
rename from cairo/BIBLIOGRAPHY
rename to io2d/src/3rd-party/cairo/BIBLIOGRAPHY
diff --git a/cairo/BUGS b/io2d/src/3rd-party/cairo/BUGS
similarity index 100%
rename from cairo/BUGS
rename to io2d/src/3rd-party/cairo/BUGS
diff --git a/io2d/src/3rd-party/cairo/CMakeLists.txt b/io2d/src/3rd-party/cairo/CMakeLists.txt
new file mode 100644
index 0000000..55046f6
--- /dev/null
+++ b/io2d/src/3rd-party/cairo/CMakeLists.txt
@@ -0,0 +1,131 @@
+cmake_minimum_required(VERSION 2.8.12)
+
+project(cairo C)
+
+include(CheckIncludeFiles)
+include(CheckTypeSize)
+
+check_include_files(stdint.h HAVE_STDINT_H)
+check_include_files(inttypes.h HAVE_INTTYPES_H)
+check_include_files(sys/int_types.h HAVE_SYS_INT_TYPES_H)
+check_include_files(pthread.h CAIRO_HAS_PTHREAD)
+check_include_files(xcb/xcb.h CAIRO_HAS_XCB_SURFACE)
+
+set(CAIRO_SRC
+ src/cairo-analysis-surface.c src/cairo-arc.c
+ src/cairo-array.c src/cairo-atomic.c
+ src/cairo-base64-stream.c src/cairo-base85-stream.c
+ src/cairo-bentley-ottmann.c src/cairo-bentley-ottmann-rectangular.c
+ src/cairo-bentley-ottmann-rectilinear.c src/cairo-botor-scan-converter.c
+ src/cairo-boxes.c src/cairo-boxes-intersect.c
+ src/cairo.c src/cairo-cache.c
+ src/cairo-clip.c src/cairo-clip-boxes.c
+ src/cairo-clip-polygon.c src/cairo-clip-region.c
+ src/cairo-clip-surface.c src/cairo-color.c
+ src/cairo-composite-rectangles.c src/cairo-compositor.c
+ src/cairo-contour.c src/cairo-damage.c
+ src/cairo-debug.c src/cairo-default-context.c
+ src/cairo-device.c src/cairo-error.c
+ src/cairo-fallback-compositor.c src/cairo-fixed.c
+ src/cairo-font-face.c src/cairo-font-face-twin.c
+ src/cairo-font-face-twin-data.c src/cairo-font-options.c
+ src/cairo-freelist.c src/cairo-freed-pool.c
+ src/cairo-gstate.c src/cairo-hash.c
+ src/cairo-hull.c src/cairo-image-compositor.c
+ src/cairo-image-info.c src/cairo-image-source.c
+ src/cairo-image-surface.c src/cairo-lzw.c
+ src/cairo-matrix.c src/cairo-mask-compositor.c
+ src/cairo-mesh-pattern-rasterizer.c src/cairo-mempool.c
+ src/cairo-misc.c src/cairo-mono-scan-converter.c
+ src/cairo-mutex.c src/cairo-no-compositor.c
+ src/cairo-observer.c src/cairo-output-stream.c
+ src/cairo-paginated-surface.c src/cairo-path-bounds.c
+ src/cairo-path.c src/cairo-path-fill.c
+ src/cairo-path-fixed.c src/cairo-path-in-fill.c
+ src/cairo-path-stroke.c src/cairo-path-stroke-boxes.c
+ src/cairo-path-stroke-polygon.c src/cairo-path-stroke-traps.c
+ src/cairo-path-stroke-tristrip.c src/cairo-pattern.c
+ src/cairo-pen.c src/cairo-polygon.c
+ src/cairo-polygon-intersect.c src/cairo-polygon-reduce.c
+ src/cairo-raster-source-pattern.c src/cairo-recording-surface.c
+ src/cairo-rectangle.c src/cairo-rectangular-scan-converter.c
+ src/cairo-region.c src/cairo-rtree.c
+ src/cairo-scaled-font.c src/cairo-shape-mask-compositor.c
+ src/cairo-slope.c src/cairo-spans.c
+ src/cairo-spans-compositor.c src/cairo-spline.c
+ src/cairo-stroke-dash.c src/cairo-stroke-style.c
+ src/cairo-surface.c src/cairo-surface-clipper.c
+ src/cairo-surface-fallback.c src/cairo-surface-observer.c
+ src/cairo-surface-offset.c src/cairo-surface-snapshot.c
+ src/cairo-surface-subsurface.c src/cairo-surface-wrapper.c
+ src/cairo-time.c src/cairo-tor-scan-converter.c
+ src/cairo-tor22-scan-converter.c src/cairo-clip-tor-scan-converter.c
+ src/cairo-toy-font-face.c src/cairo-traps.c
+ src/cairo-tristrip.c src/cairo-traps-compositor.c
+ src/cairo-unicode.c src/cairo-user-font.c
+ src/cairo-version.c src/cairo-wideint.c
+
+ src/cairo-script-surface.c
+
+ src/cairo-cff-subset.c src/cairo-scaled-font-subsets.c
+ src/cairo-truetype-subset.c src/cairo-type1-fallback.c
+ src/cairo-type1-glyph-names.c src/cairo-type1-subset.c
+)
+
+if (WIN32)
+ set(CAIRO_HAS_WIN32_SURFACE 1)
+ set(CAIRO_HAS_WIN32_FONT 1)
+
+ set(CAIRO_SRC_WIN32
+ src/win32/cairo-win32-debug.c src/win32/cairo-win32-device.c
+ src/win32/cairo-win32-gdi-compositor.c src/win32/cairo-win32-system.c
+ src/win32/cairo-win32-surface.c src/win32/cairo-win32-display-surface.c
+ src/win32/cairo-win32-printing-surface.c src/win32/cairo-win32-font.c
+ )
+ list(APPEND CAIRO_SRC ${CAIRO_SRC_WIN32})
+ set(CAIRO_EXTRA_LIBRARIES msimg32)
+endif()
+
+if (CAIRO_HAS_XCB_SURFACE)
+ set(HAVE_INTEL_ATOMIC_PRIMITIVES 1)
+ set(CAIRO_SRC_XCB
+ src/cairo-xcb-connection.c src/cairo-xcb-connection-core.c
+ src/cairo-xcb-connection-render.c src/cairo-xcb-connection-shm.c
+ src/cairo-xcb-screen.c src/cairo-xcb-shm.c
+ src/cairo-xcb-surface.c src/cairo-xcb-surface-core.c
+ src/cairo-xcb-surface-render.c
+ )
+ list(APPEND CAIRO_SRC ${CAIRO_SRC_XCB})
+ set(CAIRO_EXTRA_LIBRARIES -lxcb -lxcb-render -lpthread)
+endif()
+
+add_library(cairo ${CAIRO_SRC})
+target_link_libraries(cairo
+ ${CAIRO_EXTRA_LIBRARIES}
+ ${PIXMAN_LIBRARY}
+)
+
+target_compile_definitions(cairo PRIVATE HAVE_CONFIG_H)
+target_compile_definitions(cairo INTERFACE CAIRO_HAS_XCB_SURFACE)
+
+target_include_directories(cairo PRIVATE
+ ${CMAKE_CURRENT_SOURCE_DIR}/src
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${PIXMAN_INCLUDE_DIR}
+)
+
+target_include_directories(cairo INTERFACE
+ ${CMAKE_CURRENT_BINARY_DIR}
+)
+
+check_type_size("uint64_t" SIZEOF_UINT64_T)
+if(SIZEOF_UINT64_T)
+ set(HAVE_UINT64_T 1)
+endif()
+
+configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.cmake
+ ${CMAKE_CURRENT_BINARY_DIR}/config.h)
+
+configure_file(${CMAKE_CURRENT_SOURCE_DIR}/cairo-features.h.cmake
+ ${CMAKE_CURRENT_BINARY_DIR}/cairo-features.h)
diff --git a/cairo/CODING_STYLE b/io2d/src/3rd-party/cairo/CODING_STYLE
similarity index 100%
rename from cairo/CODING_STYLE
rename to io2d/src/3rd-party/cairo/CODING_STYLE
diff --git a/cairo/COPYING b/io2d/src/3rd-party/cairo/COPYING
similarity index 100%
rename from cairo/COPYING
rename to io2d/src/3rd-party/cairo/COPYING
diff --git a/cairo/COPYING-LGPL-2.1 b/io2d/src/3rd-party/cairo/COPYING-LGPL-2.1
similarity index 100%
rename from cairo/COPYING-LGPL-2.1
rename to io2d/src/3rd-party/cairo/COPYING-LGPL-2.1
diff --git a/cairo/COPYING-MPL-1.1 b/io2d/src/3rd-party/cairo/COPYING-MPL-1.1
similarity index 100%
rename from cairo/COPYING-MPL-1.1
rename to io2d/src/3rd-party/cairo/COPYING-MPL-1.1
diff --git a/cairo/HACKING b/io2d/src/3rd-party/cairo/HACKING
similarity index 100%
rename from cairo/HACKING
rename to io2d/src/3rd-party/cairo/HACKING
diff --git a/cairo/INSTALL b/io2d/src/3rd-party/cairo/INSTALL
similarity index 100%
rename from cairo/INSTALL
rename to io2d/src/3rd-party/cairo/INSTALL
diff --git a/cairo/KNOWN_ISSUES b/io2d/src/3rd-party/cairo/KNOWN_ISSUES
similarity index 100%
rename from cairo/KNOWN_ISSUES
rename to io2d/src/3rd-party/cairo/KNOWN_ISSUES
diff --git a/cairo/Makefile.am b/io2d/src/3rd-party/cairo/Makefile.am
similarity index 100%
rename from cairo/Makefile.am
rename to io2d/src/3rd-party/cairo/Makefile.am
diff --git a/cairo/Makefile.win32 b/io2d/src/3rd-party/cairo/Makefile.win32
similarity index 100%
rename from cairo/Makefile.win32
rename to io2d/src/3rd-party/cairo/Makefile.win32
diff --git a/cairo/NEWS b/io2d/src/3rd-party/cairo/NEWS
similarity index 100%
rename from cairo/NEWS
rename to io2d/src/3rd-party/cairo/NEWS
diff --git a/cairo/PORTING_GUIDE b/io2d/src/3rd-party/cairo/PORTING_GUIDE
similarity index 100%
rename from cairo/PORTING_GUIDE
rename to io2d/src/3rd-party/cairo/PORTING_GUIDE
diff --git a/cairo/README b/io2d/src/3rd-party/cairo/README
similarity index 100%
rename from cairo/README
rename to io2d/src/3rd-party/cairo/README
diff --git a/cairo/README.win32 b/io2d/src/3rd-party/cairo/README.win32
similarity index 100%
rename from cairo/README.win32
rename to io2d/src/3rd-party/cairo/README.win32
diff --git a/cairo/RELEASING b/io2d/src/3rd-party/cairo/RELEASING
similarity index 100%
rename from cairo/RELEASING
rename to io2d/src/3rd-party/cairo/RELEASING
diff --git a/cairo/acinclude.m4 b/io2d/src/3rd-party/cairo/acinclude.m4
similarity index 100%
rename from cairo/acinclude.m4
rename to io2d/src/3rd-party/cairo/acinclude.m4
diff --git a/cairo/autogen.sh b/io2d/src/3rd-party/cairo/autogen.sh
similarity index 100%
rename from cairo/autogen.sh
rename to io2d/src/3rd-party/cairo/autogen.sh
diff --git a/cairo/boilerplate/.gitignore b/io2d/src/3rd-party/cairo/boilerplate/.gitignore
similarity index 100%
rename from cairo/boilerplate/.gitignore
rename to io2d/src/3rd-party/cairo/boilerplate/.gitignore
diff --git a/cairo/boilerplate/Makefile.am b/io2d/src/3rd-party/cairo/boilerplate/Makefile.am
similarity index 100%
rename from cairo/boilerplate/Makefile.am
rename to io2d/src/3rd-party/cairo/boilerplate/Makefile.am
diff --git a/cairo/boilerplate/Makefile.sources b/io2d/src/3rd-party/cairo/boilerplate/Makefile.sources
similarity index 100%
rename from cairo/boilerplate/Makefile.sources
rename to io2d/src/3rd-party/cairo/boilerplate/Makefile.sources
diff --git a/cairo/boilerplate/Makefile.win32 b/io2d/src/3rd-party/cairo/boilerplate/Makefile.win32
similarity index 100%
rename from cairo/boilerplate/Makefile.win32
rename to io2d/src/3rd-party/cairo/boilerplate/Makefile.win32
diff --git a/cairo/boilerplate/Makefile.win32.features b/io2d/src/3rd-party/cairo/boilerplate/Makefile.win32.features
similarity index 100%
rename from cairo/boilerplate/Makefile.win32.features
rename to io2d/src/3rd-party/cairo/boilerplate/Makefile.win32.features
diff --git a/cairo/boilerplate/README b/io2d/src/3rd-party/cairo/boilerplate/README
similarity index 100%
rename from cairo/boilerplate/README
rename to io2d/src/3rd-party/cairo/boilerplate/README
diff --git a/cairo/boilerplate/cairo-boilerplate-beos.cpp b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-beos.cpp
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-beos.cpp
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-beos.cpp
diff --git a/cairo/boilerplate/cairo-boilerplate-cogl.c b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-cogl.c
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-cogl.c
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-cogl.c
diff --git a/cairo/boilerplate/cairo-boilerplate-directfb.c b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-directfb.c
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-directfb.c
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-directfb.c
diff --git a/cairo/boilerplate/cairo-boilerplate-drm.c b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-drm.c
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-drm.c
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-drm.c
diff --git a/cairo/boilerplate/cairo-boilerplate-egl.c b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-egl.c
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-egl.c
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-egl.c
diff --git a/cairo/boilerplate/cairo-boilerplate-getopt.c b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-getopt.c
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-getopt.c
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-getopt.c
diff --git a/cairo/boilerplate/cairo-boilerplate-getopt.h b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-getopt.h
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-getopt.h
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-getopt.h
diff --git a/cairo/boilerplate/cairo-boilerplate-glx.c b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-glx.c
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-glx.c
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-glx.c
diff --git a/cairo/boilerplate/cairo-boilerplate-pdf.c b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-pdf.c
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-pdf.c
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-pdf.c
diff --git a/cairo/boilerplate/cairo-boilerplate-private.h b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-private.h
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-private.h
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-private.h
diff --git a/cairo/boilerplate/cairo-boilerplate-ps.c b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-ps.c
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-ps.c
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-ps.c
diff --git a/cairo/boilerplate/cairo-boilerplate-qt.cpp b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-qt.cpp
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-qt.cpp
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-qt.cpp
diff --git a/cairo/boilerplate/cairo-boilerplate-quartz.c b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-quartz.c
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-quartz.c
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-quartz.c
diff --git a/cairo/boilerplate/cairo-boilerplate-scaled-font.h b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-scaled-font.h
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-scaled-font.h
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-scaled-font.h
diff --git a/cairo/boilerplate/cairo-boilerplate-script.c b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-script.c
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-script.c
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-script.c
diff --git a/cairo/boilerplate/cairo-boilerplate-skia.c b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-skia.c
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-skia.c
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-skia.c
diff --git a/cairo/boilerplate/cairo-boilerplate-svg.c b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-svg.c
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-svg.c
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-svg.c
diff --git a/cairo/boilerplate/cairo-boilerplate-system.c b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-system.c
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-system.c
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-system.c
diff --git a/cairo/boilerplate/cairo-boilerplate-system.h b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-system.h
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-system.h
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-system.h
diff --git a/cairo/boilerplate/cairo-boilerplate-test-surfaces.c b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-test-surfaces.c
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-test-surfaces.c
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-test-surfaces.c
diff --git a/cairo/boilerplate/cairo-boilerplate-vg.c b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-vg.c
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-vg.c
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-vg.c
diff --git a/cairo/boilerplate/cairo-boilerplate-wgl.c b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-wgl.c
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-wgl.c
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-wgl.c
diff --git a/cairo/boilerplate/cairo-boilerplate-win32-printing.c b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-win32-printing.c
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-win32-printing.c
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-win32-printing.c
diff --git a/cairo/boilerplate/cairo-boilerplate-win32.c b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-win32.c
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-win32.c
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-win32.c
diff --git a/cairo/boilerplate/cairo-boilerplate-xcb.c b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-xcb.c
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-xcb.c
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-xcb.c
diff --git a/cairo/boilerplate/cairo-boilerplate-xlib.c b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-xlib.c
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-xlib.c
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-xlib.c
diff --git a/cairo/boilerplate/cairo-boilerplate-xlib.h b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-xlib.h
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate-xlib.h
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate-xlib.h
diff --git a/cairo/boilerplate/cairo-boilerplate.c b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate.c
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate.c
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate.c
diff --git a/cairo/boilerplate/cairo-boilerplate.h b/io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate.h
similarity index 100%
rename from cairo/boilerplate/cairo-boilerplate.h
rename to io2d/src/3rd-party/cairo/boilerplate/cairo-boilerplate.h
diff --git a/cairo/boilerplate/check-link.c b/io2d/src/3rd-party/cairo/boilerplate/check-link.c
similarity index 100%
rename from cairo/boilerplate/check-link.c
rename to io2d/src/3rd-party/cairo/boilerplate/check-link.c
diff --git a/cairo/boilerplate/make-cairo-boilerplate-constructors.sh b/io2d/src/3rd-party/cairo/boilerplate/make-cairo-boilerplate-constructors.sh
similarity index 100%
rename from cairo/boilerplate/make-cairo-boilerplate-constructors.sh
rename to io2d/src/3rd-party/cairo/boilerplate/make-cairo-boilerplate-constructors.sh
diff --git a/cairo/build/.gitignore b/io2d/src/3rd-party/cairo/build/.gitignore
similarity index 100%
rename from cairo/build/.gitignore
rename to io2d/src/3rd-party/cairo/build/.gitignore
diff --git a/cairo/build/Makefile.am.analysis b/io2d/src/3rd-party/cairo/build/Makefile.am.analysis
similarity index 100%
rename from cairo/build/Makefile.am.analysis
rename to io2d/src/3rd-party/cairo/build/Makefile.am.analysis
diff --git a/cairo/build/Makefile.am.changelog b/io2d/src/3rd-party/cairo/build/Makefile.am.changelog
similarity index 100%
rename from cairo/build/Makefile.am.changelog
rename to io2d/src/3rd-party/cairo/build/Makefile.am.changelog
diff --git a/cairo/build/Makefile.am.common b/io2d/src/3rd-party/cairo/build/Makefile.am.common
similarity index 100%
rename from cairo/build/Makefile.am.common
rename to io2d/src/3rd-party/cairo/build/Makefile.am.common
diff --git a/cairo/build/Makefile.am.gtk-doc b/io2d/src/3rd-party/cairo/build/Makefile.am.gtk-doc
similarity index 100%
rename from cairo/build/Makefile.am.gtk-doc
rename to io2d/src/3rd-party/cairo/build/Makefile.am.gtk-doc
diff --git a/cairo/build/Makefile.am.releasing b/io2d/src/3rd-party/cairo/build/Makefile.am.releasing
similarity index 100%
rename from cairo/build/Makefile.am.releasing
rename to io2d/src/3rd-party/cairo/build/Makefile.am.releasing
diff --git a/cairo/build/Makefile.win32.common b/io2d/src/3rd-party/cairo/build/Makefile.win32.common
similarity index 100%
rename from cairo/build/Makefile.win32.common
rename to io2d/src/3rd-party/cairo/build/Makefile.win32.common
diff --git a/cairo/build/Makefile.win32.features b/io2d/src/3rd-party/cairo/build/Makefile.win32.features
similarity index 100%
rename from cairo/build/Makefile.win32.features
rename to io2d/src/3rd-party/cairo/build/Makefile.win32.features
diff --git a/cairo/build/Makefile.win32.features-h b/io2d/src/3rd-party/cairo/build/Makefile.win32.features-h
similarity index 100%
rename from cairo/build/Makefile.win32.features-h
rename to io2d/src/3rd-party/cairo/build/Makefile.win32.features-h
diff --git a/cairo/build/Makefile.win32.inform b/io2d/src/3rd-party/cairo/build/Makefile.win32.inform
similarity index 100%
rename from cairo/build/Makefile.win32.inform
rename to io2d/src/3rd-party/cairo/build/Makefile.win32.inform
diff --git a/cairo/build/aclocal.cairo.m4 b/io2d/src/3rd-party/cairo/build/aclocal.cairo.m4
similarity index 100%
rename from cairo/build/aclocal.cairo.m4
rename to io2d/src/3rd-party/cairo/build/aclocal.cairo.m4
diff --git a/cairo/build/aclocal.compare.m4 b/io2d/src/3rd-party/cairo/build/aclocal.compare.m4
similarity index 100%
rename from cairo/build/aclocal.compare.m4
rename to io2d/src/3rd-party/cairo/build/aclocal.compare.m4
diff --git a/cairo/build/aclocal.enable.m4 b/io2d/src/3rd-party/cairo/build/aclocal.enable.m4
similarity index 100%
rename from cairo/build/aclocal.enable.m4
rename to io2d/src/3rd-party/cairo/build/aclocal.enable.m4
diff --git a/cairo/build/aclocal.float.m4 b/io2d/src/3rd-party/cairo/build/aclocal.float.m4
similarity index 100%
rename from cairo/build/aclocal.float.m4
rename to io2d/src/3rd-party/cairo/build/aclocal.float.m4
diff --git a/cairo/build/aclocal.gtk-doc.m4 b/io2d/src/3rd-party/cairo/build/aclocal.gtk-doc.m4
similarity index 100%
rename from cairo/build/aclocal.gtk-doc.m4
rename to io2d/src/3rd-party/cairo/build/aclocal.gtk-doc.m4
diff --git a/cairo/build/aclocal.makefile.m4 b/io2d/src/3rd-party/cairo/build/aclocal.makefile.m4
similarity index 100%
rename from cairo/build/aclocal.makefile.m4
rename to io2d/src/3rd-party/cairo/build/aclocal.makefile.m4
diff --git a/cairo/build/aclocal.pkg.m4 b/io2d/src/3rd-party/cairo/build/aclocal.pkg.m4
similarity index 100%
rename from cairo/build/aclocal.pkg.m4
rename to io2d/src/3rd-party/cairo/build/aclocal.pkg.m4
diff --git a/cairo/build/configure.ac.analysis b/io2d/src/3rd-party/cairo/build/configure.ac.analysis
similarity index 100%
rename from cairo/build/configure.ac.analysis
rename to io2d/src/3rd-party/cairo/build/configure.ac.analysis
diff --git a/cairo/build/configure.ac.features b/io2d/src/3rd-party/cairo/build/configure.ac.features
similarity index 100%
rename from cairo/build/configure.ac.features
rename to io2d/src/3rd-party/cairo/build/configure.ac.features
diff --git a/cairo/build/configure.ac.noversion b/io2d/src/3rd-party/cairo/build/configure.ac.noversion
similarity index 100%
rename from cairo/build/configure.ac.noversion
rename to io2d/src/3rd-party/cairo/build/configure.ac.noversion
diff --git a/cairo/build/configure.ac.pthread b/io2d/src/3rd-party/cairo/build/configure.ac.pthread
similarity index 100%
rename from cairo/build/configure.ac.pthread
rename to io2d/src/3rd-party/cairo/build/configure.ac.pthread
diff --git a/cairo/build/configure.ac.system b/io2d/src/3rd-party/cairo/build/configure.ac.system
similarity index 100%
rename from cairo/build/configure.ac.system
rename to io2d/src/3rd-party/cairo/build/configure.ac.system
diff --git a/cairo/build/configure.ac.tools b/io2d/src/3rd-party/cairo/build/configure.ac.tools
similarity index 100%
rename from cairo/build/configure.ac.tools
rename to io2d/src/3rd-party/cairo/build/configure.ac.tools
diff --git a/cairo/build/configure.ac.version b/io2d/src/3rd-party/cairo/build/configure.ac.version
similarity index 100%
rename from cairo/build/configure.ac.version
rename to io2d/src/3rd-party/cairo/build/configure.ac.version
diff --git a/cairo/build/configure.ac.warnings b/io2d/src/3rd-party/cairo/build/configure.ac.warnings
similarity index 100%
rename from cairo/build/configure.ac.warnings
rename to io2d/src/3rd-party/cairo/build/configure.ac.warnings
diff --git a/io2d/src/3rd-party/cairo/cairo-features.h.cmake b/io2d/src/3rd-party/cairo/cairo-features.h.cmake
new file mode 100644
index 0000000..7a4ebfb
--- /dev/null
+++ b/io2d/src/3rd-party/cairo/cairo-features.h.cmake
@@ -0,0 +1,14 @@
+#define CAIRO_FEATURES_H 1
+#cmakedefine CAIRO_HAS_WIN32_SURFACE @CAIRO_HAS_WIN32_SURFACE@
+#cmakedefine CAIRO_HAS_WIN32_FONT @CAIRO_HAS_WIN32_FONT@
+#cmakedefine CAIRO_HAS_PNG_FUNCTIONS 0
+#define CAIRO_HAS_SCRIPT_SURFACE 1
+#cmakedefine CAIRO_HAS_PS_SURFACE 0
+#cmakedefine CAIRO_HAS_PDF_SURFACE 0
+#cmakedefine CAIRO_HAS_SVG_SURFACE 0
+#cmakedefine CAIRO_HAS_IMAGE_SURFACE 1
+#cmakedefine CAIRO_HAS_MIME_SURFACE 0
+#cmakedefine CAIRO_HAS_RECORDING_SURFACE 1
+#cmakedefine CAIRO_HAS_OBSERVER_SURFACE 1
+#cmakedefine CAIRO_HAS_USER_FONT 1
+#cmakedefine CAIRO_HAS_INTERPRETER 1
diff --git a/N3888_RefImpl/src/win32/include/cairo-version.h b/io2d/src/3rd-party/cairo/cairo-version.h
similarity index 100%
rename from N3888_RefImpl/src/win32/include/cairo-version.h
rename to io2d/src/3rd-party/cairo/cairo-version.h
diff --git a/io2d/src/3rd-party/cairo/config.h.cmake b/io2d/src/3rd-party/cairo/config.h.cmake
new file mode 100644
index 0000000..69df7a6
--- /dev/null
+++ b/io2d/src/3rd-party/cairo/config.h.cmake
@@ -0,0 +1,7 @@
+#cmakedefine HAVE_STDINT_H 1
+#cmakedefine HAVE_INTTYPES_H 1
+#cmakedefine HAVE_SYS_INT_TYPES_H 1
+#cmakedefine HAVE_UINT64_T @HAVE_UINT64_T@
+#cmakedefine CAIRO_HAS_PTHREAD 1
+#cmakedefine CAIRO_HAS_XCB_SURFACE 1
+#cmakedefine HAVE_INTEL_ATOMIC_PRIMITIVES @HAVE_INTEL_ATOMIC_PRIMITIVES@
diff --git a/cairo/configure.ac b/io2d/src/3rd-party/cairo/configure.ac
similarity index 100%
rename from cairo/configure.ac
rename to io2d/src/3rd-party/cairo/configure.ac
diff --git a/cairo/doc/.gitignore b/io2d/src/3rd-party/cairo/doc/.gitignore
similarity index 100%
rename from cairo/doc/.gitignore
rename to io2d/src/3rd-party/cairo/doc/.gitignore
diff --git a/cairo/doc/Makefile.am b/io2d/src/3rd-party/cairo/doc/Makefile.am
similarity index 100%
rename from cairo/doc/Makefile.am
rename to io2d/src/3rd-party/cairo/doc/Makefile.am
diff --git a/cairo/doc/public/.gitignore b/io2d/src/3rd-party/cairo/doc/public/.gitignore
similarity index 100%
rename from cairo/doc/public/.gitignore
rename to io2d/src/3rd-party/cairo/doc/public/.gitignore
diff --git a/cairo/doc/public/Makefile.am b/io2d/src/3rd-party/cairo/doc/public/Makefile.am
similarity index 100%
rename from cairo/doc/public/Makefile.am
rename to io2d/src/3rd-party/cairo/doc/public/Makefile.am
diff --git a/cairo/doc/public/README b/io2d/src/3rd-party/cairo/doc/public/README
similarity index 100%
rename from cairo/doc/public/README
rename to io2d/src/3rd-party/cairo/doc/public/README
diff --git a/cairo/doc/public/cairo-docs.xml b/io2d/src/3rd-party/cairo/doc/public/cairo-docs.xml
similarity index 100%
rename from cairo/doc/public/cairo-docs.xml
rename to io2d/src/3rd-party/cairo/doc/public/cairo-docs.xml
diff --git a/cairo/doc/public/cairo-overrides.txt b/io2d/src/3rd-party/cairo/doc/public/cairo-overrides.txt
similarity index 100%
rename from cairo/doc/public/cairo-overrides.txt
rename to io2d/src/3rd-party/cairo/doc/public/cairo-overrides.txt
diff --git a/cairo/doc/public/cairo-sections.txt b/io2d/src/3rd-party/cairo/doc/public/cairo-sections.txt
similarity index 100%
rename from cairo/doc/public/cairo-sections.txt
rename to io2d/src/3rd-party/cairo/doc/public/cairo-sections.txt
diff --git a/cairo/doc/public/cairo.types b/io2d/src/3rd-party/cairo/doc/public/cairo.types
similarity index 100%
rename from cairo/doc/public/cairo.types
rename to io2d/src/3rd-party/cairo/doc/public/cairo.types
diff --git a/cairo/doc/public/check-doc-coverage.sh b/io2d/src/3rd-party/cairo/doc/public/check-doc-coverage.sh
similarity index 100%
rename from cairo/doc/public/check-doc-coverage.sh
rename to io2d/src/3rd-party/cairo/doc/public/check-doc-coverage.sh
diff --git a/cairo/doc/public/check-doc-syntax.sh b/io2d/src/3rd-party/cairo/doc/public/check-doc-syntax.sh
similarity index 100%
rename from cairo/doc/public/check-doc-syntax.sh
rename to io2d/src/3rd-party/cairo/doc/public/check-doc-syntax.sh
diff --git a/cairo/doc/public/language-bindings.xml b/io2d/src/3rd-party/cairo/doc/public/language-bindings.xml
similarity index 100%
rename from cairo/doc/public/language-bindings.xml
rename to io2d/src/3rd-party/cairo/doc/public/language-bindings.xml
diff --git a/cairo/doc/tutorial/slides/.gitignore b/io2d/src/3rd-party/cairo/doc/tutorial/slides/.gitignore
similarity index 100%
rename from cairo/doc/tutorial/slides/.gitignore
rename to io2d/src/3rd-party/cairo/doc/tutorial/slides/.gitignore
diff --git a/cairo/doc/tutorial/slides/Makefile b/io2d/src/3rd-party/cairo/doc/tutorial/slides/Makefile
similarity index 100%
rename from cairo/doc/tutorial/slides/Makefile
rename to io2d/src/3rd-party/cairo/doc/tutorial/slides/Makefile
diff --git a/cairo/doc/tutorial/slides/cairo-blank.svg b/io2d/src/3rd-party/cairo/doc/tutorial/slides/cairo-blank.svg
similarity index 100%
rename from cairo/doc/tutorial/slides/cairo-blank.svg
rename to io2d/src/3rd-party/cairo/doc/tutorial/slides/cairo-blank.svg
diff --git a/cairo/doc/tutorial/slides/cairo-code.svg b/io2d/src/3rd-party/cairo/doc/tutorial/slides/cairo-code.svg
similarity index 100%
rename from cairo/doc/tutorial/slides/cairo-code.svg
rename to io2d/src/3rd-party/cairo/doc/tutorial/slides/cairo-code.svg
diff --git a/cairo/doc/tutorial/slides/cairo-large-content.svg b/io2d/src/3rd-party/cairo/doc/tutorial/slides/cairo-large-content.svg
similarity index 100%
rename from cairo/doc/tutorial/slides/cairo-large-content.svg
rename to io2d/src/3rd-party/cairo/doc/tutorial/slides/cairo-large-content.svg
diff --git a/cairo/doc/tutorial/slides/cairo-separator.svg b/io2d/src/3rd-party/cairo/doc/tutorial/slides/cairo-separator.svg
similarity index 100%
rename from cairo/doc/tutorial/slides/cairo-separator.svg
rename to io2d/src/3rd-party/cairo/doc/tutorial/slides/cairo-separator.svg
diff --git a/cairo/doc/tutorial/slides/cairo-title.svg b/io2d/src/3rd-party/cairo/doc/tutorial/slides/cairo-title.svg
similarity index 100%
rename from cairo/doc/tutorial/slides/cairo-title.svg
rename to io2d/src/3rd-party/cairo/doc/tutorial/slides/cairo-title.svg
diff --git a/cairo/doc/tutorial/slides/cairo.svg b/io2d/src/3rd-party/cairo/doc/tutorial/slides/cairo.svg
similarity index 100%
rename from cairo/doc/tutorial/slides/cairo.svg
rename to io2d/src/3rd-party/cairo/doc/tutorial/slides/cairo.svg
diff --git a/cairo/doc/tutorial/slides/circle-cairo-large.png b/io2d/src/3rd-party/cairo/doc/tutorial/slides/circle-cairo-large.png
similarity index 100%
rename from cairo/doc/tutorial/slides/circle-cairo-large.png
rename to io2d/src/3rd-party/cairo/doc/tutorial/slides/circle-cairo-large.png
diff --git a/cairo/doc/tutorial/slides/circle-cairo.png b/io2d/src/3rd-party/cairo/doc/tutorial/slides/circle-cairo.png
similarity index 100%
rename from cairo/doc/tutorial/slides/circle-cairo.png
rename to io2d/src/3rd-party/cairo/doc/tutorial/slides/circle-cairo.png
diff --git a/cairo/doc/tutorial/slides/circle-ooo-large.png b/io2d/src/3rd-party/cairo/doc/tutorial/slides/circle-ooo-large.png
similarity index 100%
rename from cairo/doc/tutorial/slides/circle-ooo-large.png
rename to io2d/src/3rd-party/cairo/doc/tutorial/slides/circle-ooo-large.png
diff --git a/cairo/doc/tutorial/slides/circle-ooo.png b/io2d/src/3rd-party/cairo/doc/tutorial/slides/circle-ooo.png
similarity index 100%
rename from cairo/doc/tutorial/slides/circle-ooo.png
rename to io2d/src/3rd-party/cairo/doc/tutorial/slides/circle-ooo.png
diff --git a/cairo/doc/tutorial/slides/expander-fuzzy-large.png b/io2d/src/3rd-party/cairo/doc/tutorial/slides/expander-fuzzy-large.png
similarity index 100%
rename from cairo/doc/tutorial/slides/expander-fuzzy-large.png
rename to io2d/src/3rd-party/cairo/doc/tutorial/slides/expander-fuzzy-large.png
diff --git a/cairo/doc/tutorial/slides/expander-fuzzy.png b/io2d/src/3rd-party/cairo/doc/tutorial/slides/expander-fuzzy.png
similarity index 100%
rename from cairo/doc/tutorial/slides/expander-fuzzy.png
rename to io2d/src/3rd-party/cairo/doc/tutorial/slides/expander-fuzzy.png
diff --git a/cairo/doc/tutorial/slides/expander-sharp-large.png b/io2d/src/3rd-party/cairo/doc/tutorial/slides/expander-sharp-large.png
similarity index 100%
rename from cairo/doc/tutorial/slides/expander-sharp-large.png
rename to io2d/src/3rd-party/cairo/doc/tutorial/slides/expander-sharp-large.png
diff --git a/cairo/doc/tutorial/slides/expander-sharp.png b/io2d/src/3rd-party/cairo/doc/tutorial/slides/expander-sharp.png
similarity index 100%
rename from cairo/doc/tutorial/slides/expander-sharp.png
rename to io2d/src/3rd-party/cairo/doc/tutorial/slides/expander-sharp.png
diff --git a/cairo/doc/tutorial/slides/fuzzies.svg b/io2d/src/3rd-party/cairo/doc/tutorial/slides/fuzzies.svg
similarity index 100%
rename from cairo/doc/tutorial/slides/fuzzies.svg
rename to io2d/src/3rd-party/cairo/doc/tutorial/slides/fuzzies.svg
diff --git a/cairo/doc/tutorial/slides/jaggies.svg b/io2d/src/3rd-party/cairo/doc/tutorial/slides/jaggies.svg
similarity index 100%
rename from cairo/doc/tutorial/slides/jaggies.svg
rename to io2d/src/3rd-party/cairo/doc/tutorial/slides/jaggies.svg
diff --git a/cairo/doc/tutorial/slides/rendering-model.png b/io2d/src/3rd-party/cairo/doc/tutorial/slides/rendering-model.png
similarity index 100%
rename from cairo/doc/tutorial/slides/rendering-model.png
rename to io2d/src/3rd-party/cairo/doc/tutorial/slides/rendering-model.png
diff --git a/cairo/doc/tutorial/slides/tutorial.xml b/io2d/src/3rd-party/cairo/doc/tutorial/slides/tutorial.xml
similarity index 100%
rename from cairo/doc/tutorial/slides/tutorial.xml
rename to io2d/src/3rd-party/cairo/doc/tutorial/slides/tutorial.xml
diff --git a/cairo/doc/tutorial/src/.gitignore b/io2d/src/3rd-party/cairo/doc/tutorial/src/.gitignore
similarity index 100%
rename from cairo/doc/tutorial/src/.gitignore
rename to io2d/src/3rd-party/cairo/doc/tutorial/src/.gitignore
diff --git a/cairo/doc/tutorial/src/Makefile b/io2d/src/3rd-party/cairo/doc/tutorial/src/Makefile
similarity index 100%
rename from cairo/doc/tutorial/src/Makefile
rename to io2d/src/3rd-party/cairo/doc/tutorial/src/Makefile
diff --git a/cairo/doc/tutorial/src/README b/io2d/src/3rd-party/cairo/doc/tutorial/src/README
similarity index 100%
rename from cairo/doc/tutorial/src/README
rename to io2d/src/3rd-party/cairo/doc/tutorial/src/README
diff --git a/cairo/doc/tutorial/src/circle.c b/io2d/src/3rd-party/cairo/doc/tutorial/src/circle.c
similarity index 100%
rename from cairo/doc/tutorial/src/circle.c
rename to io2d/src/3rd-party/cairo/doc/tutorial/src/circle.c
diff --git a/cairo/doc/tutorial/src/include/cairo-tutorial-gtk.h b/io2d/src/3rd-party/cairo/doc/tutorial/src/include/cairo-tutorial-gtk.h
similarity index 100%
rename from cairo/doc/tutorial/src/include/cairo-tutorial-gtk.h
rename to io2d/src/3rd-party/cairo/doc/tutorial/src/include/cairo-tutorial-gtk.h
diff --git a/cairo/doc/tutorial/src/include/cairo-tutorial-pdf.h b/io2d/src/3rd-party/cairo/doc/tutorial/src/include/cairo-tutorial-pdf.h
similarity index 100%
rename from cairo/doc/tutorial/src/include/cairo-tutorial-pdf.h
rename to io2d/src/3rd-party/cairo/doc/tutorial/src/include/cairo-tutorial-pdf.h
diff --git a/cairo/doc/tutorial/src/include/cairo-tutorial-png.h b/io2d/src/3rd-party/cairo/doc/tutorial/src/include/cairo-tutorial-png.h
similarity index 100%
rename from cairo/doc/tutorial/src/include/cairo-tutorial-png.h
rename to io2d/src/3rd-party/cairo/doc/tutorial/src/include/cairo-tutorial-png.h
diff --git a/cairo/doc/tutorial/src/include/cairo-tutorial-xlib.h b/io2d/src/3rd-party/cairo/doc/tutorial/src/include/cairo-tutorial-xlib.h
similarity index 100%
rename from cairo/doc/tutorial/src/include/cairo-tutorial-xlib.h
rename to io2d/src/3rd-party/cairo/doc/tutorial/src/include/cairo-tutorial-xlib.h
diff --git a/cairo/doc/tutorial/src/include/cairo-tutorial.h b/io2d/src/3rd-party/cairo/doc/tutorial/src/include/cairo-tutorial.h
similarity index 100%
rename from cairo/doc/tutorial/src/include/cairo-tutorial.h
rename to io2d/src/3rd-party/cairo/doc/tutorial/src/include/cairo-tutorial.h
diff --git a/cairo/doc/tutorial/src/lca.c b/io2d/src/3rd-party/cairo/doc/tutorial/src/lca.c
similarity index 100%
rename from cairo/doc/tutorial/src/lca.c
rename to io2d/src/3rd-party/cairo/doc/tutorial/src/lca.c
diff --git a/cairo/doc/tutorial/src/singular.c b/io2d/src/3rd-party/cairo/doc/tutorial/src/singular.c
similarity index 100%
rename from cairo/doc/tutorial/src/singular.c
rename to io2d/src/3rd-party/cairo/doc/tutorial/src/singular.c
diff --git a/cairo/doc/tutorial/src/twin.c b/io2d/src/3rd-party/cairo/doc/tutorial/src/twin.c
similarity index 100%
rename from cairo/doc/tutorial/src/twin.c
rename to io2d/src/3rd-party/cairo/doc/tutorial/src/twin.c
diff --git a/cairo/perf/.gitignore b/io2d/src/3rd-party/cairo/perf/.gitignore
similarity index 100%
rename from cairo/perf/.gitignore
rename to io2d/src/3rd-party/cairo/perf/.gitignore
diff --git a/cairo/perf/COPYING b/io2d/src/3rd-party/cairo/perf/COPYING
similarity index 100%
rename from cairo/perf/COPYING
rename to io2d/src/3rd-party/cairo/perf/COPYING
diff --git a/cairo/perf/Makefile.am b/io2d/src/3rd-party/cairo/perf/Makefile.am
similarity index 100%
rename from cairo/perf/Makefile.am
rename to io2d/src/3rd-party/cairo/perf/Makefile.am
diff --git a/cairo/perf/Makefile.sources b/io2d/src/3rd-party/cairo/perf/Makefile.sources
similarity index 100%
rename from cairo/perf/Makefile.sources
rename to io2d/src/3rd-party/cairo/perf/Makefile.sources
diff --git a/cairo/perf/Makefile.win32 b/io2d/src/3rd-party/cairo/perf/Makefile.win32
similarity index 100%
rename from cairo/perf/Makefile.win32
rename to io2d/src/3rd-party/cairo/perf/Makefile.win32
diff --git a/cairo/perf/README b/io2d/src/3rd-party/cairo/perf/README
similarity index 100%
rename from cairo/perf/README
rename to io2d/src/3rd-party/cairo/perf/README
diff --git a/cairo/perf/cairo-analyse-trace.c b/io2d/src/3rd-party/cairo/perf/cairo-analyse-trace.c
similarity index 100%
rename from cairo/perf/cairo-analyse-trace.c
rename to io2d/src/3rd-party/cairo/perf/cairo-analyse-trace.c
diff --git a/cairo/perf/cairo-perf-chart.c b/io2d/src/3rd-party/cairo/perf/cairo-perf-chart.c
similarity index 100%
rename from cairo/perf/cairo-perf-chart.c
rename to io2d/src/3rd-party/cairo/perf/cairo-perf-chart.c
diff --git a/cairo/perf/cairo-perf-compare-backends.c b/io2d/src/3rd-party/cairo/perf/cairo-perf-compare-backends.c
similarity index 100%
rename from cairo/perf/cairo-perf-compare-backends.c
rename to io2d/src/3rd-party/cairo/perf/cairo-perf-compare-backends.c
diff --git a/cairo/perf/cairo-perf-diff b/io2d/src/3rd-party/cairo/perf/cairo-perf-diff
similarity index 100%
rename from cairo/perf/cairo-perf-diff
rename to io2d/src/3rd-party/cairo/perf/cairo-perf-diff
diff --git a/cairo/perf/cairo-perf-diff-files.c b/io2d/src/3rd-party/cairo/perf/cairo-perf-diff-files.c
similarity index 100%
rename from cairo/perf/cairo-perf-diff-files.c
rename to io2d/src/3rd-party/cairo/perf/cairo-perf-diff-files.c
diff --git a/cairo/perf/cairo-perf-graph b/io2d/src/3rd-party/cairo/perf/cairo-perf-graph
similarity index 100%
rename from cairo/perf/cairo-perf-graph
rename to io2d/src/3rd-party/cairo/perf/cairo-perf-graph
diff --git a/cairo/perf/cairo-perf-graph-files.c b/io2d/src/3rd-party/cairo/perf/cairo-perf-graph-files.c
similarity index 100%
rename from cairo/perf/cairo-perf-graph-files.c
rename to io2d/src/3rd-party/cairo/perf/cairo-perf-graph-files.c
diff --git a/cairo/perf/cairo-perf-graph-widget.c b/io2d/src/3rd-party/cairo/perf/cairo-perf-graph-widget.c
similarity index 100%
rename from cairo/perf/cairo-perf-graph-widget.c
rename to io2d/src/3rd-party/cairo/perf/cairo-perf-graph-widget.c
diff --git a/cairo/perf/cairo-perf-graph.h b/io2d/src/3rd-party/cairo/perf/cairo-perf-graph.h
similarity index 100%
rename from cairo/perf/cairo-perf-graph.h
rename to io2d/src/3rd-party/cairo/perf/cairo-perf-graph.h
diff --git a/cairo/perf/cairo-perf-micro.c b/io2d/src/3rd-party/cairo/perf/cairo-perf-micro.c
similarity index 100%
rename from cairo/perf/cairo-perf-micro.c
rename to io2d/src/3rd-party/cairo/perf/cairo-perf-micro.c
diff --git a/cairo/perf/cairo-perf-print.c b/io2d/src/3rd-party/cairo/perf/cairo-perf-print.c
similarity index 100%
rename from cairo/perf/cairo-perf-print.c
rename to io2d/src/3rd-party/cairo/perf/cairo-perf-print.c
diff --git a/cairo/perf/cairo-perf-report.c b/io2d/src/3rd-party/cairo/perf/cairo-perf-report.c
similarity index 100%
rename from cairo/perf/cairo-perf-report.c
rename to io2d/src/3rd-party/cairo/perf/cairo-perf-report.c
diff --git a/cairo/perf/cairo-perf-trace.c b/io2d/src/3rd-party/cairo/perf/cairo-perf-trace.c
similarity index 100%
rename from cairo/perf/cairo-perf-trace.c
rename to io2d/src/3rd-party/cairo/perf/cairo-perf-trace.c
diff --git a/cairo/perf/cairo-perf.c b/io2d/src/3rd-party/cairo/perf/cairo-perf.c
similarity index 100%
rename from cairo/perf/cairo-perf.c
rename to io2d/src/3rd-party/cairo/perf/cairo-perf.c
diff --git a/cairo/perf/cairo-perf.h b/io2d/src/3rd-party/cairo/perf/cairo-perf.h
similarity index 100%
rename from cairo/perf/cairo-perf.h
rename to io2d/src/3rd-party/cairo/perf/cairo-perf.h
diff --git a/cairo/perf/cairo-stats.c b/io2d/src/3rd-party/cairo/perf/cairo-stats.c
similarity index 100%
rename from cairo/perf/cairo-stats.c
rename to io2d/src/3rd-party/cairo/perf/cairo-stats.c
diff --git a/cairo/perf/cairo-stats.h b/io2d/src/3rd-party/cairo/perf/cairo-stats.h
similarity index 100%
rename from cairo/perf/cairo-stats.h
rename to io2d/src/3rd-party/cairo/perf/cairo-stats.h
diff --git a/cairo/perf/dirent-win32.h b/io2d/src/3rd-party/cairo/perf/dirent-win32.h
similarity index 100%
rename from cairo/perf/dirent-win32.h
rename to io2d/src/3rd-party/cairo/perf/dirent-win32.h
diff --git a/cairo/perf/make-html.py b/io2d/src/3rd-party/cairo/perf/make-html.py
similarity index 100%
rename from cairo/perf/make-html.py
rename to io2d/src/3rd-party/cairo/perf/make-html.py
diff --git a/cairo/perf/micro/Makefile.am b/io2d/src/3rd-party/cairo/perf/micro/Makefile.am
similarity index 100%
rename from cairo/perf/micro/Makefile.am
rename to io2d/src/3rd-party/cairo/perf/micro/Makefile.am
diff --git a/cairo/perf/micro/Makefile.sources b/io2d/src/3rd-party/cairo/perf/micro/Makefile.sources
similarity index 100%
rename from cairo/perf/micro/Makefile.sources
rename to io2d/src/3rd-party/cairo/perf/micro/Makefile.sources
diff --git a/cairo/perf/micro/Makefile.win32 b/io2d/src/3rd-party/cairo/perf/micro/Makefile.win32
similarity index 100%
rename from cairo/perf/micro/Makefile.win32
rename to io2d/src/3rd-party/cairo/perf/micro/Makefile.win32
diff --git a/cairo/perf/micro/a1-curve.c b/io2d/src/3rd-party/cairo/perf/micro/a1-curve.c
similarity index 100%
rename from cairo/perf/micro/a1-curve.c
rename to io2d/src/3rd-party/cairo/perf/micro/a1-curve.c
diff --git a/cairo/perf/micro/a1-line.c b/io2d/src/3rd-party/cairo/perf/micro/a1-line.c
similarity index 100%
rename from cairo/perf/micro/a1-line.c
rename to io2d/src/3rd-party/cairo/perf/micro/a1-line.c
diff --git a/cairo/perf/micro/box-outline.c b/io2d/src/3rd-party/cairo/perf/micro/box-outline.c
similarity index 100%
rename from cairo/perf/micro/box-outline.c
rename to io2d/src/3rd-party/cairo/perf/micro/box-outline.c
diff --git a/cairo/perf/micro/cairo-perf-cover.c b/io2d/src/3rd-party/cairo/perf/micro/cairo-perf-cover.c
similarity index 100%
rename from cairo/perf/micro/cairo-perf-cover.c
rename to io2d/src/3rd-party/cairo/perf/micro/cairo-perf-cover.c
diff --git a/cairo/perf/micro/composite-checker.c b/io2d/src/3rd-party/cairo/perf/micro/composite-checker.c
similarity index 100%
rename from cairo/perf/micro/composite-checker.c
rename to io2d/src/3rd-party/cairo/perf/micro/composite-checker.c
diff --git a/cairo/perf/micro/curve.c b/io2d/src/3rd-party/cairo/perf/micro/curve.c
similarity index 100%
rename from cairo/perf/micro/curve.c
rename to io2d/src/3rd-party/cairo/perf/micro/curve.c
diff --git a/cairo/perf/micro/disjoint.c b/io2d/src/3rd-party/cairo/perf/micro/disjoint.c
similarity index 100%
rename from cairo/perf/micro/disjoint.c
rename to io2d/src/3rd-party/cairo/perf/micro/disjoint.c
diff --git a/cairo/perf/micro/dragon.c b/io2d/src/3rd-party/cairo/perf/micro/dragon.c
similarity index 100%
rename from cairo/perf/micro/dragon.c
rename to io2d/src/3rd-party/cairo/perf/micro/dragon.c
diff --git a/cairo/perf/micro/fill-clip.c b/io2d/src/3rd-party/cairo/perf/micro/fill-clip.c
similarity index 100%
rename from cairo/perf/micro/fill-clip.c
rename to io2d/src/3rd-party/cairo/perf/micro/fill-clip.c
diff --git a/cairo/perf/micro/fill.c b/io2d/src/3rd-party/cairo/perf/micro/fill.c
similarity index 100%
rename from cairo/perf/micro/fill.c
rename to io2d/src/3rd-party/cairo/perf/micro/fill.c
diff --git a/cairo/perf/micro/glyphs.c b/io2d/src/3rd-party/cairo/perf/micro/glyphs.c
similarity index 100%
rename from cairo/perf/micro/glyphs.c
rename to io2d/src/3rd-party/cairo/perf/micro/glyphs.c
diff --git a/cairo/perf/micro/hash-table.c b/io2d/src/3rd-party/cairo/perf/micro/hash-table.c
similarity index 100%
rename from cairo/perf/micro/hash-table.c
rename to io2d/src/3rd-party/cairo/perf/micro/hash-table.c
diff --git a/cairo/perf/micro/hatching.c b/io2d/src/3rd-party/cairo/perf/micro/hatching.c
similarity index 100%
rename from cairo/perf/micro/hatching.c
rename to io2d/src/3rd-party/cairo/perf/micro/hatching.c
diff --git a/cairo/perf/micro/intersections.c b/io2d/src/3rd-party/cairo/perf/micro/intersections.c
similarity index 100%
rename from cairo/perf/micro/intersections.c
rename to io2d/src/3rd-party/cairo/perf/micro/intersections.c
diff --git a/cairo/perf/micro/line.c b/io2d/src/3rd-party/cairo/perf/micro/line.c
similarity index 100%
rename from cairo/perf/micro/line.c
rename to io2d/src/3rd-party/cairo/perf/micro/line.c
diff --git a/cairo/perf/micro/long-dashed-lines.c b/io2d/src/3rd-party/cairo/perf/micro/long-dashed-lines.c
similarity index 100%
rename from cairo/perf/micro/long-dashed-lines.c
rename to io2d/src/3rd-party/cairo/perf/micro/long-dashed-lines.c
diff --git a/cairo/perf/micro/long-lines.c b/io2d/src/3rd-party/cairo/perf/micro/long-lines.c
similarity index 100%
rename from cairo/perf/micro/long-lines.c
rename to io2d/src/3rd-party/cairo/perf/micro/long-lines.c
diff --git a/cairo/perf/micro/many-curves.c b/io2d/src/3rd-party/cairo/perf/micro/many-curves.c
similarity index 100%
rename from cairo/perf/micro/many-curves.c
rename to io2d/src/3rd-party/cairo/perf/micro/many-curves.c
diff --git a/cairo/perf/micro/many-fills.c b/io2d/src/3rd-party/cairo/perf/micro/many-fills.c
similarity index 100%
rename from cairo/perf/micro/many-fills.c
rename to io2d/src/3rd-party/cairo/perf/micro/many-fills.c
diff --git a/cairo/perf/micro/many-strokes.c b/io2d/src/3rd-party/cairo/perf/micro/many-strokes.c
similarity index 100%
rename from cairo/perf/micro/many-strokes.c
rename to io2d/src/3rd-party/cairo/perf/micro/many-strokes.c
diff --git a/cairo/perf/micro/mask.c b/io2d/src/3rd-party/cairo/perf/micro/mask.c
similarity index 100%
rename from cairo/perf/micro/mask.c
rename to io2d/src/3rd-party/cairo/perf/micro/mask.c
diff --git a/cairo/perf/micro/mosaic.c b/io2d/src/3rd-party/cairo/perf/micro/mosaic.c
similarity index 100%
rename from cairo/perf/micro/mosaic.c
rename to io2d/src/3rd-party/cairo/perf/micro/mosaic.c
diff --git a/cairo/perf/micro/mosaic.h b/io2d/src/3rd-party/cairo/perf/micro/mosaic.h
similarity index 100%
rename from cairo/perf/micro/mosaic.h
rename to io2d/src/3rd-party/cairo/perf/micro/mosaic.h
diff --git a/cairo/perf/micro/paint-with-alpha.c b/io2d/src/3rd-party/cairo/perf/micro/paint-with-alpha.c
similarity index 100%
rename from cairo/perf/micro/paint-with-alpha.c
rename to io2d/src/3rd-party/cairo/perf/micro/paint-with-alpha.c
diff --git a/cairo/perf/micro/paint.c b/io2d/src/3rd-party/cairo/perf/micro/paint.c
similarity index 100%
rename from cairo/perf/micro/paint.c
rename to io2d/src/3rd-party/cairo/perf/micro/paint.c
diff --git a/cairo/perf/micro/pattern_create_radial.c b/io2d/src/3rd-party/cairo/perf/micro/pattern_create_radial.c
similarity index 100%
rename from cairo/perf/micro/pattern_create_radial.c
rename to io2d/src/3rd-party/cairo/perf/micro/pattern_create_radial.c
diff --git a/cairo/perf/micro/pixel.c b/io2d/src/3rd-party/cairo/perf/micro/pixel.c
similarity index 100%
rename from cairo/perf/micro/pixel.c
rename to io2d/src/3rd-party/cairo/perf/micro/pixel.c
diff --git a/cairo/perf/micro/pythagoras-tree.c b/io2d/src/3rd-party/cairo/perf/micro/pythagoras-tree.c
similarity index 100%
rename from cairo/perf/micro/pythagoras-tree.c
rename to io2d/src/3rd-party/cairo/perf/micro/pythagoras-tree.c
diff --git a/cairo/perf/micro/rectangles.c b/io2d/src/3rd-party/cairo/perf/micro/rectangles.c
similarity index 100%
rename from cairo/perf/micro/rectangles.c
rename to io2d/src/3rd-party/cairo/perf/micro/rectangles.c
diff --git a/cairo/perf/micro/rounded-rectangles.c b/io2d/src/3rd-party/cairo/perf/micro/rounded-rectangles.c
similarity index 100%
rename from cairo/perf/micro/rounded-rectangles.c
rename to io2d/src/3rd-party/cairo/perf/micro/rounded-rectangles.c
diff --git a/cairo/perf/micro/sierpinski.c b/io2d/src/3rd-party/cairo/perf/micro/sierpinski.c
similarity index 100%
rename from cairo/perf/micro/sierpinski.c
rename to io2d/src/3rd-party/cairo/perf/micro/sierpinski.c
diff --git a/cairo/perf/micro/spiral.c b/io2d/src/3rd-party/cairo/perf/micro/spiral.c
similarity index 100%
rename from cairo/perf/micro/spiral.c
rename to io2d/src/3rd-party/cairo/perf/micro/spiral.c
diff --git a/cairo/perf/micro/stroke.c b/io2d/src/3rd-party/cairo/perf/micro/stroke.c
similarity index 100%
rename from cairo/perf/micro/stroke.c
rename to io2d/src/3rd-party/cairo/perf/micro/stroke.c
diff --git a/cairo/perf/micro/subimage_copy.c b/io2d/src/3rd-party/cairo/perf/micro/subimage_copy.c
similarity index 100%
rename from cairo/perf/micro/subimage_copy.c
rename to io2d/src/3rd-party/cairo/perf/micro/subimage_copy.c
diff --git a/cairo/perf/micro/tessellate.c b/io2d/src/3rd-party/cairo/perf/micro/tessellate.c
similarity index 100%
rename from cairo/perf/micro/tessellate.c
rename to io2d/src/3rd-party/cairo/perf/micro/tessellate.c
diff --git a/cairo/perf/micro/text.c b/io2d/src/3rd-party/cairo/perf/micro/text.c
similarity index 100%
rename from cairo/perf/micro/text.c
rename to io2d/src/3rd-party/cairo/perf/micro/text.c
diff --git a/cairo/perf/micro/tiger.c b/io2d/src/3rd-party/cairo/perf/micro/tiger.c
similarity index 100%
rename from cairo/perf/micro/tiger.c
rename to io2d/src/3rd-party/cairo/perf/micro/tiger.c
diff --git a/cairo/perf/micro/twin.c b/io2d/src/3rd-party/cairo/perf/micro/twin.c
similarity index 100%
rename from cairo/perf/micro/twin.c
rename to io2d/src/3rd-party/cairo/perf/micro/twin.c
diff --git a/cairo/perf/micro/unaligned-clip.c b/io2d/src/3rd-party/cairo/perf/micro/unaligned-clip.c
similarity index 100%
rename from cairo/perf/micro/unaligned-clip.c
rename to io2d/src/3rd-party/cairo/perf/micro/unaligned-clip.c
diff --git a/cairo/perf/micro/wave.c b/io2d/src/3rd-party/cairo/perf/micro/wave.c
similarity index 100%
rename from cairo/perf/micro/wave.c
rename to io2d/src/3rd-party/cairo/perf/micro/wave.c
diff --git a/cairo/perf/micro/wide-fills.c b/io2d/src/3rd-party/cairo/perf/micro/wide-fills.c
similarity index 100%
rename from cairo/perf/micro/wide-fills.c
rename to io2d/src/3rd-party/cairo/perf/micro/wide-fills.c
diff --git a/cairo/perf/micro/wide-strokes.c b/io2d/src/3rd-party/cairo/perf/micro/wide-strokes.c
similarity index 100%
rename from cairo/perf/micro/wide-strokes.c
rename to io2d/src/3rd-party/cairo/perf/micro/wide-strokes.c
diff --git a/cairo/perf/micro/world-map.c b/io2d/src/3rd-party/cairo/perf/micro/world-map.c
similarity index 100%
rename from cairo/perf/micro/world-map.c
rename to io2d/src/3rd-party/cairo/perf/micro/world-map.c
diff --git a/cairo/perf/micro/world-map.h b/io2d/src/3rd-party/cairo/perf/micro/world-map.h
similarity index 100%
rename from cairo/perf/micro/world-map.h
rename to io2d/src/3rd-party/cairo/perf/micro/world-map.h
diff --git a/cairo/perf/micro/zrusin-another.h b/io2d/src/3rd-party/cairo/perf/micro/zrusin-another.h
similarity index 100%
rename from cairo/perf/micro/zrusin-another.h
rename to io2d/src/3rd-party/cairo/perf/micro/zrusin-another.h
diff --git a/cairo/perf/micro/zrusin.c b/io2d/src/3rd-party/cairo/perf/micro/zrusin.c
similarity index 100%
rename from cairo/perf/micro/zrusin.c
rename to io2d/src/3rd-party/cairo/perf/micro/zrusin.c
diff --git a/cairo/src/.gitignore b/io2d/src/3rd-party/cairo/src/.gitignore
similarity index 100%
rename from cairo/src/.gitignore
rename to io2d/src/3rd-party/cairo/src/.gitignore
diff --git a/cairo/src/Makefile.am b/io2d/src/3rd-party/cairo/src/Makefile.am
similarity index 100%
rename from cairo/src/Makefile.am
rename to io2d/src/3rd-party/cairo/src/Makefile.am
diff --git a/cairo/src/Makefile.am.analysis b/io2d/src/3rd-party/cairo/src/Makefile.am.analysis
similarity index 100%
rename from cairo/src/Makefile.am.analysis
rename to io2d/src/3rd-party/cairo/src/Makefile.am.analysis
diff --git a/cairo/src/Makefile.sources b/io2d/src/3rd-party/cairo/src/Makefile.sources
similarity index 100%
rename from cairo/src/Makefile.sources
rename to io2d/src/3rd-party/cairo/src/Makefile.sources
diff --git a/cairo/src/Makefile.win32 b/io2d/src/3rd-party/cairo/src/Makefile.win32
similarity index 100%
rename from cairo/src/Makefile.win32
rename to io2d/src/3rd-party/cairo/src/Makefile.win32
diff --git a/cairo/src/Makefile.win32.features b/io2d/src/3rd-party/cairo/src/Makefile.win32.features
similarity index 100%
rename from cairo/src/Makefile.win32.features
rename to io2d/src/3rd-party/cairo/src/Makefile.win32.features
diff --git a/cairo/src/README b/io2d/src/3rd-party/cairo/src/README
similarity index 100%
rename from cairo/src/README
rename to io2d/src/3rd-party/cairo/src/README
diff --git a/cairo/src/cairo-analysis-surface-private.h b/io2d/src/3rd-party/cairo/src/cairo-analysis-surface-private.h
similarity index 100%
rename from cairo/src/cairo-analysis-surface-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-analysis-surface-private.h
diff --git a/cairo/src/cairo-analysis-surface.c b/io2d/src/3rd-party/cairo/src/cairo-analysis-surface.c
similarity index 100%
rename from cairo/src/cairo-analysis-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-analysis-surface.c
diff --git a/cairo/src/cairo-arc-private.h b/io2d/src/3rd-party/cairo/src/cairo-arc-private.h
similarity index 100%
rename from cairo/src/cairo-arc-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-arc-private.h
diff --git a/cairo/src/cairo-arc.c b/io2d/src/3rd-party/cairo/src/cairo-arc.c
similarity index 100%
rename from cairo/src/cairo-arc.c
rename to io2d/src/3rd-party/cairo/src/cairo-arc.c
diff --git a/cairo/src/cairo-array-private.h b/io2d/src/3rd-party/cairo/src/cairo-array-private.h
similarity index 100%
rename from cairo/src/cairo-array-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-array-private.h
diff --git a/cairo/src/cairo-array.c b/io2d/src/3rd-party/cairo/src/cairo-array.c
similarity index 100%
rename from cairo/src/cairo-array.c
rename to io2d/src/3rd-party/cairo/src/cairo-array.c
diff --git a/cairo/src/cairo-atomic-private.h b/io2d/src/3rd-party/cairo/src/cairo-atomic-private.h
similarity index 100%
rename from cairo/src/cairo-atomic-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-atomic-private.h
diff --git a/cairo/src/cairo-atomic.c b/io2d/src/3rd-party/cairo/src/cairo-atomic.c
similarity index 100%
rename from cairo/src/cairo-atomic.c
rename to io2d/src/3rd-party/cairo/src/cairo-atomic.c
diff --git a/cairo/src/cairo-backend-private.h b/io2d/src/3rd-party/cairo/src/cairo-backend-private.h
similarity index 100%
rename from cairo/src/cairo-backend-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-backend-private.h
diff --git a/cairo/src/cairo-base64-stream.c b/io2d/src/3rd-party/cairo/src/cairo-base64-stream.c
similarity index 100%
rename from cairo/src/cairo-base64-stream.c
rename to io2d/src/3rd-party/cairo/src/cairo-base64-stream.c
diff --git a/cairo/src/cairo-base85-stream.c b/io2d/src/3rd-party/cairo/src/cairo-base85-stream.c
similarity index 100%
rename from cairo/src/cairo-base85-stream.c
rename to io2d/src/3rd-party/cairo/src/cairo-base85-stream.c
diff --git a/cairo/src/cairo-bentley-ottmann-rectangular.c b/io2d/src/3rd-party/cairo/src/cairo-bentley-ottmann-rectangular.c
similarity index 100%
rename from cairo/src/cairo-bentley-ottmann-rectangular.c
rename to io2d/src/3rd-party/cairo/src/cairo-bentley-ottmann-rectangular.c
diff --git a/cairo/src/cairo-bentley-ottmann-rectilinear.c b/io2d/src/3rd-party/cairo/src/cairo-bentley-ottmann-rectilinear.c
similarity index 100%
rename from cairo/src/cairo-bentley-ottmann-rectilinear.c
rename to io2d/src/3rd-party/cairo/src/cairo-bentley-ottmann-rectilinear.c
diff --git a/cairo/src/cairo-bentley-ottmann.c b/io2d/src/3rd-party/cairo/src/cairo-bentley-ottmann.c
similarity index 100%
rename from cairo/src/cairo-bentley-ottmann.c
rename to io2d/src/3rd-party/cairo/src/cairo-bentley-ottmann.c
diff --git a/cairo/src/cairo-beos-surface.cpp b/io2d/src/3rd-party/cairo/src/cairo-beos-surface.cpp
similarity index 100%
rename from cairo/src/cairo-beos-surface.cpp
rename to io2d/src/3rd-party/cairo/src/cairo-beos-surface.cpp
diff --git a/cairo/src/cairo-beos.h b/io2d/src/3rd-party/cairo/src/cairo-beos.h
similarity index 100%
rename from cairo/src/cairo-beos.h
rename to io2d/src/3rd-party/cairo/src/cairo-beos.h
diff --git a/cairo/src/cairo-botor-scan-converter.c b/io2d/src/3rd-party/cairo/src/cairo-botor-scan-converter.c
similarity index 100%
rename from cairo/src/cairo-botor-scan-converter.c
rename to io2d/src/3rd-party/cairo/src/cairo-botor-scan-converter.c
diff --git a/cairo/src/cairo-box-inline.h b/io2d/src/3rd-party/cairo/src/cairo-box-inline.h
similarity index 100%
rename from cairo/src/cairo-box-inline.h
rename to io2d/src/3rd-party/cairo/src/cairo-box-inline.h
diff --git a/cairo/src/cairo-boxes-intersect.c b/io2d/src/3rd-party/cairo/src/cairo-boxes-intersect.c
similarity index 100%
rename from cairo/src/cairo-boxes-intersect.c
rename to io2d/src/3rd-party/cairo/src/cairo-boxes-intersect.c
diff --git a/cairo/src/cairo-boxes-private.h b/io2d/src/3rd-party/cairo/src/cairo-boxes-private.h
similarity index 100%
rename from cairo/src/cairo-boxes-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-boxes-private.h
diff --git a/cairo/src/cairo-boxes.c b/io2d/src/3rd-party/cairo/src/cairo-boxes.c
similarity index 100%
rename from cairo/src/cairo-boxes.c
rename to io2d/src/3rd-party/cairo/src/cairo-boxes.c
diff --git a/cairo/src/cairo-cache-private.h b/io2d/src/3rd-party/cairo/src/cairo-cache-private.h
similarity index 100%
rename from cairo/src/cairo-cache-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-cache-private.h
diff --git a/cairo/src/cairo-cache.c b/io2d/src/3rd-party/cairo/src/cairo-cache.c
similarity index 100%
rename from cairo/src/cairo-cache.c
rename to io2d/src/3rd-party/cairo/src/cairo-cache.c
diff --git a/cairo/src/cairo-cff-subset.c b/io2d/src/3rd-party/cairo/src/cairo-cff-subset.c
similarity index 100%
rename from cairo/src/cairo-cff-subset.c
rename to io2d/src/3rd-party/cairo/src/cairo-cff-subset.c
diff --git a/cairo/src/cairo-clip-boxes.c b/io2d/src/3rd-party/cairo/src/cairo-clip-boxes.c
similarity index 100%
rename from cairo/src/cairo-clip-boxes.c
rename to io2d/src/3rd-party/cairo/src/cairo-clip-boxes.c
diff --git a/cairo/src/cairo-clip-inline.h b/io2d/src/3rd-party/cairo/src/cairo-clip-inline.h
similarity index 100%
rename from cairo/src/cairo-clip-inline.h
rename to io2d/src/3rd-party/cairo/src/cairo-clip-inline.h
diff --git a/cairo/src/cairo-clip-polygon.c b/io2d/src/3rd-party/cairo/src/cairo-clip-polygon.c
similarity index 100%
rename from cairo/src/cairo-clip-polygon.c
rename to io2d/src/3rd-party/cairo/src/cairo-clip-polygon.c
diff --git a/cairo/src/cairo-clip-private.h b/io2d/src/3rd-party/cairo/src/cairo-clip-private.h
similarity index 100%
rename from cairo/src/cairo-clip-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-clip-private.h
diff --git a/cairo/src/cairo-clip-region.c b/io2d/src/3rd-party/cairo/src/cairo-clip-region.c
similarity index 100%
rename from cairo/src/cairo-clip-region.c
rename to io2d/src/3rd-party/cairo/src/cairo-clip-region.c
diff --git a/cairo/src/cairo-clip-surface.c b/io2d/src/3rd-party/cairo/src/cairo-clip-surface.c
similarity index 100%
rename from cairo/src/cairo-clip-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-clip-surface.c
diff --git a/cairo/src/cairo-clip-tor-scan-converter.c b/io2d/src/3rd-party/cairo/src/cairo-clip-tor-scan-converter.c
similarity index 100%
rename from cairo/src/cairo-clip-tor-scan-converter.c
rename to io2d/src/3rd-party/cairo/src/cairo-clip-tor-scan-converter.c
diff --git a/cairo/src/cairo-clip.c b/io2d/src/3rd-party/cairo/src/cairo-clip.c
similarity index 100%
rename from cairo/src/cairo-clip.c
rename to io2d/src/3rd-party/cairo/src/cairo-clip.c
diff --git a/cairo/src/cairo-cogl-context-private.h b/io2d/src/3rd-party/cairo/src/cairo-cogl-context-private.h
similarity index 100%
rename from cairo/src/cairo-cogl-context-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-cogl-context-private.h
diff --git a/cairo/src/cairo-cogl-context.c b/io2d/src/3rd-party/cairo/src/cairo-cogl-context.c
similarity index 100%
rename from cairo/src/cairo-cogl-context.c
rename to io2d/src/3rd-party/cairo/src/cairo-cogl-context.c
diff --git a/cairo/src/cairo-cogl-gradient-private.h b/io2d/src/3rd-party/cairo/src/cairo-cogl-gradient-private.h
similarity index 100%
rename from cairo/src/cairo-cogl-gradient-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-cogl-gradient-private.h
diff --git a/cairo/src/cairo-cogl-gradient.c b/io2d/src/3rd-party/cairo/src/cairo-cogl-gradient.c
similarity index 100%
rename from cairo/src/cairo-cogl-gradient.c
rename to io2d/src/3rd-party/cairo/src/cairo-cogl-gradient.c
diff --git a/cairo/src/cairo-cogl-private.h b/io2d/src/3rd-party/cairo/src/cairo-cogl-private.h
similarity index 100%
rename from cairo/src/cairo-cogl-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-cogl-private.h
diff --git a/cairo/src/cairo-cogl-surface.c b/io2d/src/3rd-party/cairo/src/cairo-cogl-surface.c
similarity index 100%
rename from cairo/src/cairo-cogl-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-cogl-surface.c
diff --git a/cairo/src/cairo-cogl-utils-private.h b/io2d/src/3rd-party/cairo/src/cairo-cogl-utils-private.h
similarity index 100%
rename from cairo/src/cairo-cogl-utils-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-cogl-utils-private.h
diff --git a/cairo/src/cairo-cogl-utils.c b/io2d/src/3rd-party/cairo/src/cairo-cogl-utils.c
similarity index 100%
rename from cairo/src/cairo-cogl-utils.c
rename to io2d/src/3rd-party/cairo/src/cairo-cogl-utils.c
diff --git a/cairo/src/cairo-cogl.h b/io2d/src/3rd-party/cairo/src/cairo-cogl.h
similarity index 100%
rename from cairo/src/cairo-cogl.h
rename to io2d/src/3rd-party/cairo/src/cairo-cogl.h
diff --git a/cairo/src/cairo-color.c b/io2d/src/3rd-party/cairo/src/cairo-color.c
similarity index 100%
rename from cairo/src/cairo-color.c
rename to io2d/src/3rd-party/cairo/src/cairo-color.c
diff --git a/cairo/src/cairo-combsort-inline.h b/io2d/src/3rd-party/cairo/src/cairo-combsort-inline.h
similarity index 100%
rename from cairo/src/cairo-combsort-inline.h
rename to io2d/src/3rd-party/cairo/src/cairo-combsort-inline.h
diff --git a/cairo/src/cairo-compiler-private.h b/io2d/src/3rd-party/cairo/src/cairo-compiler-private.h
similarity index 100%
rename from cairo/src/cairo-compiler-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-compiler-private.h
diff --git a/cairo/src/cairo-composite-rectangles-private.h b/io2d/src/3rd-party/cairo/src/cairo-composite-rectangles-private.h
similarity index 100%
rename from cairo/src/cairo-composite-rectangles-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-composite-rectangles-private.h
diff --git a/cairo/src/cairo-composite-rectangles.c b/io2d/src/3rd-party/cairo/src/cairo-composite-rectangles.c
similarity index 100%
rename from cairo/src/cairo-composite-rectangles.c
rename to io2d/src/3rd-party/cairo/src/cairo-composite-rectangles.c
diff --git a/cairo/src/cairo-compositor-private.h b/io2d/src/3rd-party/cairo/src/cairo-compositor-private.h
similarity index 100%
rename from cairo/src/cairo-compositor-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-compositor-private.h
diff --git a/cairo/src/cairo-compositor.c b/io2d/src/3rd-party/cairo/src/cairo-compositor.c
similarity index 100%
rename from cairo/src/cairo-compositor.c
rename to io2d/src/3rd-party/cairo/src/cairo-compositor.c
diff --git a/cairo/src/cairo-contour-inline.h b/io2d/src/3rd-party/cairo/src/cairo-contour-inline.h
similarity index 100%
rename from cairo/src/cairo-contour-inline.h
rename to io2d/src/3rd-party/cairo/src/cairo-contour-inline.h
diff --git a/cairo/src/cairo-contour-private.h b/io2d/src/3rd-party/cairo/src/cairo-contour-private.h
similarity index 100%
rename from cairo/src/cairo-contour-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-contour-private.h
diff --git a/cairo/src/cairo-contour.c b/io2d/src/3rd-party/cairo/src/cairo-contour.c
similarity index 100%
rename from cairo/src/cairo-contour.c
rename to io2d/src/3rd-party/cairo/src/cairo-contour.c
diff --git a/cairo/src/cairo-damage-private.h b/io2d/src/3rd-party/cairo/src/cairo-damage-private.h
similarity index 100%
rename from cairo/src/cairo-damage-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-damage-private.h
diff --git a/cairo/src/cairo-damage.c b/io2d/src/3rd-party/cairo/src/cairo-damage.c
similarity index 100%
rename from cairo/src/cairo-damage.c
rename to io2d/src/3rd-party/cairo/src/cairo-damage.c
diff --git a/cairo/src/cairo-debug.c b/io2d/src/3rd-party/cairo/src/cairo-debug.c
similarity index 100%
rename from cairo/src/cairo-debug.c
rename to io2d/src/3rd-party/cairo/src/cairo-debug.c
diff --git a/cairo/src/cairo-default-context-private.h b/io2d/src/3rd-party/cairo/src/cairo-default-context-private.h
similarity index 100%
rename from cairo/src/cairo-default-context-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-default-context-private.h
diff --git a/cairo/src/cairo-default-context.c b/io2d/src/3rd-party/cairo/src/cairo-default-context.c
similarity index 100%
rename from cairo/src/cairo-default-context.c
rename to io2d/src/3rd-party/cairo/src/cairo-default-context.c
diff --git a/cairo/src/cairo-deflate-stream.c b/io2d/src/3rd-party/cairo/src/cairo-deflate-stream.c
similarity index 100%
rename from cairo/src/cairo-deflate-stream.c
rename to io2d/src/3rd-party/cairo/src/cairo-deflate-stream.c
diff --git a/N3888_RefImpl/src/win32/include/cairo-deprecated.h b/io2d/src/3rd-party/cairo/src/cairo-deprecated.h
similarity index 100%
rename from N3888_RefImpl/src/win32/include/cairo-deprecated.h
rename to io2d/src/3rd-party/cairo/src/cairo-deprecated.h
diff --git a/cairo/src/cairo-device-private.h b/io2d/src/3rd-party/cairo/src/cairo-device-private.h
similarity index 100%
rename from cairo/src/cairo-device-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-device-private.h
diff --git a/cairo/src/cairo-device.c b/io2d/src/3rd-party/cairo/src/cairo-device.c
similarity index 100%
rename from cairo/src/cairo-device.c
rename to io2d/src/3rd-party/cairo/src/cairo-device.c
diff --git a/cairo/src/cairo-directfb-surface.c b/io2d/src/3rd-party/cairo/src/cairo-directfb-surface.c
similarity index 100%
rename from cairo/src/cairo-directfb-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-directfb-surface.c
diff --git a/cairo/src/cairo-directfb.h b/io2d/src/3rd-party/cairo/src/cairo-directfb.h
similarity index 100%
rename from cairo/src/cairo-directfb.h
rename to io2d/src/3rd-party/cairo/src/cairo-directfb.h
diff --git a/cairo/src/cairo-drm.h b/io2d/src/3rd-party/cairo/src/cairo-drm.h
similarity index 100%
rename from cairo/src/cairo-drm.h
rename to io2d/src/3rd-party/cairo/src/cairo-drm.h
diff --git a/cairo/src/cairo-egl-context.c b/io2d/src/3rd-party/cairo/src/cairo-egl-context.c
similarity index 100%
rename from cairo/src/cairo-egl-context.c
rename to io2d/src/3rd-party/cairo/src/cairo-egl-context.c
diff --git a/cairo/src/cairo-error-inline.h b/io2d/src/3rd-party/cairo/src/cairo-error-inline.h
similarity index 100%
rename from cairo/src/cairo-error-inline.h
rename to io2d/src/3rd-party/cairo/src/cairo-error-inline.h
diff --git a/cairo/src/cairo-error-private.h b/io2d/src/3rd-party/cairo/src/cairo-error-private.h
similarity index 100%
rename from cairo/src/cairo-error-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-error-private.h
diff --git a/cairo/src/cairo-error.c b/io2d/src/3rd-party/cairo/src/cairo-error.c
similarity index 100%
rename from cairo/src/cairo-error.c
rename to io2d/src/3rd-party/cairo/src/cairo-error.c
diff --git a/cairo/src/cairo-fallback-compositor.c b/io2d/src/3rd-party/cairo/src/cairo-fallback-compositor.c
similarity index 100%
rename from cairo/src/cairo-fallback-compositor.c
rename to io2d/src/3rd-party/cairo/src/cairo-fallback-compositor.c
diff --git a/cairo/src/cairo-features-uninstalled.pc.in b/io2d/src/3rd-party/cairo/src/cairo-features-uninstalled.pc.in
similarity index 100%
rename from cairo/src/cairo-features-uninstalled.pc.in
rename to io2d/src/3rd-party/cairo/src/cairo-features-uninstalled.pc.in
diff --git a/cairo/src/cairo-features.pc.in b/io2d/src/3rd-party/cairo/src/cairo-features.pc.in
similarity index 100%
rename from cairo/src/cairo-features.pc.in
rename to io2d/src/3rd-party/cairo/src/cairo-features.pc.in
diff --git a/cairo/src/cairo-fixed-private.h b/io2d/src/3rd-party/cairo/src/cairo-fixed-private.h
similarity index 100%
rename from cairo/src/cairo-fixed-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-fixed-private.h
diff --git a/cairo/src/cairo-fixed-type-private.h b/io2d/src/3rd-party/cairo/src/cairo-fixed-type-private.h
similarity index 100%
rename from cairo/src/cairo-fixed-type-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-fixed-type-private.h
diff --git a/cairo/src/cairo-fixed.c b/io2d/src/3rd-party/cairo/src/cairo-fixed.c
similarity index 100%
rename from cairo/src/cairo-fixed.c
rename to io2d/src/3rd-party/cairo/src/cairo-fixed.c
diff --git a/cairo/src/cairo-font-face-twin-data.c b/io2d/src/3rd-party/cairo/src/cairo-font-face-twin-data.c
similarity index 100%
rename from cairo/src/cairo-font-face-twin-data.c
rename to io2d/src/3rd-party/cairo/src/cairo-font-face-twin-data.c
diff --git a/cairo/src/cairo-font-face-twin.c b/io2d/src/3rd-party/cairo/src/cairo-font-face-twin.c
similarity index 100%
rename from cairo/src/cairo-font-face-twin.c
rename to io2d/src/3rd-party/cairo/src/cairo-font-face-twin.c
diff --git a/cairo/src/cairo-font-face.c b/io2d/src/3rd-party/cairo/src/cairo-font-face.c
similarity index 100%
rename from cairo/src/cairo-font-face.c
rename to io2d/src/3rd-party/cairo/src/cairo-font-face.c
diff --git a/cairo/src/cairo-font-options.c b/io2d/src/3rd-party/cairo/src/cairo-font-options.c
similarity index 100%
rename from cairo/src/cairo-font-options.c
rename to io2d/src/3rd-party/cairo/src/cairo-font-options.c
diff --git a/cairo/src/cairo-fontconfig-private.h b/io2d/src/3rd-party/cairo/src/cairo-fontconfig-private.h
similarity index 100%
rename from cairo/src/cairo-fontconfig-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-fontconfig-private.h
diff --git a/cairo/src/cairo-freed-pool-private.h b/io2d/src/3rd-party/cairo/src/cairo-freed-pool-private.h
similarity index 100%
rename from cairo/src/cairo-freed-pool-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-freed-pool-private.h
diff --git a/cairo/src/cairo-freed-pool.c b/io2d/src/3rd-party/cairo/src/cairo-freed-pool.c
similarity index 100%
rename from cairo/src/cairo-freed-pool.c
rename to io2d/src/3rd-party/cairo/src/cairo-freed-pool.c
diff --git a/cairo/src/cairo-freelist-private.h b/io2d/src/3rd-party/cairo/src/cairo-freelist-private.h
similarity index 100%
rename from cairo/src/cairo-freelist-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-freelist-private.h
diff --git a/cairo/src/cairo-freelist-type-private.h b/io2d/src/3rd-party/cairo/src/cairo-freelist-type-private.h
similarity index 100%
rename from cairo/src/cairo-freelist-type-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-freelist-type-private.h
diff --git a/cairo/src/cairo-freelist.c b/io2d/src/3rd-party/cairo/src/cairo-freelist.c
similarity index 100%
rename from cairo/src/cairo-freelist.c
rename to io2d/src/3rd-party/cairo/src/cairo-freelist.c
diff --git a/cairo/src/cairo-ft-font.c b/io2d/src/3rd-party/cairo/src/cairo-ft-font.c
similarity index 100%
rename from cairo/src/cairo-ft-font.c
rename to io2d/src/3rd-party/cairo/src/cairo-ft-font.c
diff --git a/cairo/src/cairo-ft-private.h b/io2d/src/3rd-party/cairo/src/cairo-ft-private.h
similarity index 100%
rename from cairo/src/cairo-ft-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-ft-private.h
diff --git a/cairo/src/cairo-ft.h b/io2d/src/3rd-party/cairo/src/cairo-ft.h
similarity index 100%
rename from cairo/src/cairo-ft.h
rename to io2d/src/3rd-party/cairo/src/cairo-ft.h
diff --git a/cairo/src/cairo-gl-composite.c b/io2d/src/3rd-party/cairo/src/cairo-gl-composite.c
similarity index 100%
rename from cairo/src/cairo-gl-composite.c
rename to io2d/src/3rd-party/cairo/src/cairo-gl-composite.c
diff --git a/cairo/src/cairo-gl-device.c b/io2d/src/3rd-party/cairo/src/cairo-gl-device.c
similarity index 100%
rename from cairo/src/cairo-gl-device.c
rename to io2d/src/3rd-party/cairo/src/cairo-gl-device.c
diff --git a/cairo/src/cairo-gl-dispatch-private.h b/io2d/src/3rd-party/cairo/src/cairo-gl-dispatch-private.h
similarity index 100%
rename from cairo/src/cairo-gl-dispatch-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-gl-dispatch-private.h
diff --git a/cairo/src/cairo-gl-dispatch.c b/io2d/src/3rd-party/cairo/src/cairo-gl-dispatch.c
similarity index 100%
rename from cairo/src/cairo-gl-dispatch.c
rename to io2d/src/3rd-party/cairo/src/cairo-gl-dispatch.c
diff --git a/cairo/src/cairo-gl-ext-def-private.h b/io2d/src/3rd-party/cairo/src/cairo-gl-ext-def-private.h
similarity index 100%
rename from cairo/src/cairo-gl-ext-def-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-gl-ext-def-private.h
diff --git a/cairo/src/cairo-gl-glyphs.c b/io2d/src/3rd-party/cairo/src/cairo-gl-glyphs.c
similarity index 100%
rename from cairo/src/cairo-gl-glyphs.c
rename to io2d/src/3rd-party/cairo/src/cairo-gl-glyphs.c
diff --git a/cairo/src/cairo-gl-gradient-private.h b/io2d/src/3rd-party/cairo/src/cairo-gl-gradient-private.h
similarity index 100%
rename from cairo/src/cairo-gl-gradient-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-gl-gradient-private.h
diff --git a/cairo/src/cairo-gl-gradient.c b/io2d/src/3rd-party/cairo/src/cairo-gl-gradient.c
similarity index 100%
rename from cairo/src/cairo-gl-gradient.c
rename to io2d/src/3rd-party/cairo/src/cairo-gl-gradient.c
diff --git a/cairo/src/cairo-gl-info.c b/io2d/src/3rd-party/cairo/src/cairo-gl-info.c
similarity index 100%
rename from cairo/src/cairo-gl-info.c
rename to io2d/src/3rd-party/cairo/src/cairo-gl-info.c
diff --git a/cairo/src/cairo-gl-msaa-compositor.c b/io2d/src/3rd-party/cairo/src/cairo-gl-msaa-compositor.c
similarity index 100%
rename from cairo/src/cairo-gl-msaa-compositor.c
rename to io2d/src/3rd-party/cairo/src/cairo-gl-msaa-compositor.c
diff --git a/cairo/src/cairo-gl-operand.c b/io2d/src/3rd-party/cairo/src/cairo-gl-operand.c
similarity index 100%
rename from cairo/src/cairo-gl-operand.c
rename to io2d/src/3rd-party/cairo/src/cairo-gl-operand.c
diff --git a/cairo/src/cairo-gl-private.h b/io2d/src/3rd-party/cairo/src/cairo-gl-private.h
similarity index 100%
rename from cairo/src/cairo-gl-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-gl-private.h
diff --git a/cairo/src/cairo-gl-shaders.c b/io2d/src/3rd-party/cairo/src/cairo-gl-shaders.c
similarity index 100%
rename from cairo/src/cairo-gl-shaders.c
rename to io2d/src/3rd-party/cairo/src/cairo-gl-shaders.c
diff --git a/cairo/src/cairo-gl-source.c b/io2d/src/3rd-party/cairo/src/cairo-gl-source.c
similarity index 100%
rename from cairo/src/cairo-gl-source.c
rename to io2d/src/3rd-party/cairo/src/cairo-gl-source.c
diff --git a/cairo/src/cairo-gl-spans-compositor.c b/io2d/src/3rd-party/cairo/src/cairo-gl-spans-compositor.c
similarity index 100%
rename from cairo/src/cairo-gl-spans-compositor.c
rename to io2d/src/3rd-party/cairo/src/cairo-gl-spans-compositor.c
diff --git a/cairo/src/cairo-gl-surface-legacy.c b/io2d/src/3rd-party/cairo/src/cairo-gl-surface-legacy.c
similarity index 100%
rename from cairo/src/cairo-gl-surface-legacy.c
rename to io2d/src/3rd-party/cairo/src/cairo-gl-surface-legacy.c
diff --git a/cairo/src/cairo-gl-surface.c b/io2d/src/3rd-party/cairo/src/cairo-gl-surface.c
similarity index 100%
rename from cairo/src/cairo-gl-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-gl-surface.c
diff --git a/cairo/src/cairo-gl-traps-compositor.c b/io2d/src/3rd-party/cairo/src/cairo-gl-traps-compositor.c
similarity index 100%
rename from cairo/src/cairo-gl-traps-compositor.c
rename to io2d/src/3rd-party/cairo/src/cairo-gl-traps-compositor.c
diff --git a/cairo/src/cairo-gl.h b/io2d/src/3rd-party/cairo/src/cairo-gl.h
similarity index 100%
rename from cairo/src/cairo-gl.h
rename to io2d/src/3rd-party/cairo/src/cairo-gl.h
diff --git a/cairo/src/cairo-glx-context.c b/io2d/src/3rd-party/cairo/src/cairo-glx-context.c
similarity index 100%
rename from cairo/src/cairo-glx-context.c
rename to io2d/src/3rd-party/cairo/src/cairo-glx-context.c
diff --git a/cairo/src/cairo-gstate-private.h b/io2d/src/3rd-party/cairo/src/cairo-gstate-private.h
similarity index 100%
rename from cairo/src/cairo-gstate-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-gstate-private.h
diff --git a/cairo/src/cairo-gstate.c b/io2d/src/3rd-party/cairo/src/cairo-gstate.c
similarity index 100%
rename from cairo/src/cairo-gstate.c
rename to io2d/src/3rd-party/cairo/src/cairo-gstate.c
diff --git a/cairo/src/cairo-hash-private.h b/io2d/src/3rd-party/cairo/src/cairo-hash-private.h
similarity index 100%
rename from cairo/src/cairo-hash-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-hash-private.h
diff --git a/cairo/src/cairo-hash.c b/io2d/src/3rd-party/cairo/src/cairo-hash.c
similarity index 100%
rename from cairo/src/cairo-hash.c
rename to io2d/src/3rd-party/cairo/src/cairo-hash.c
diff --git a/cairo/src/cairo-hull.c b/io2d/src/3rd-party/cairo/src/cairo-hull.c
similarity index 100%
rename from cairo/src/cairo-hull.c
rename to io2d/src/3rd-party/cairo/src/cairo-hull.c
diff --git a/cairo/src/cairo-image-compositor.c b/io2d/src/3rd-party/cairo/src/cairo-image-compositor.c
similarity index 100%
rename from cairo/src/cairo-image-compositor.c
rename to io2d/src/3rd-party/cairo/src/cairo-image-compositor.c
diff --git a/cairo/src/cairo-image-info-private.h b/io2d/src/3rd-party/cairo/src/cairo-image-info-private.h
similarity index 100%
rename from cairo/src/cairo-image-info-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-image-info-private.h
diff --git a/cairo/src/cairo-image-info.c b/io2d/src/3rd-party/cairo/src/cairo-image-info.c
similarity index 100%
rename from cairo/src/cairo-image-info.c
rename to io2d/src/3rd-party/cairo/src/cairo-image-info.c
diff --git a/cairo/src/cairo-image-mask-compositor.c b/io2d/src/3rd-party/cairo/src/cairo-image-mask-compositor.c
similarity index 100%
rename from cairo/src/cairo-image-mask-compositor.c
rename to io2d/src/3rd-party/cairo/src/cairo-image-mask-compositor.c
diff --git a/cairo/src/cairo-image-source.c b/io2d/src/3rd-party/cairo/src/cairo-image-source.c
similarity index 100%
rename from cairo/src/cairo-image-source.c
rename to io2d/src/3rd-party/cairo/src/cairo-image-source.c
diff --git a/cairo/src/cairo-image-surface-inline.h b/io2d/src/3rd-party/cairo/src/cairo-image-surface-inline.h
similarity index 100%
rename from cairo/src/cairo-image-surface-inline.h
rename to io2d/src/3rd-party/cairo/src/cairo-image-surface-inline.h
diff --git a/cairo/src/cairo-image-surface-private.h b/io2d/src/3rd-party/cairo/src/cairo-image-surface-private.h
similarity index 100%
rename from cairo/src/cairo-image-surface-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-image-surface-private.h
diff --git a/cairo/src/cairo-image-surface.c b/io2d/src/3rd-party/cairo/src/cairo-image-surface.c
similarity index 100%
rename from cairo/src/cairo-image-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-image-surface.c
diff --git a/cairo/src/cairo-list-inline.h b/io2d/src/3rd-party/cairo/src/cairo-list-inline.h
similarity index 100%
rename from cairo/src/cairo-list-inline.h
rename to io2d/src/3rd-party/cairo/src/cairo-list-inline.h
diff --git a/cairo/src/cairo-list-private.h b/io2d/src/3rd-party/cairo/src/cairo-list-private.h
similarity index 100%
rename from cairo/src/cairo-list-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-list-private.h
diff --git a/cairo/src/cairo-lzw.c b/io2d/src/3rd-party/cairo/src/cairo-lzw.c
similarity index 100%
rename from cairo/src/cairo-lzw.c
rename to io2d/src/3rd-party/cairo/src/cairo-lzw.c
diff --git a/cairo/src/cairo-malloc-private.h b/io2d/src/3rd-party/cairo/src/cairo-malloc-private.h
similarity index 100%
rename from cairo/src/cairo-malloc-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-malloc-private.h
diff --git a/cairo/src/cairo-mask-compositor.c b/io2d/src/3rd-party/cairo/src/cairo-mask-compositor.c
similarity index 100%
rename from cairo/src/cairo-mask-compositor.c
rename to io2d/src/3rd-party/cairo/src/cairo-mask-compositor.c
diff --git a/cairo/src/cairo-matrix.c b/io2d/src/3rd-party/cairo/src/cairo-matrix.c
similarity index 100%
rename from cairo/src/cairo-matrix.c
rename to io2d/src/3rd-party/cairo/src/cairo-matrix.c
diff --git a/cairo/src/cairo-mempool-private.h b/io2d/src/3rd-party/cairo/src/cairo-mempool-private.h
similarity index 100%
rename from cairo/src/cairo-mempool-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-mempool-private.h
diff --git a/cairo/src/cairo-mempool.c b/io2d/src/3rd-party/cairo/src/cairo-mempool.c
similarity index 100%
rename from cairo/src/cairo-mempool.c
rename to io2d/src/3rd-party/cairo/src/cairo-mempool.c
diff --git a/cairo/src/cairo-mesh-pattern-rasterizer.c b/io2d/src/3rd-party/cairo/src/cairo-mesh-pattern-rasterizer.c
similarity index 100%
rename from cairo/src/cairo-mesh-pattern-rasterizer.c
rename to io2d/src/3rd-party/cairo/src/cairo-mesh-pattern-rasterizer.c
diff --git a/cairo/src/cairo-misc.c b/io2d/src/3rd-party/cairo/src/cairo-misc.c
similarity index 100%
rename from cairo/src/cairo-misc.c
rename to io2d/src/3rd-party/cairo/src/cairo-misc.c
diff --git a/cairo/src/cairo-mono-scan-converter.c b/io2d/src/3rd-party/cairo/src/cairo-mono-scan-converter.c
similarity index 100%
rename from cairo/src/cairo-mono-scan-converter.c
rename to io2d/src/3rd-party/cairo/src/cairo-mono-scan-converter.c
diff --git a/cairo/src/cairo-mutex-impl-private.h b/io2d/src/3rd-party/cairo/src/cairo-mutex-impl-private.h
similarity index 100%
rename from cairo/src/cairo-mutex-impl-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-mutex-impl-private.h
diff --git a/cairo/src/cairo-mutex-list-private.h b/io2d/src/3rd-party/cairo/src/cairo-mutex-list-private.h
similarity index 100%
rename from cairo/src/cairo-mutex-list-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-mutex-list-private.h
diff --git a/cairo/src/cairo-mutex-private.h b/io2d/src/3rd-party/cairo/src/cairo-mutex-private.h
similarity index 100%
rename from cairo/src/cairo-mutex-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-mutex-private.h
diff --git a/cairo/src/cairo-mutex-type-private.h b/io2d/src/3rd-party/cairo/src/cairo-mutex-type-private.h
similarity index 100%
rename from cairo/src/cairo-mutex-type-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-mutex-type-private.h
diff --git a/cairo/src/cairo-mutex.c b/io2d/src/3rd-party/cairo/src/cairo-mutex.c
similarity index 100%
rename from cairo/src/cairo-mutex.c
rename to io2d/src/3rd-party/cairo/src/cairo-mutex.c
diff --git a/cairo/src/cairo-no-compositor.c b/io2d/src/3rd-party/cairo/src/cairo-no-compositor.c
similarity index 100%
rename from cairo/src/cairo-no-compositor.c
rename to io2d/src/3rd-party/cairo/src/cairo-no-compositor.c
diff --git a/cairo/src/cairo-observer.c b/io2d/src/3rd-party/cairo/src/cairo-observer.c
similarity index 100%
rename from cairo/src/cairo-observer.c
rename to io2d/src/3rd-party/cairo/src/cairo-observer.c
diff --git a/cairo/src/cairo-os2-private.h b/io2d/src/3rd-party/cairo/src/cairo-os2-private.h
similarity index 100%
rename from cairo/src/cairo-os2-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-os2-private.h
diff --git a/cairo/src/cairo-os2-surface.c b/io2d/src/3rd-party/cairo/src/cairo-os2-surface.c
similarity index 100%
rename from cairo/src/cairo-os2-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-os2-surface.c
diff --git a/cairo/src/cairo-os2.h b/io2d/src/3rd-party/cairo/src/cairo-os2.h
similarity index 100%
rename from cairo/src/cairo-os2.h
rename to io2d/src/3rd-party/cairo/src/cairo-os2.h
diff --git a/cairo/src/cairo-output-stream-private.h b/io2d/src/3rd-party/cairo/src/cairo-output-stream-private.h
similarity index 100%
rename from cairo/src/cairo-output-stream-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-output-stream-private.h
diff --git a/cairo/src/cairo-output-stream.c b/io2d/src/3rd-party/cairo/src/cairo-output-stream.c
similarity index 100%
rename from cairo/src/cairo-output-stream.c
rename to io2d/src/3rd-party/cairo/src/cairo-output-stream.c
diff --git a/cairo/src/cairo-paginated-private.h b/io2d/src/3rd-party/cairo/src/cairo-paginated-private.h
similarity index 100%
rename from cairo/src/cairo-paginated-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-paginated-private.h
diff --git a/cairo/src/cairo-paginated-surface-private.h b/io2d/src/3rd-party/cairo/src/cairo-paginated-surface-private.h
similarity index 100%
rename from cairo/src/cairo-paginated-surface-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-paginated-surface-private.h
diff --git a/cairo/src/cairo-paginated-surface.c b/io2d/src/3rd-party/cairo/src/cairo-paginated-surface.c
similarity index 100%
rename from cairo/src/cairo-paginated-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-paginated-surface.c
diff --git a/cairo/src/cairo-path-bounds.c b/io2d/src/3rd-party/cairo/src/cairo-path-bounds.c
similarity index 100%
rename from cairo/src/cairo-path-bounds.c
rename to io2d/src/3rd-party/cairo/src/cairo-path-bounds.c
diff --git a/cairo/src/cairo-path-fill.c b/io2d/src/3rd-party/cairo/src/cairo-path-fill.c
similarity index 100%
rename from cairo/src/cairo-path-fill.c
rename to io2d/src/3rd-party/cairo/src/cairo-path-fill.c
diff --git a/cairo/src/cairo-path-fixed-private.h b/io2d/src/3rd-party/cairo/src/cairo-path-fixed-private.h
similarity index 100%
rename from cairo/src/cairo-path-fixed-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-path-fixed-private.h
diff --git a/cairo/src/cairo-path-fixed.c b/io2d/src/3rd-party/cairo/src/cairo-path-fixed.c
similarity index 100%
rename from cairo/src/cairo-path-fixed.c
rename to io2d/src/3rd-party/cairo/src/cairo-path-fixed.c
diff --git a/cairo/src/cairo-path-in-fill.c b/io2d/src/3rd-party/cairo/src/cairo-path-in-fill.c
similarity index 100%
rename from cairo/src/cairo-path-in-fill.c
rename to io2d/src/3rd-party/cairo/src/cairo-path-in-fill.c
diff --git a/cairo/src/cairo-path-private.h b/io2d/src/3rd-party/cairo/src/cairo-path-private.h
similarity index 100%
rename from cairo/src/cairo-path-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-path-private.h
diff --git a/cairo/src/cairo-path-stroke-boxes.c b/io2d/src/3rd-party/cairo/src/cairo-path-stroke-boxes.c
similarity index 100%
rename from cairo/src/cairo-path-stroke-boxes.c
rename to io2d/src/3rd-party/cairo/src/cairo-path-stroke-boxes.c
diff --git a/cairo/src/cairo-path-stroke-polygon.c b/io2d/src/3rd-party/cairo/src/cairo-path-stroke-polygon.c
similarity index 100%
rename from cairo/src/cairo-path-stroke-polygon.c
rename to io2d/src/3rd-party/cairo/src/cairo-path-stroke-polygon.c
diff --git a/cairo/src/cairo-path-stroke-traps.c b/io2d/src/3rd-party/cairo/src/cairo-path-stroke-traps.c
similarity index 100%
rename from cairo/src/cairo-path-stroke-traps.c
rename to io2d/src/3rd-party/cairo/src/cairo-path-stroke-traps.c
diff --git a/cairo/src/cairo-path-stroke-tristrip.c b/io2d/src/3rd-party/cairo/src/cairo-path-stroke-tristrip.c
similarity index 100%
rename from cairo/src/cairo-path-stroke-tristrip.c
rename to io2d/src/3rd-party/cairo/src/cairo-path-stroke-tristrip.c
diff --git a/cairo/src/cairo-path-stroke.c b/io2d/src/3rd-party/cairo/src/cairo-path-stroke.c
similarity index 100%
rename from cairo/src/cairo-path-stroke.c
rename to io2d/src/3rd-party/cairo/src/cairo-path-stroke.c
diff --git a/cairo/src/cairo-path.c b/io2d/src/3rd-party/cairo/src/cairo-path.c
similarity index 100%
rename from cairo/src/cairo-path.c
rename to io2d/src/3rd-party/cairo/src/cairo-path.c
diff --git a/cairo/src/cairo-pattern-inline.h b/io2d/src/3rd-party/cairo/src/cairo-pattern-inline.h
similarity index 100%
rename from cairo/src/cairo-pattern-inline.h
rename to io2d/src/3rd-party/cairo/src/cairo-pattern-inline.h
diff --git a/cairo/src/cairo-pattern-private.h b/io2d/src/3rd-party/cairo/src/cairo-pattern-private.h
similarity index 100%
rename from cairo/src/cairo-pattern-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-pattern-private.h
diff --git a/cairo/src/cairo-pattern.c b/io2d/src/3rd-party/cairo/src/cairo-pattern.c
similarity index 100%
rename from cairo/src/cairo-pattern.c
rename to io2d/src/3rd-party/cairo/src/cairo-pattern.c
diff --git a/cairo/src/cairo-pdf-operators-private.h b/io2d/src/3rd-party/cairo/src/cairo-pdf-operators-private.h
similarity index 100%
rename from cairo/src/cairo-pdf-operators-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-pdf-operators-private.h
diff --git a/cairo/src/cairo-pdf-operators.c b/io2d/src/3rd-party/cairo/src/cairo-pdf-operators.c
similarity index 100%
rename from cairo/src/cairo-pdf-operators.c
rename to io2d/src/3rd-party/cairo/src/cairo-pdf-operators.c
diff --git a/cairo/src/cairo-pdf-shading-private.h b/io2d/src/3rd-party/cairo/src/cairo-pdf-shading-private.h
similarity index 100%
rename from cairo/src/cairo-pdf-shading-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-pdf-shading-private.h
diff --git a/cairo/src/cairo-pdf-shading.c b/io2d/src/3rd-party/cairo/src/cairo-pdf-shading.c
similarity index 100%
rename from cairo/src/cairo-pdf-shading.c
rename to io2d/src/3rd-party/cairo/src/cairo-pdf-shading.c
diff --git a/cairo/src/cairo-pdf-surface-private.h b/io2d/src/3rd-party/cairo/src/cairo-pdf-surface-private.h
similarity index 100%
rename from cairo/src/cairo-pdf-surface-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-pdf-surface-private.h
diff --git a/cairo/src/cairo-pdf-surface.c b/io2d/src/3rd-party/cairo/src/cairo-pdf-surface.c
similarity index 100%
rename from cairo/src/cairo-pdf-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-pdf-surface.c
diff --git a/N3888_RefImpl/src/win32/include/cairo-pdf.h b/io2d/src/3rd-party/cairo/src/cairo-pdf.h
similarity index 100%
rename from N3888_RefImpl/src/win32/include/cairo-pdf.h
rename to io2d/src/3rd-party/cairo/src/cairo-pdf.h
diff --git a/cairo/src/cairo-pen.c b/io2d/src/3rd-party/cairo/src/cairo-pen.c
similarity index 100%
rename from cairo/src/cairo-pen.c
rename to io2d/src/3rd-party/cairo/src/cairo-pen.c
diff --git a/cairo/src/cairo-pixman-private.h b/io2d/src/3rd-party/cairo/src/cairo-pixman-private.h
similarity index 100%
rename from cairo/src/cairo-pixman-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-pixman-private.h
diff --git a/cairo/src/cairo-png.c b/io2d/src/3rd-party/cairo/src/cairo-png.c
similarity index 100%
rename from cairo/src/cairo-png.c
rename to io2d/src/3rd-party/cairo/src/cairo-png.c
diff --git a/cairo/src/cairo-polygon-intersect.c b/io2d/src/3rd-party/cairo/src/cairo-polygon-intersect.c
similarity index 100%
rename from cairo/src/cairo-polygon-intersect.c
rename to io2d/src/3rd-party/cairo/src/cairo-polygon-intersect.c
diff --git a/cairo/src/cairo-polygon-reduce.c b/io2d/src/3rd-party/cairo/src/cairo-polygon-reduce.c
similarity index 100%
rename from cairo/src/cairo-polygon-reduce.c
rename to io2d/src/3rd-party/cairo/src/cairo-polygon-reduce.c
diff --git a/cairo/src/cairo-polygon.c b/io2d/src/3rd-party/cairo/src/cairo-polygon.c
similarity index 100%
rename from cairo/src/cairo-polygon.c
rename to io2d/src/3rd-party/cairo/src/cairo-polygon.c
diff --git a/cairo/src/cairo-private.h b/io2d/src/3rd-party/cairo/src/cairo-private.h
similarity index 100%
rename from cairo/src/cairo-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-private.h
diff --git a/cairo/src/cairo-ps-surface-private.h b/io2d/src/3rd-party/cairo/src/cairo-ps-surface-private.h
similarity index 100%
rename from cairo/src/cairo-ps-surface-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-ps-surface-private.h
diff --git a/cairo/src/cairo-ps-surface.c b/io2d/src/3rd-party/cairo/src/cairo-ps-surface.c
similarity index 100%
rename from cairo/src/cairo-ps-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-ps-surface.c
diff --git a/N3888_RefImpl/src/win32/include/cairo-ps.h b/io2d/src/3rd-party/cairo/src/cairo-ps.h
similarity index 100%
rename from N3888_RefImpl/src/win32/include/cairo-ps.h
rename to io2d/src/3rd-party/cairo/src/cairo-ps.h
diff --git a/cairo/src/cairo-qt-surface.cpp b/io2d/src/3rd-party/cairo/src/cairo-qt-surface.cpp
similarity index 100%
rename from cairo/src/cairo-qt-surface.cpp
rename to io2d/src/3rd-party/cairo/src/cairo-qt-surface.cpp
diff --git a/cairo/src/cairo-qt.h b/io2d/src/3rd-party/cairo/src/cairo-qt.h
similarity index 100%
rename from cairo/src/cairo-qt.h
rename to io2d/src/3rd-party/cairo/src/cairo-qt.h
diff --git a/cairo/src/cairo-quartz-font.c b/io2d/src/3rd-party/cairo/src/cairo-quartz-font.c
similarity index 100%
rename from cairo/src/cairo-quartz-font.c
rename to io2d/src/3rd-party/cairo/src/cairo-quartz-font.c
diff --git a/cairo/src/cairo-quartz-image-surface.c b/io2d/src/3rd-party/cairo/src/cairo-quartz-image-surface.c
similarity index 100%
rename from cairo/src/cairo-quartz-image-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-quartz-image-surface.c
diff --git a/cairo/src/cairo-quartz-image.h b/io2d/src/3rd-party/cairo/src/cairo-quartz-image.h
similarity index 100%
rename from cairo/src/cairo-quartz-image.h
rename to io2d/src/3rd-party/cairo/src/cairo-quartz-image.h
diff --git a/cairo/src/cairo-quartz-private.h b/io2d/src/3rd-party/cairo/src/cairo-quartz-private.h
similarity index 100%
rename from cairo/src/cairo-quartz-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-quartz-private.h
diff --git a/cairo/src/cairo-quartz-surface.c b/io2d/src/3rd-party/cairo/src/cairo-quartz-surface.c
similarity index 100%
rename from cairo/src/cairo-quartz-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-quartz-surface.c
diff --git a/cairo/src/cairo-quartz.h b/io2d/src/3rd-party/cairo/src/cairo-quartz.h
similarity index 100%
rename from cairo/src/cairo-quartz.h
rename to io2d/src/3rd-party/cairo/src/cairo-quartz.h
diff --git a/cairo/src/cairo-raster-source-pattern.c b/io2d/src/3rd-party/cairo/src/cairo-raster-source-pattern.c
similarity index 100%
rename from cairo/src/cairo-raster-source-pattern.c
rename to io2d/src/3rd-party/cairo/src/cairo-raster-source-pattern.c
diff --git a/cairo/src/cairo-recording-surface-inline.h b/io2d/src/3rd-party/cairo/src/cairo-recording-surface-inline.h
similarity index 100%
rename from cairo/src/cairo-recording-surface-inline.h
rename to io2d/src/3rd-party/cairo/src/cairo-recording-surface-inline.h
diff --git a/cairo/src/cairo-recording-surface-private.h b/io2d/src/3rd-party/cairo/src/cairo-recording-surface-private.h
similarity index 100%
rename from cairo/src/cairo-recording-surface-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-recording-surface-private.h
diff --git a/cairo/src/cairo-recording-surface.c b/io2d/src/3rd-party/cairo/src/cairo-recording-surface.c
similarity index 100%
rename from cairo/src/cairo-recording-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-recording-surface.c
diff --git a/cairo/src/cairo-rectangle.c b/io2d/src/3rd-party/cairo/src/cairo-rectangle.c
similarity index 100%
rename from cairo/src/cairo-rectangle.c
rename to io2d/src/3rd-party/cairo/src/cairo-rectangle.c
diff --git a/cairo/src/cairo-rectangular-scan-converter.c b/io2d/src/3rd-party/cairo/src/cairo-rectangular-scan-converter.c
similarity index 100%
rename from cairo/src/cairo-rectangular-scan-converter.c
rename to io2d/src/3rd-party/cairo/src/cairo-rectangular-scan-converter.c
diff --git a/cairo/src/cairo-reference-count-private.h b/io2d/src/3rd-party/cairo/src/cairo-reference-count-private.h
similarity index 100%
rename from cairo/src/cairo-reference-count-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-reference-count-private.h
diff --git a/cairo/src/cairo-region-private.h b/io2d/src/3rd-party/cairo/src/cairo-region-private.h
similarity index 100%
rename from cairo/src/cairo-region-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-region-private.h
diff --git a/cairo/src/cairo-region.c b/io2d/src/3rd-party/cairo/src/cairo-region.c
similarity index 100%
rename from cairo/src/cairo-region.c
rename to io2d/src/3rd-party/cairo/src/cairo-region.c
diff --git a/cairo/src/cairo-rtree-private.h b/io2d/src/3rd-party/cairo/src/cairo-rtree-private.h
similarity index 100%
rename from cairo/src/cairo-rtree-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-rtree-private.h
diff --git a/cairo/src/cairo-rtree.c b/io2d/src/3rd-party/cairo/src/cairo-rtree.c
similarity index 100%
rename from cairo/src/cairo-rtree.c
rename to io2d/src/3rd-party/cairo/src/cairo-rtree.c
diff --git a/cairo/src/cairo-scaled-font-private.h b/io2d/src/3rd-party/cairo/src/cairo-scaled-font-private.h
similarity index 100%
rename from cairo/src/cairo-scaled-font-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-scaled-font-private.h
diff --git a/cairo/src/cairo-scaled-font-subsets-private.h b/io2d/src/3rd-party/cairo/src/cairo-scaled-font-subsets-private.h
similarity index 100%
rename from cairo/src/cairo-scaled-font-subsets-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-scaled-font-subsets-private.h
diff --git a/cairo/src/cairo-scaled-font-subsets.c b/io2d/src/3rd-party/cairo/src/cairo-scaled-font-subsets.c
similarity index 100%
rename from cairo/src/cairo-scaled-font-subsets.c
rename to io2d/src/3rd-party/cairo/src/cairo-scaled-font-subsets.c
diff --git a/cairo/src/cairo-scaled-font.c b/io2d/src/3rd-party/cairo/src/cairo-scaled-font.c
similarity index 100%
rename from cairo/src/cairo-scaled-font.c
rename to io2d/src/3rd-party/cairo/src/cairo-scaled-font.c
diff --git a/cairo/src/cairo-script-private.h b/io2d/src/3rd-party/cairo/src/cairo-script-private.h
similarity index 100%
rename from cairo/src/cairo-script-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-script-private.h
diff --git a/cairo/src/cairo-script-surface.c b/io2d/src/3rd-party/cairo/src/cairo-script-surface.c
similarity index 100%
rename from cairo/src/cairo-script-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-script-surface.c
diff --git a/N3888_RefImpl/src/win32/include/cairo-script.h b/io2d/src/3rd-party/cairo/src/cairo-script.h
similarity index 100%
rename from N3888_RefImpl/src/win32/include/cairo-script.h
rename to io2d/src/3rd-party/cairo/src/cairo-script.h
diff --git a/cairo/src/cairo-shape-mask-compositor.c b/io2d/src/3rd-party/cairo/src/cairo-shape-mask-compositor.c
similarity index 100%
rename from cairo/src/cairo-shape-mask-compositor.c
rename to io2d/src/3rd-party/cairo/src/cairo-shape-mask-compositor.c
diff --git a/cairo/src/cairo-skia-surface.cpp b/io2d/src/3rd-party/cairo/src/cairo-skia-surface.cpp
similarity index 100%
rename from cairo/src/cairo-skia-surface.cpp
rename to io2d/src/3rd-party/cairo/src/cairo-skia-surface.cpp
diff --git a/cairo/src/cairo-skia.h b/io2d/src/3rd-party/cairo/src/cairo-skia.h
similarity index 100%
rename from cairo/src/cairo-skia.h
rename to io2d/src/3rd-party/cairo/src/cairo-skia.h
diff --git a/cairo/src/cairo-slope-private.h b/io2d/src/3rd-party/cairo/src/cairo-slope-private.h
similarity index 100%
rename from cairo/src/cairo-slope-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-slope-private.h
diff --git a/cairo/src/cairo-slope.c b/io2d/src/3rd-party/cairo/src/cairo-slope.c
similarity index 100%
rename from cairo/src/cairo-slope.c
rename to io2d/src/3rd-party/cairo/src/cairo-slope.c
diff --git a/cairo/src/cairo-spans-compositor-private.h b/io2d/src/3rd-party/cairo/src/cairo-spans-compositor-private.h
similarity index 100%
rename from cairo/src/cairo-spans-compositor-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-spans-compositor-private.h
diff --git a/cairo/src/cairo-spans-compositor.c b/io2d/src/3rd-party/cairo/src/cairo-spans-compositor.c
similarity index 100%
rename from cairo/src/cairo-spans-compositor.c
rename to io2d/src/3rd-party/cairo/src/cairo-spans-compositor.c
diff --git a/cairo/src/cairo-spans-private.h b/io2d/src/3rd-party/cairo/src/cairo-spans-private.h
similarity index 100%
rename from cairo/src/cairo-spans-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-spans-private.h
diff --git a/cairo/src/cairo-spans.c b/io2d/src/3rd-party/cairo/src/cairo-spans.c
similarity index 100%
rename from cairo/src/cairo-spans.c
rename to io2d/src/3rd-party/cairo/src/cairo-spans.c
diff --git a/cairo/src/cairo-spline.c b/io2d/src/3rd-party/cairo/src/cairo-spline.c
similarity index 100%
rename from cairo/src/cairo-spline.c
rename to io2d/src/3rd-party/cairo/src/cairo-spline.c
diff --git a/cairo/src/cairo-stroke-dash-private.h b/io2d/src/3rd-party/cairo/src/cairo-stroke-dash-private.h
similarity index 100%
rename from cairo/src/cairo-stroke-dash-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-stroke-dash-private.h
diff --git a/cairo/src/cairo-stroke-dash.c b/io2d/src/3rd-party/cairo/src/cairo-stroke-dash.c
similarity index 100%
rename from cairo/src/cairo-stroke-dash.c
rename to io2d/src/3rd-party/cairo/src/cairo-stroke-dash.c
diff --git a/cairo/src/cairo-stroke-style.c b/io2d/src/3rd-party/cairo/src/cairo-stroke-style.c
similarity index 100%
rename from cairo/src/cairo-stroke-style.c
rename to io2d/src/3rd-party/cairo/src/cairo-stroke-style.c
diff --git a/cairo/src/cairo-surface-backend-private.h b/io2d/src/3rd-party/cairo/src/cairo-surface-backend-private.h
similarity index 100%
rename from cairo/src/cairo-surface-backend-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-surface-backend-private.h
diff --git a/cairo/src/cairo-surface-clipper-private.h b/io2d/src/3rd-party/cairo/src/cairo-surface-clipper-private.h
similarity index 100%
rename from cairo/src/cairo-surface-clipper-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-surface-clipper-private.h
diff --git a/cairo/src/cairo-surface-clipper.c b/io2d/src/3rd-party/cairo/src/cairo-surface-clipper.c
similarity index 100%
rename from cairo/src/cairo-surface-clipper.c
rename to io2d/src/3rd-party/cairo/src/cairo-surface-clipper.c
diff --git a/cairo/src/cairo-surface-fallback-private.h b/io2d/src/3rd-party/cairo/src/cairo-surface-fallback-private.h
similarity index 100%
rename from cairo/src/cairo-surface-fallback-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-surface-fallback-private.h
diff --git a/cairo/src/cairo-surface-fallback.c b/io2d/src/3rd-party/cairo/src/cairo-surface-fallback.c
similarity index 100%
rename from cairo/src/cairo-surface-fallback.c
rename to io2d/src/3rd-party/cairo/src/cairo-surface-fallback.c
diff --git a/cairo/src/cairo-surface-inline.h b/io2d/src/3rd-party/cairo/src/cairo-surface-inline.h
similarity index 100%
rename from cairo/src/cairo-surface-inline.h
rename to io2d/src/3rd-party/cairo/src/cairo-surface-inline.h
diff --git a/cairo/src/cairo-surface-observer-inline.h b/io2d/src/3rd-party/cairo/src/cairo-surface-observer-inline.h
similarity index 100%
rename from cairo/src/cairo-surface-observer-inline.h
rename to io2d/src/3rd-party/cairo/src/cairo-surface-observer-inline.h
diff --git a/cairo/src/cairo-surface-observer-private.h b/io2d/src/3rd-party/cairo/src/cairo-surface-observer-private.h
similarity index 100%
rename from cairo/src/cairo-surface-observer-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-surface-observer-private.h
diff --git a/cairo/src/cairo-surface-observer.c b/io2d/src/3rd-party/cairo/src/cairo-surface-observer.c
similarity index 100%
rename from cairo/src/cairo-surface-observer.c
rename to io2d/src/3rd-party/cairo/src/cairo-surface-observer.c
diff --git a/cairo/src/cairo-surface-offset-private.h b/io2d/src/3rd-party/cairo/src/cairo-surface-offset-private.h
similarity index 100%
rename from cairo/src/cairo-surface-offset-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-surface-offset-private.h
diff --git a/cairo/src/cairo-surface-offset.c b/io2d/src/3rd-party/cairo/src/cairo-surface-offset.c
similarity index 100%
rename from cairo/src/cairo-surface-offset.c
rename to io2d/src/3rd-party/cairo/src/cairo-surface-offset.c
diff --git a/cairo/src/cairo-surface-private.h b/io2d/src/3rd-party/cairo/src/cairo-surface-private.h
similarity index 100%
rename from cairo/src/cairo-surface-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-surface-private.h
diff --git a/cairo/src/cairo-surface-snapshot-inline.h b/io2d/src/3rd-party/cairo/src/cairo-surface-snapshot-inline.h
similarity index 100%
rename from cairo/src/cairo-surface-snapshot-inline.h
rename to io2d/src/3rd-party/cairo/src/cairo-surface-snapshot-inline.h
diff --git a/cairo/src/cairo-surface-snapshot-private.h b/io2d/src/3rd-party/cairo/src/cairo-surface-snapshot-private.h
similarity index 100%
rename from cairo/src/cairo-surface-snapshot-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-surface-snapshot-private.h
diff --git a/cairo/src/cairo-surface-snapshot.c b/io2d/src/3rd-party/cairo/src/cairo-surface-snapshot.c
similarity index 100%
rename from cairo/src/cairo-surface-snapshot.c
rename to io2d/src/3rd-party/cairo/src/cairo-surface-snapshot.c
diff --git a/cairo/src/cairo-surface-subsurface-inline.h b/io2d/src/3rd-party/cairo/src/cairo-surface-subsurface-inline.h
similarity index 100%
rename from cairo/src/cairo-surface-subsurface-inline.h
rename to io2d/src/3rd-party/cairo/src/cairo-surface-subsurface-inline.h
diff --git a/cairo/src/cairo-surface-subsurface-private.h b/io2d/src/3rd-party/cairo/src/cairo-surface-subsurface-private.h
similarity index 100%
rename from cairo/src/cairo-surface-subsurface-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-surface-subsurface-private.h
diff --git a/cairo/src/cairo-surface-subsurface.c b/io2d/src/3rd-party/cairo/src/cairo-surface-subsurface.c
similarity index 100%
rename from cairo/src/cairo-surface-subsurface.c
rename to io2d/src/3rd-party/cairo/src/cairo-surface-subsurface.c
diff --git a/cairo/src/cairo-surface-wrapper-private.h b/io2d/src/3rd-party/cairo/src/cairo-surface-wrapper-private.h
similarity index 100%
rename from cairo/src/cairo-surface-wrapper-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-surface-wrapper-private.h
diff --git a/cairo/src/cairo-surface-wrapper.c b/io2d/src/3rd-party/cairo/src/cairo-surface-wrapper.c
similarity index 100%
rename from cairo/src/cairo-surface-wrapper.c
rename to io2d/src/3rd-party/cairo/src/cairo-surface-wrapper.c
diff --git a/cairo/src/cairo-surface.c b/io2d/src/3rd-party/cairo/src/cairo-surface.c
similarity index 100%
rename from cairo/src/cairo-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-surface.c
diff --git a/cairo/src/cairo-svg-surface-private.h b/io2d/src/3rd-party/cairo/src/cairo-svg-surface-private.h
similarity index 100%
rename from cairo/src/cairo-svg-surface-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-svg-surface-private.h
diff --git a/cairo/src/cairo-svg-surface.c b/io2d/src/3rd-party/cairo/src/cairo-svg-surface.c
similarity index 100%
rename from cairo/src/cairo-svg-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-svg-surface.c
diff --git a/N3888_RefImpl/src/win32/include/cairo-svg.h b/io2d/src/3rd-party/cairo/src/cairo-svg.h
similarity index 100%
rename from N3888_RefImpl/src/win32/include/cairo-svg.h
rename to io2d/src/3rd-party/cairo/src/cairo-svg.h
diff --git a/cairo/src/cairo-tee-surface-private.h b/io2d/src/3rd-party/cairo/src/cairo-tee-surface-private.h
similarity index 100%
rename from cairo/src/cairo-tee-surface-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-tee-surface-private.h
diff --git a/cairo/src/cairo-tee-surface.c b/io2d/src/3rd-party/cairo/src/cairo-tee-surface.c
similarity index 100%
rename from cairo/src/cairo-tee-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-tee-surface.c
diff --git a/cairo/src/cairo-tee.h b/io2d/src/3rd-party/cairo/src/cairo-tee.h
similarity index 100%
rename from cairo/src/cairo-tee.h
rename to io2d/src/3rd-party/cairo/src/cairo-tee.h
diff --git a/cairo/src/cairo-time-private.h b/io2d/src/3rd-party/cairo/src/cairo-time-private.h
similarity index 100%
rename from cairo/src/cairo-time-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-time-private.h
diff --git a/cairo/src/cairo-time.c b/io2d/src/3rd-party/cairo/src/cairo-time.c
similarity index 100%
rename from cairo/src/cairo-time.c
rename to io2d/src/3rd-party/cairo/src/cairo-time.c
diff --git a/cairo/src/cairo-tor-scan-converter.c b/io2d/src/3rd-party/cairo/src/cairo-tor-scan-converter.c
similarity index 100%
rename from cairo/src/cairo-tor-scan-converter.c
rename to io2d/src/3rd-party/cairo/src/cairo-tor-scan-converter.c
diff --git a/cairo/src/cairo-tor22-scan-converter.c b/io2d/src/3rd-party/cairo/src/cairo-tor22-scan-converter.c
similarity index 100%
rename from cairo/src/cairo-tor22-scan-converter.c
rename to io2d/src/3rd-party/cairo/src/cairo-tor22-scan-converter.c
diff --git a/cairo/src/cairo-toy-font-face.c b/io2d/src/3rd-party/cairo/src/cairo-toy-font-face.c
similarity index 100%
rename from cairo/src/cairo-toy-font-face.c
rename to io2d/src/3rd-party/cairo/src/cairo-toy-font-face.c
diff --git a/cairo/src/cairo-traps-compositor.c b/io2d/src/3rd-party/cairo/src/cairo-traps-compositor.c
similarity index 100%
rename from cairo/src/cairo-traps-compositor.c
rename to io2d/src/3rd-party/cairo/src/cairo-traps-compositor.c
diff --git a/cairo/src/cairo-traps-private.h b/io2d/src/3rd-party/cairo/src/cairo-traps-private.h
similarity index 100%
rename from cairo/src/cairo-traps-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-traps-private.h
diff --git a/cairo/src/cairo-traps.c b/io2d/src/3rd-party/cairo/src/cairo-traps.c
similarity index 100%
rename from cairo/src/cairo-traps.c
rename to io2d/src/3rd-party/cairo/src/cairo-traps.c
diff --git a/cairo/src/cairo-tristrip-private.h b/io2d/src/3rd-party/cairo/src/cairo-tristrip-private.h
similarity index 100%
rename from cairo/src/cairo-tristrip-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-tristrip-private.h
diff --git a/cairo/src/cairo-tristrip.c b/io2d/src/3rd-party/cairo/src/cairo-tristrip.c
similarity index 100%
rename from cairo/src/cairo-tristrip.c
rename to io2d/src/3rd-party/cairo/src/cairo-tristrip.c
diff --git a/cairo/src/cairo-truetype-subset-private.h b/io2d/src/3rd-party/cairo/src/cairo-truetype-subset-private.h
similarity index 100%
rename from cairo/src/cairo-truetype-subset-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-truetype-subset-private.h
diff --git a/cairo/src/cairo-truetype-subset.c b/io2d/src/3rd-party/cairo/src/cairo-truetype-subset.c
similarity index 100%
rename from cairo/src/cairo-truetype-subset.c
rename to io2d/src/3rd-party/cairo/src/cairo-truetype-subset.c
diff --git a/cairo/src/cairo-type1-fallback.c b/io2d/src/3rd-party/cairo/src/cairo-type1-fallback.c
similarity index 100%
rename from cairo/src/cairo-type1-fallback.c
rename to io2d/src/3rd-party/cairo/src/cairo-type1-fallback.c
diff --git a/cairo/src/cairo-type1-glyph-names.c b/io2d/src/3rd-party/cairo/src/cairo-type1-glyph-names.c
similarity index 100%
rename from cairo/src/cairo-type1-glyph-names.c
rename to io2d/src/3rd-party/cairo/src/cairo-type1-glyph-names.c
diff --git a/cairo/src/cairo-type1-private.h b/io2d/src/3rd-party/cairo/src/cairo-type1-private.h
similarity index 100%
rename from cairo/src/cairo-type1-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-type1-private.h
diff --git a/cairo/src/cairo-type1-subset.c b/io2d/src/3rd-party/cairo/src/cairo-type1-subset.c
similarity index 100%
rename from cairo/src/cairo-type1-subset.c
rename to io2d/src/3rd-party/cairo/src/cairo-type1-subset.c
diff --git a/cairo/src/cairo-type3-glyph-surface-private.h b/io2d/src/3rd-party/cairo/src/cairo-type3-glyph-surface-private.h
similarity index 100%
rename from cairo/src/cairo-type3-glyph-surface-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-type3-glyph-surface-private.h
diff --git a/cairo/src/cairo-type3-glyph-surface.c b/io2d/src/3rd-party/cairo/src/cairo-type3-glyph-surface.c
similarity index 100%
rename from cairo/src/cairo-type3-glyph-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-type3-glyph-surface.c
diff --git a/cairo/src/cairo-types-private.h b/io2d/src/3rd-party/cairo/src/cairo-types-private.h
similarity index 100%
rename from cairo/src/cairo-types-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-types-private.h
diff --git a/cairo/src/cairo-unicode.c b/io2d/src/3rd-party/cairo/src/cairo-unicode.c
similarity index 100%
rename from cairo/src/cairo-unicode.c
rename to io2d/src/3rd-party/cairo/src/cairo-unicode.c
diff --git a/cairo/src/cairo-uninstalled.pc.in b/io2d/src/3rd-party/cairo/src/cairo-uninstalled.pc.in
similarity index 100%
rename from cairo/src/cairo-uninstalled.pc.in
rename to io2d/src/3rd-party/cairo/src/cairo-uninstalled.pc.in
diff --git a/cairo/src/cairo-user-font-private.h b/io2d/src/3rd-party/cairo/src/cairo-user-font-private.h
similarity index 100%
rename from cairo/src/cairo-user-font-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-user-font-private.h
diff --git a/cairo/src/cairo-user-font.c b/io2d/src/3rd-party/cairo/src/cairo-user-font.c
similarity index 100%
rename from cairo/src/cairo-user-font.c
rename to io2d/src/3rd-party/cairo/src/cairo-user-font.c
diff --git a/cairo/src/cairo-version.c b/io2d/src/3rd-party/cairo/src/cairo-version.c
similarity index 100%
rename from cairo/src/cairo-version.c
rename to io2d/src/3rd-party/cairo/src/cairo-version.c
diff --git a/cairo/src/cairo-version.h b/io2d/src/3rd-party/cairo/src/cairo-version.h
similarity index 100%
rename from cairo/src/cairo-version.h
rename to io2d/src/3rd-party/cairo/src/cairo-version.h
diff --git a/cairo/src/cairo-vg-surface.c b/io2d/src/3rd-party/cairo/src/cairo-vg-surface.c
similarity index 100%
rename from cairo/src/cairo-vg-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-vg-surface.c
diff --git a/cairo/src/cairo-vg.h b/io2d/src/3rd-party/cairo/src/cairo-vg.h
similarity index 100%
rename from cairo/src/cairo-vg.h
rename to io2d/src/3rd-party/cairo/src/cairo-vg.h
diff --git a/cairo/src/cairo-wgl-context.c b/io2d/src/3rd-party/cairo/src/cairo-wgl-context.c
similarity index 100%
rename from cairo/src/cairo-wgl-context.c
rename to io2d/src/3rd-party/cairo/src/cairo-wgl-context.c
diff --git a/cairo/src/cairo-wideint-private.h b/io2d/src/3rd-party/cairo/src/cairo-wideint-private.h
similarity index 100%
rename from cairo/src/cairo-wideint-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-wideint-private.h
diff --git a/cairo/src/cairo-wideint-type-private.h b/io2d/src/3rd-party/cairo/src/cairo-wideint-type-private.h
similarity index 100%
rename from cairo/src/cairo-wideint-type-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-wideint-type-private.h
diff --git a/cairo/src/cairo-wideint.c b/io2d/src/3rd-party/cairo/src/cairo-wideint.c
similarity index 100%
rename from cairo/src/cairo-wideint.c
rename to io2d/src/3rd-party/cairo/src/cairo-wideint.c
diff --git a/N3888_RefImpl/src/win32/include/cairo-win32.h b/io2d/src/3rd-party/cairo/src/cairo-win32.h
similarity index 100%
rename from N3888_RefImpl/src/win32/include/cairo-win32.h
rename to io2d/src/3rd-party/cairo/src/cairo-win32.h
diff --git a/cairo/src/cairo-xcb-connection-core.c b/io2d/src/3rd-party/cairo/src/cairo-xcb-connection-core.c
similarity index 100%
rename from cairo/src/cairo-xcb-connection-core.c
rename to io2d/src/3rd-party/cairo/src/cairo-xcb-connection-core.c
diff --git a/cairo/src/cairo-xcb-connection-render.c b/io2d/src/3rd-party/cairo/src/cairo-xcb-connection-render.c
similarity index 100%
rename from cairo/src/cairo-xcb-connection-render.c
rename to io2d/src/3rd-party/cairo/src/cairo-xcb-connection-render.c
diff --git a/cairo/src/cairo-xcb-connection-shm.c b/io2d/src/3rd-party/cairo/src/cairo-xcb-connection-shm.c
similarity index 100%
rename from cairo/src/cairo-xcb-connection-shm.c
rename to io2d/src/3rd-party/cairo/src/cairo-xcb-connection-shm.c
diff --git a/cairo/src/cairo-xcb-connection.c b/io2d/src/3rd-party/cairo/src/cairo-xcb-connection.c
similarity index 100%
rename from cairo/src/cairo-xcb-connection.c
rename to io2d/src/3rd-party/cairo/src/cairo-xcb-connection.c
diff --git a/cairo/src/cairo-xcb-private.h b/io2d/src/3rd-party/cairo/src/cairo-xcb-private.h
similarity index 100%
rename from cairo/src/cairo-xcb-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-xcb-private.h
diff --git a/cairo/src/cairo-xcb-screen.c b/io2d/src/3rd-party/cairo/src/cairo-xcb-screen.c
similarity index 100%
rename from cairo/src/cairo-xcb-screen.c
rename to io2d/src/3rd-party/cairo/src/cairo-xcb-screen.c
diff --git a/cairo/src/cairo-xcb-shm.c b/io2d/src/3rd-party/cairo/src/cairo-xcb-shm.c
similarity index 100%
rename from cairo/src/cairo-xcb-shm.c
rename to io2d/src/3rd-party/cairo/src/cairo-xcb-shm.c
diff --git a/cairo/src/cairo-xcb-surface-core.c b/io2d/src/3rd-party/cairo/src/cairo-xcb-surface-core.c
similarity index 100%
rename from cairo/src/cairo-xcb-surface-core.c
rename to io2d/src/3rd-party/cairo/src/cairo-xcb-surface-core.c
diff --git a/cairo/src/cairo-xcb-surface-render.c b/io2d/src/3rd-party/cairo/src/cairo-xcb-surface-render.c
similarity index 100%
rename from cairo/src/cairo-xcb-surface-render.c
rename to io2d/src/3rd-party/cairo/src/cairo-xcb-surface-render.c
diff --git a/cairo/src/cairo-xcb-surface.c b/io2d/src/3rd-party/cairo/src/cairo-xcb-surface.c
similarity index 100%
rename from cairo/src/cairo-xcb-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-xcb-surface.c
diff --git a/cairo/src/cairo-xcb.h b/io2d/src/3rd-party/cairo/src/cairo-xcb.h
similarity index 100%
rename from cairo/src/cairo-xcb.h
rename to io2d/src/3rd-party/cairo/src/cairo-xcb.h
diff --git a/cairo/src/cairo-xlib-core-compositor.c b/io2d/src/3rd-party/cairo/src/cairo-xlib-core-compositor.c
similarity index 100%
rename from cairo/src/cairo-xlib-core-compositor.c
rename to io2d/src/3rd-party/cairo/src/cairo-xlib-core-compositor.c
diff --git a/cairo/src/cairo-xlib-display.c b/io2d/src/3rd-party/cairo/src/cairo-xlib-display.c
similarity index 100%
rename from cairo/src/cairo-xlib-display.c
rename to io2d/src/3rd-party/cairo/src/cairo-xlib-display.c
diff --git a/cairo/src/cairo-xlib-fallback-compositor.c b/io2d/src/3rd-party/cairo/src/cairo-xlib-fallback-compositor.c
similarity index 100%
rename from cairo/src/cairo-xlib-fallback-compositor.c
rename to io2d/src/3rd-party/cairo/src/cairo-xlib-fallback-compositor.c
diff --git a/cairo/src/cairo-xlib-private.h b/io2d/src/3rd-party/cairo/src/cairo-xlib-private.h
similarity index 100%
rename from cairo/src/cairo-xlib-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-xlib-private.h
diff --git a/cairo/src/cairo-xlib-render-compositor.c b/io2d/src/3rd-party/cairo/src/cairo-xlib-render-compositor.c
similarity index 100%
rename from cairo/src/cairo-xlib-render-compositor.c
rename to io2d/src/3rd-party/cairo/src/cairo-xlib-render-compositor.c
diff --git a/cairo/src/cairo-xlib-screen.c b/io2d/src/3rd-party/cairo/src/cairo-xlib-screen.c
similarity index 100%
rename from cairo/src/cairo-xlib-screen.c
rename to io2d/src/3rd-party/cairo/src/cairo-xlib-screen.c
diff --git a/cairo/src/cairo-xlib-source.c b/io2d/src/3rd-party/cairo/src/cairo-xlib-source.c
similarity index 100%
rename from cairo/src/cairo-xlib-source.c
rename to io2d/src/3rd-party/cairo/src/cairo-xlib-source.c
diff --git a/cairo/src/cairo-xlib-surface-private.h b/io2d/src/3rd-party/cairo/src/cairo-xlib-surface-private.h
similarity index 100%
rename from cairo/src/cairo-xlib-surface-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-xlib-surface-private.h
diff --git a/cairo/src/cairo-xlib-surface-shm.c b/io2d/src/3rd-party/cairo/src/cairo-xlib-surface-shm.c
similarity index 100%
rename from cairo/src/cairo-xlib-surface-shm.c
rename to io2d/src/3rd-party/cairo/src/cairo-xlib-surface-shm.c
diff --git a/cairo/src/cairo-xlib-surface.c b/io2d/src/3rd-party/cairo/src/cairo-xlib-surface.c
similarity index 100%
rename from cairo/src/cairo-xlib-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-xlib-surface.c
diff --git a/cairo/src/cairo-xlib-visual.c b/io2d/src/3rd-party/cairo/src/cairo-xlib-visual.c
similarity index 100%
rename from cairo/src/cairo-xlib-visual.c
rename to io2d/src/3rd-party/cairo/src/cairo-xlib-visual.c
diff --git a/cairo/src/cairo-xlib-xcb-surface.c b/io2d/src/3rd-party/cairo/src/cairo-xlib-xcb-surface.c
similarity index 100%
rename from cairo/src/cairo-xlib-xcb-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-xlib-xcb-surface.c
diff --git a/cairo/src/cairo-xlib-xrender-private.h b/io2d/src/3rd-party/cairo/src/cairo-xlib-xrender-private.h
similarity index 100%
rename from cairo/src/cairo-xlib-xrender-private.h
rename to io2d/src/3rd-party/cairo/src/cairo-xlib-xrender-private.h
diff --git a/cairo/src/cairo-xlib-xrender.h b/io2d/src/3rd-party/cairo/src/cairo-xlib-xrender.h
similarity index 100%
rename from cairo/src/cairo-xlib-xrender.h
rename to io2d/src/3rd-party/cairo/src/cairo-xlib-xrender.h
diff --git a/cairo/src/cairo-xlib.h b/io2d/src/3rd-party/cairo/src/cairo-xlib.h
similarity index 100%
rename from cairo/src/cairo-xlib.h
rename to io2d/src/3rd-party/cairo/src/cairo-xlib.h
diff --git a/cairo/src/cairo-xml-surface.c b/io2d/src/3rd-party/cairo/src/cairo-xml-surface.c
similarity index 100%
rename from cairo/src/cairo-xml-surface.c
rename to io2d/src/3rd-party/cairo/src/cairo-xml-surface.c
diff --git a/cairo/src/cairo-xml.h b/io2d/src/3rd-party/cairo/src/cairo-xml.h
similarity index 100%
rename from cairo/src/cairo-xml.h
rename to io2d/src/3rd-party/cairo/src/cairo-xml.h
diff --git a/cairo/src/cairo.c b/io2d/src/3rd-party/cairo/src/cairo.c
similarity index 100%
rename from cairo/src/cairo.c
rename to io2d/src/3rd-party/cairo/src/cairo.c
diff --git a/N3888_RefImpl/src/win32/include/cairo.h b/io2d/src/3rd-party/cairo/src/cairo.h
similarity index 100%
rename from N3888_RefImpl/src/win32/include/cairo.h
rename to io2d/src/3rd-party/cairo/src/cairo.h
diff --git a/cairo/src/cairo.pc.in b/io2d/src/3rd-party/cairo/src/cairo.pc.in
similarity index 100%
rename from cairo/src/cairo.pc.in
rename to io2d/src/3rd-party/cairo/src/cairo.pc.in
diff --git a/cairo/src/cairoint.h b/io2d/src/3rd-party/cairo/src/cairoint.h
similarity index 100%
rename from cairo/src/cairoint.h
rename to io2d/src/3rd-party/cairo/src/cairoint.h
diff --git a/cairo/src/check-def.sh b/io2d/src/3rd-party/cairo/src/check-def.sh
similarity index 100%
rename from cairo/src/check-def.sh
rename to io2d/src/3rd-party/cairo/src/check-def.sh
diff --git a/cairo/src/check-doc-syntax.awk b/io2d/src/3rd-party/cairo/src/check-doc-syntax.awk
similarity index 100%
rename from cairo/src/check-doc-syntax.awk
rename to io2d/src/3rd-party/cairo/src/check-doc-syntax.awk
diff --git a/cairo/src/check-doc-syntax.sh b/io2d/src/3rd-party/cairo/src/check-doc-syntax.sh
similarity index 100%
rename from cairo/src/check-doc-syntax.sh
rename to io2d/src/3rd-party/cairo/src/check-doc-syntax.sh
diff --git a/cairo/src/check-has-hidden-symbols.c b/io2d/src/3rd-party/cairo/src/check-has-hidden-symbols.c
similarity index 100%
rename from cairo/src/check-has-hidden-symbols.c
rename to io2d/src/3rd-party/cairo/src/check-has-hidden-symbols.c
diff --git a/cairo/src/check-headers.sh b/io2d/src/3rd-party/cairo/src/check-headers.sh
similarity index 100%
rename from cairo/src/check-headers.sh
rename to io2d/src/3rd-party/cairo/src/check-headers.sh
diff --git a/cairo/src/check-link.c b/io2d/src/3rd-party/cairo/src/check-link.c
similarity index 100%
rename from cairo/src/check-link.c
rename to io2d/src/3rd-party/cairo/src/check-link.c
diff --git a/cairo/src/check-plt.sh b/io2d/src/3rd-party/cairo/src/check-plt.sh
similarity index 100%
rename from cairo/src/check-plt.sh
rename to io2d/src/3rd-party/cairo/src/check-plt.sh
diff --git a/cairo/src/check-preprocessor-syntax.sh b/io2d/src/3rd-party/cairo/src/check-preprocessor-syntax.sh
similarity index 100%
rename from cairo/src/check-preprocessor-syntax.sh
rename to io2d/src/3rd-party/cairo/src/check-preprocessor-syntax.sh
diff --git a/cairo/src/drm/cairo-drm-bo.c b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-bo.c
similarity index 100%
rename from cairo/src/drm/cairo-drm-bo.c
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-bo.c
diff --git a/cairo/src/drm/cairo-drm-gallium-surface.c b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-gallium-surface.c
similarity index 100%
rename from cairo/src/drm/cairo-drm-gallium-surface.c
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-gallium-surface.c
diff --git a/cairo/src/drm/cairo-drm-i915-glyphs.c b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-i915-glyphs.c
similarity index 100%
rename from cairo/src/drm/cairo-drm-i915-glyphs.c
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-i915-glyphs.c
diff --git a/cairo/src/drm/cairo-drm-i915-private.h b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-i915-private.h
similarity index 100%
rename from cairo/src/drm/cairo-drm-i915-private.h
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-i915-private.h
diff --git a/cairo/src/drm/cairo-drm-i915-shader.c b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-i915-shader.c
similarity index 100%
rename from cairo/src/drm/cairo-drm-i915-shader.c
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-i915-shader.c
diff --git a/cairo/src/drm/cairo-drm-i915-spans.c b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-i915-spans.c
similarity index 100%
rename from cairo/src/drm/cairo-drm-i915-spans.c
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-i915-spans.c
diff --git a/cairo/src/drm/cairo-drm-i915-surface.c b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-i915-surface.c
similarity index 100%
rename from cairo/src/drm/cairo-drm-i915-surface.c
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-i915-surface.c
diff --git a/cairo/src/drm/cairo-drm-i965-glyphs.c b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-i965-glyphs.c
similarity index 100%
rename from cairo/src/drm/cairo-drm-i965-glyphs.c
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-i965-glyphs.c
diff --git a/cairo/src/drm/cairo-drm-i965-private.h b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-i965-private.h
similarity index 100%
rename from cairo/src/drm/cairo-drm-i965-private.h
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-i965-private.h
diff --git a/cairo/src/drm/cairo-drm-i965-shader.c b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-i965-shader.c
similarity index 100%
rename from cairo/src/drm/cairo-drm-i965-shader.c
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-i965-shader.c
diff --git a/cairo/src/drm/cairo-drm-i965-spans.c b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-i965-spans.c
similarity index 100%
rename from cairo/src/drm/cairo-drm-i965-spans.c
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-i965-spans.c
diff --git a/cairo/src/drm/cairo-drm-i965-surface.c b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-i965-surface.c
similarity index 100%
rename from cairo/src/drm/cairo-drm-i965-surface.c
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-i965-surface.c
diff --git a/cairo/src/drm/cairo-drm-intel-brw-defines.h b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-brw-defines.h
similarity index 100%
rename from cairo/src/drm/cairo-drm-intel-brw-defines.h
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-brw-defines.h
diff --git a/cairo/src/drm/cairo-drm-intel-brw-eu-emit.c b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-brw-eu-emit.c
similarity index 100%
rename from cairo/src/drm/cairo-drm-intel-brw-eu-emit.c
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-brw-eu-emit.c
diff --git a/cairo/src/drm/cairo-drm-intel-brw-eu-util.c b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-brw-eu-util.c
similarity index 100%
rename from cairo/src/drm/cairo-drm-intel-brw-eu-util.c
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-brw-eu-util.c
diff --git a/cairo/src/drm/cairo-drm-intel-brw-eu.c b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-brw-eu.c
similarity index 100%
rename from cairo/src/drm/cairo-drm-intel-brw-eu.c
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-brw-eu.c
diff --git a/cairo/src/drm/cairo-drm-intel-brw-eu.h b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-brw-eu.h
similarity index 100%
rename from cairo/src/drm/cairo-drm-intel-brw-eu.h
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-brw-eu.h
diff --git a/cairo/src/drm/cairo-drm-intel-brw-structs.h b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-brw-structs.h
similarity index 100%
rename from cairo/src/drm/cairo-drm-intel-brw-structs.h
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-brw-structs.h
diff --git a/cairo/src/drm/cairo-drm-intel-command-private.h b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-command-private.h
similarity index 100%
rename from cairo/src/drm/cairo-drm-intel-command-private.h
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-command-private.h
diff --git a/cairo/src/drm/cairo-drm-intel-debug.c b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-debug.c
similarity index 100%
rename from cairo/src/drm/cairo-drm-intel-debug.c
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-debug.c
diff --git a/cairo/src/drm/cairo-drm-intel-ioctl-private.h b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-ioctl-private.h
similarity index 100%
rename from cairo/src/drm/cairo-drm-intel-ioctl-private.h
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-ioctl-private.h
diff --git a/cairo/src/drm/cairo-drm-intel-private.h b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-private.h
similarity index 100%
rename from cairo/src/drm/cairo-drm-intel-private.h
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-private.h
diff --git a/cairo/src/drm/cairo-drm-intel-surface.c b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-surface.c
similarity index 100%
rename from cairo/src/drm/cairo-drm-intel-surface.c
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel-surface.c
diff --git a/cairo/src/drm/cairo-drm-intel.c b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel.c
similarity index 100%
rename from cairo/src/drm/cairo-drm-intel.c
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-intel.c
diff --git a/cairo/src/drm/cairo-drm-ioctl-private.h b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-ioctl-private.h
similarity index 100%
rename from cairo/src/drm/cairo-drm-ioctl-private.h
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-ioctl-private.h
diff --git a/cairo/src/drm/cairo-drm-private.h b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-private.h
similarity index 100%
rename from cairo/src/drm/cairo-drm-private.h
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-private.h
diff --git a/cairo/src/drm/cairo-drm-radeon-private.h b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-radeon-private.h
similarity index 100%
rename from cairo/src/drm/cairo-drm-radeon-private.h
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-radeon-private.h
diff --git a/cairo/src/drm/cairo-drm-radeon-surface.c b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-radeon-surface.c
similarity index 100%
rename from cairo/src/drm/cairo-drm-radeon-surface.c
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-radeon-surface.c
diff --git a/cairo/src/drm/cairo-drm-radeon.c b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-radeon.c
similarity index 100%
rename from cairo/src/drm/cairo-drm-radeon.c
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-radeon.c
diff --git a/cairo/src/drm/cairo-drm-surface.c b/io2d/src/3rd-party/cairo/src/drm/cairo-drm-surface.c
similarity index 100%
rename from cairo/src/drm/cairo-drm-surface.c
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm-surface.c
diff --git a/cairo/src/drm/cairo-drm.c b/io2d/src/3rd-party/cairo/src/drm/cairo-drm.c
similarity index 100%
rename from cairo/src/drm/cairo-drm.c
rename to io2d/src/3rd-party/cairo/src/drm/cairo-drm.c
diff --git a/cairo/src/skia/cairo-skia-context.cpp b/io2d/src/3rd-party/cairo/src/skia/cairo-skia-context.cpp
similarity index 100%
rename from cairo/src/skia/cairo-skia-context.cpp
rename to io2d/src/3rd-party/cairo/src/skia/cairo-skia-context.cpp
diff --git a/cairo/src/skia/cairo-skia-private.h b/io2d/src/3rd-party/cairo/src/skia/cairo-skia-private.h
similarity index 100%
rename from cairo/src/skia/cairo-skia-private.h
rename to io2d/src/3rd-party/cairo/src/skia/cairo-skia-private.h
diff --git a/cairo/src/skia/cairo-skia-surface.cpp b/io2d/src/3rd-party/cairo/src/skia/cairo-skia-surface.cpp
similarity index 100%
rename from cairo/src/skia/cairo-skia-surface.cpp
rename to io2d/src/3rd-party/cairo/src/skia/cairo-skia-surface.cpp
diff --git a/cairo/src/test-base-compositor-surface.c b/io2d/src/3rd-party/cairo/src/test-base-compositor-surface.c
similarity index 100%
rename from cairo/src/test-base-compositor-surface.c
rename to io2d/src/3rd-party/cairo/src/test-base-compositor-surface.c
diff --git a/cairo/src/test-compositor-surface-private.h b/io2d/src/3rd-party/cairo/src/test-compositor-surface-private.h
similarity index 100%
rename from cairo/src/test-compositor-surface-private.h
rename to io2d/src/3rd-party/cairo/src/test-compositor-surface-private.h
diff --git a/cairo/src/test-compositor-surface.c b/io2d/src/3rd-party/cairo/src/test-compositor-surface.c
similarity index 100%
rename from cairo/src/test-compositor-surface.c
rename to io2d/src/3rd-party/cairo/src/test-compositor-surface.c
diff --git a/cairo/src/test-compositor-surface.h b/io2d/src/3rd-party/cairo/src/test-compositor-surface.h
similarity index 100%
rename from cairo/src/test-compositor-surface.h
rename to io2d/src/3rd-party/cairo/src/test-compositor-surface.h
diff --git a/cairo/src/test-null-compositor-surface.c b/io2d/src/3rd-party/cairo/src/test-null-compositor-surface.c
similarity index 100%
rename from cairo/src/test-null-compositor-surface.c
rename to io2d/src/3rd-party/cairo/src/test-null-compositor-surface.c
diff --git a/cairo/src/test-null-compositor-surface.h b/io2d/src/3rd-party/cairo/src/test-null-compositor-surface.h
similarity index 100%
rename from cairo/src/test-null-compositor-surface.h
rename to io2d/src/3rd-party/cairo/src/test-null-compositor-surface.h
diff --git a/cairo/src/test-paginated-surface.c b/io2d/src/3rd-party/cairo/src/test-paginated-surface.c
similarity index 100%
rename from cairo/src/test-paginated-surface.c
rename to io2d/src/3rd-party/cairo/src/test-paginated-surface.c
diff --git a/cairo/src/test-paginated-surface.h b/io2d/src/3rd-party/cairo/src/test-paginated-surface.h
similarity index 100%
rename from cairo/src/test-paginated-surface.h
rename to io2d/src/3rd-party/cairo/src/test-paginated-surface.h
diff --git a/cairo/src/win32/cairo-win32-debug.c b/io2d/src/3rd-party/cairo/src/win32/cairo-win32-debug.c
similarity index 100%
rename from cairo/src/win32/cairo-win32-debug.c
rename to io2d/src/3rd-party/cairo/src/win32/cairo-win32-debug.c
diff --git a/cairo/src/win32/cairo-win32-device.c b/io2d/src/3rd-party/cairo/src/win32/cairo-win32-device.c
similarity index 100%
rename from cairo/src/win32/cairo-win32-device.c
rename to io2d/src/3rd-party/cairo/src/win32/cairo-win32-device.c
diff --git a/cairo/src/win32/cairo-win32-display-surface.c b/io2d/src/3rd-party/cairo/src/win32/cairo-win32-display-surface.c
similarity index 100%
rename from cairo/src/win32/cairo-win32-display-surface.c
rename to io2d/src/3rd-party/cairo/src/win32/cairo-win32-display-surface.c
diff --git a/cairo/src/win32/cairo-win32-font.c b/io2d/src/3rd-party/cairo/src/win32/cairo-win32-font.c
similarity index 100%
rename from cairo/src/win32/cairo-win32-font.c
rename to io2d/src/3rd-party/cairo/src/win32/cairo-win32-font.c
diff --git a/cairo/src/win32/cairo-win32-gdi-compositor.c b/io2d/src/3rd-party/cairo/src/win32/cairo-win32-gdi-compositor.c
similarity index 100%
rename from cairo/src/win32/cairo-win32-gdi-compositor.c
rename to io2d/src/3rd-party/cairo/src/win32/cairo-win32-gdi-compositor.c
diff --git a/cairo/src/win32/cairo-win32-printing-surface.c b/io2d/src/3rd-party/cairo/src/win32/cairo-win32-printing-surface.c
similarity index 100%
rename from cairo/src/win32/cairo-win32-printing-surface.c
rename to io2d/src/3rd-party/cairo/src/win32/cairo-win32-printing-surface.c
diff --git a/cairo/src/win32/cairo-win32-private.h b/io2d/src/3rd-party/cairo/src/win32/cairo-win32-private.h
similarity index 100%
rename from cairo/src/win32/cairo-win32-private.h
rename to io2d/src/3rd-party/cairo/src/win32/cairo-win32-private.h
diff --git a/cairo/src/win32/cairo-win32-surface.c b/io2d/src/3rd-party/cairo/src/win32/cairo-win32-surface.c
similarity index 100%
rename from cairo/src/win32/cairo-win32-surface.c
rename to io2d/src/3rd-party/cairo/src/win32/cairo-win32-surface.c
diff --git a/cairo/src/win32/cairo-win32-system.c b/io2d/src/3rd-party/cairo/src/win32/cairo-win32-system.c
similarity index 100%
rename from cairo/src/win32/cairo-win32-system.c
rename to io2d/src/3rd-party/cairo/src/win32/cairo-win32-system.c
diff --git a/cairo/test/.gitignore b/io2d/src/3rd-party/cairo/test/.gitignore
similarity index 100%
rename from cairo/test/.gitignore
rename to io2d/src/3rd-party/cairo/test/.gitignore
diff --git a/cairo/test/.valgrind-suppressions b/io2d/src/3rd-party/cairo/test/.valgrind-suppressions
similarity index 100%
rename from cairo/test/.valgrind-suppressions
rename to io2d/src/3rd-party/cairo/test/.valgrind-suppressions
diff --git a/cairo/test/6x13.pcf b/io2d/src/3rd-party/cairo/test/6x13.pcf
similarity index 100%
rename from cairo/test/6x13.pcf
rename to io2d/src/3rd-party/cairo/test/6x13.pcf
diff --git a/cairo/test/COPYING b/io2d/src/3rd-party/cairo/test/COPYING
similarity index 100%
rename from cairo/test/COPYING
rename to io2d/src/3rd-party/cairo/test/COPYING
diff --git a/cairo/test/Makefile.am b/io2d/src/3rd-party/cairo/test/Makefile.am
similarity index 100%
rename from cairo/test/Makefile.am
rename to io2d/src/3rd-party/cairo/test/Makefile.am
diff --git a/cairo/test/Makefile.sources b/io2d/src/3rd-party/cairo/test/Makefile.sources
similarity index 100%
rename from cairo/test/Makefile.sources
rename to io2d/src/3rd-party/cairo/test/Makefile.sources
diff --git a/cairo/test/Makefile.win32 b/io2d/src/3rd-party/cairo/test/Makefile.win32
similarity index 100%
rename from cairo/test/Makefile.win32
rename to io2d/src/3rd-party/cairo/test/Makefile.win32
diff --git a/cairo/test/README b/io2d/src/3rd-party/cairo/test/README
similarity index 100%
rename from cairo/test/README
rename to io2d/src/3rd-party/cairo/test/README
diff --git a/cairo/test/a1-bug.c b/io2d/src/3rd-party/cairo/test/a1-bug.c
similarity index 100%
rename from cairo/test/a1-bug.c
rename to io2d/src/3rd-party/cairo/test/a1-bug.c
diff --git a/cairo/test/a1-clip.c b/io2d/src/3rd-party/cairo/test/a1-clip.c
similarity index 100%
rename from cairo/test/a1-clip.c
rename to io2d/src/3rd-party/cairo/test/a1-clip.c
diff --git a/cairo/test/a1-fill.c b/io2d/src/3rd-party/cairo/test/a1-fill.c
similarity index 100%
rename from cairo/test/a1-fill.c
rename to io2d/src/3rd-party/cairo/test/a1-fill.c
diff --git a/cairo/test/a1-image-sample.c b/io2d/src/3rd-party/cairo/test/a1-image-sample.c
similarity index 100%
rename from cairo/test/a1-image-sample.c
rename to io2d/src/3rd-party/cairo/test/a1-image-sample.c
diff --git a/cairo/test/a1-mask-sample.c b/io2d/src/3rd-party/cairo/test/a1-mask-sample.c
similarity index 100%
rename from cairo/test/a1-mask-sample.c
rename to io2d/src/3rd-party/cairo/test/a1-mask-sample.c
diff --git a/cairo/test/a1-mask.c b/io2d/src/3rd-party/cairo/test/a1-mask.c
similarity index 100%
rename from cairo/test/a1-mask.c
rename to io2d/src/3rd-party/cairo/test/a1-mask.c
diff --git a/cairo/test/a1-rasterisation.c b/io2d/src/3rd-party/cairo/test/a1-rasterisation.c
similarity index 100%
rename from cairo/test/a1-rasterisation.c
rename to io2d/src/3rd-party/cairo/test/a1-rasterisation.c
diff --git a/cairo/test/a1-sample.c b/io2d/src/3rd-party/cairo/test/a1-sample.c
similarity index 100%
rename from cairo/test/a1-sample.c
rename to io2d/src/3rd-party/cairo/test/a1-sample.c
diff --git a/cairo/test/a1-traps-sample.c b/io2d/src/3rd-party/cairo/test/a1-traps-sample.c
similarity index 100%
rename from cairo/test/a1-traps-sample.c
rename to io2d/src/3rd-party/cairo/test/a1-traps-sample.c
diff --git a/cairo/test/a8-clear.c b/io2d/src/3rd-party/cairo/test/a8-clear.c
similarity index 100%
rename from cairo/test/a8-clear.c
rename to io2d/src/3rd-party/cairo/test/a8-clear.c
diff --git a/cairo/test/a8-mask.c b/io2d/src/3rd-party/cairo/test/a8-mask.c
similarity index 100%
rename from cairo/test/a8-mask.c
rename to io2d/src/3rd-party/cairo/test/a8-mask.c
diff --git a/cairo/test/aliasing.c b/io2d/src/3rd-party/cairo/test/aliasing.c
similarity index 100%
rename from cairo/test/aliasing.c
rename to io2d/src/3rd-party/cairo/test/aliasing.c
diff --git a/cairo/test/alpha-similar.c b/io2d/src/3rd-party/cairo/test/alpha-similar.c
similarity index 100%
rename from cairo/test/alpha-similar.c
rename to io2d/src/3rd-party/cairo/test/alpha-similar.c
diff --git a/cairo/test/any2ppm.c b/io2d/src/3rd-party/cairo/test/any2ppm.c
similarity index 100%
rename from cairo/test/any2ppm.c
rename to io2d/src/3rd-party/cairo/test/any2ppm.c
diff --git a/cairo/test/api-special-cases.c b/io2d/src/3rd-party/cairo/test/api-special-cases.c
similarity index 100%
rename from cairo/test/api-special-cases.c
rename to io2d/src/3rd-party/cairo/test/api-special-cases.c
diff --git a/cairo/test/arc-direction.c b/io2d/src/3rd-party/cairo/test/arc-direction.c
similarity index 100%
rename from cairo/test/arc-direction.c
rename to io2d/src/3rd-party/cairo/test/arc-direction.c
diff --git a/cairo/test/arc-infinite-loop.c b/io2d/src/3rd-party/cairo/test/arc-infinite-loop.c
similarity index 100%
rename from cairo/test/arc-infinite-loop.c
rename to io2d/src/3rd-party/cairo/test/arc-infinite-loop.c
diff --git a/cairo/test/arc-looping-dash.c b/io2d/src/3rd-party/cairo/test/arc-looping-dash.c
similarity index 100%
rename from cairo/test/arc-looping-dash.c
rename to io2d/src/3rd-party/cairo/test/arc-looping-dash.c
diff --git a/cairo/test/big-empty-box.c b/io2d/src/3rd-party/cairo/test/big-empty-box.c
similarity index 100%
rename from cairo/test/big-empty-box.c
rename to io2d/src/3rd-party/cairo/test/big-empty-box.c
diff --git a/cairo/test/big-empty-triangle.c b/io2d/src/3rd-party/cairo/test/big-empty-triangle.c
similarity index 100%
rename from cairo/test/big-empty-triangle.c
rename to io2d/src/3rd-party/cairo/test/big-empty-triangle.c
diff --git a/cairo/test/big-line.c b/io2d/src/3rd-party/cairo/test/big-line.c
similarity index 100%
rename from cairo/test/big-line.c
rename to io2d/src/3rd-party/cairo/test/big-line.c
diff --git a/cairo/test/big-little-box.c b/io2d/src/3rd-party/cairo/test/big-little-box.c
similarity index 100%
rename from cairo/test/big-little-box.c
rename to io2d/src/3rd-party/cairo/test/big-little-box.c
diff --git a/cairo/test/big-little-triangle.c b/io2d/src/3rd-party/cairo/test/big-little-triangle.c
similarity index 100%
rename from cairo/test/big-little-triangle.c
rename to io2d/src/3rd-party/cairo/test/big-little-triangle.c
diff --git a/cairo/test/big-trap.c b/io2d/src/3rd-party/cairo/test/big-trap.c
similarity index 100%
rename from cairo/test/big-trap.c
rename to io2d/src/3rd-party/cairo/test/big-trap.c
diff --git a/cairo/test/bilevel-image.c b/io2d/src/3rd-party/cairo/test/bilevel-image.c
similarity index 100%
rename from cairo/test/bilevel-image.c
rename to io2d/src/3rd-party/cairo/test/bilevel-image.c
diff --git a/cairo/test/bitmap-font.c b/io2d/src/3rd-party/cairo/test/bitmap-font.c
similarity index 100%
rename from cairo/test/bitmap-font.c
rename to io2d/src/3rd-party/cairo/test/bitmap-font.c
diff --git a/cairo/test/buffer-diff.c b/io2d/src/3rd-party/cairo/test/buffer-diff.c
similarity index 100%
rename from cairo/test/buffer-diff.c
rename to io2d/src/3rd-party/cairo/test/buffer-diff.c
diff --git a/cairo/test/buffer-diff.h b/io2d/src/3rd-party/cairo/test/buffer-diff.h
similarity index 100%
rename from cairo/test/buffer-diff.h
rename to io2d/src/3rd-party/cairo/test/buffer-diff.h
diff --git a/cairo/test/bug-40410.c b/io2d/src/3rd-party/cairo/test/bug-40410.c
similarity index 100%
rename from cairo/test/bug-40410.c
rename to io2d/src/3rd-party/cairo/test/bug-40410.c
diff --git a/cairo/test/bug-51910.c b/io2d/src/3rd-party/cairo/test/bug-51910.c
similarity index 100%
rename from cairo/test/bug-51910.c
rename to io2d/src/3rd-party/cairo/test/bug-51910.c
diff --git a/cairo/test/bug-bo-collins.c b/io2d/src/3rd-party/cairo/test/bug-bo-collins.c
similarity index 100%
rename from cairo/test/bug-bo-collins.c
rename to io2d/src/3rd-party/cairo/test/bug-bo-collins.c
diff --git a/cairo/test/bug-bo-rectangular.c b/io2d/src/3rd-party/cairo/test/bug-bo-rectangular.c
similarity index 100%
rename from cairo/test/bug-bo-rectangular.c
rename to io2d/src/3rd-party/cairo/test/bug-bo-rectangular.c
diff --git a/cairo/test/bug-bo-ricotz.c b/io2d/src/3rd-party/cairo/test/bug-bo-ricotz.c
similarity index 100%
rename from cairo/test/bug-bo-ricotz.c
rename to io2d/src/3rd-party/cairo/test/bug-bo-ricotz.c
diff --git a/cairo/test/bug-extents.c b/io2d/src/3rd-party/cairo/test/bug-extents.c
similarity index 100%
rename from cairo/test/bug-extents.c
rename to io2d/src/3rd-party/cairo/test/bug-extents.c
diff --git a/cairo/test/bug-seams.c b/io2d/src/3rd-party/cairo/test/bug-seams.c
similarity index 100%
rename from cairo/test/bug-seams.c
rename to io2d/src/3rd-party/cairo/test/bug-seams.c
diff --git a/cairo/test/bug-source-cu.c b/io2d/src/3rd-party/cairo/test/bug-source-cu.c
similarity index 100%
rename from cairo/test/bug-source-cu.c
rename to io2d/src/3rd-party/cairo/test/bug-source-cu.c
diff --git a/cairo/test/bug-spline.c b/io2d/src/3rd-party/cairo/test/bug-spline.c
similarity index 100%
rename from cairo/test/bug-spline.c
rename to io2d/src/3rd-party/cairo/test/bug-spline.c
diff --git a/cairo/test/cairo-test-private.h b/io2d/src/3rd-party/cairo/test/cairo-test-private.h
similarity index 100%
rename from cairo/test/cairo-test-private.h
rename to io2d/src/3rd-party/cairo/test/cairo-test-private.h
diff --git a/cairo/test/cairo-test-runner.c b/io2d/src/3rd-party/cairo/test/cairo-test-runner.c
similarity index 100%
rename from cairo/test/cairo-test-runner.c
rename to io2d/src/3rd-party/cairo/test/cairo-test-runner.c
diff --git a/cairo/test/cairo-test-trace.c b/io2d/src/3rd-party/cairo/test/cairo-test-trace.c
similarity index 100%
rename from cairo/test/cairo-test-trace.c
rename to io2d/src/3rd-party/cairo/test/cairo-test-trace.c
diff --git a/cairo/test/cairo-test.c b/io2d/src/3rd-party/cairo/test/cairo-test.c
similarity index 100%
rename from cairo/test/cairo-test.c
rename to io2d/src/3rd-party/cairo/test/cairo-test.c
diff --git a/cairo/test/cairo-test.h b/io2d/src/3rd-party/cairo/test/cairo-test.h
similarity index 100%
rename from cairo/test/cairo-test.h
rename to io2d/src/3rd-party/cairo/test/cairo-test.h
diff --git a/cairo/test/caps-joins-alpha.c b/io2d/src/3rd-party/cairo/test/caps-joins-alpha.c
similarity index 100%
rename from cairo/test/caps-joins-alpha.c
rename to io2d/src/3rd-party/cairo/test/caps-joins-alpha.c
diff --git a/cairo/test/caps-joins-curve.c b/io2d/src/3rd-party/cairo/test/caps-joins-curve.c
similarity index 100%
rename from cairo/test/caps-joins-curve.c
rename to io2d/src/3rd-party/cairo/test/caps-joins-curve.c
diff --git a/cairo/test/caps-joins.c b/io2d/src/3rd-party/cairo/test/caps-joins.c
similarity index 100%
rename from cairo/test/caps-joins.c
rename to io2d/src/3rd-party/cairo/test/caps-joins.c
diff --git a/cairo/test/caps-sub-paths.c b/io2d/src/3rd-party/cairo/test/caps-sub-paths.c
similarity index 100%
rename from cairo/test/caps-sub-paths.c
rename to io2d/src/3rd-party/cairo/test/caps-sub-paths.c
diff --git a/cairo/test/caps-tails-curve.c b/io2d/src/3rd-party/cairo/test/caps-tails-curve.c
similarity index 100%
rename from cairo/test/caps-tails-curve.c
rename to io2d/src/3rd-party/cairo/test/caps-tails-curve.c
diff --git a/cairo/test/caps.c b/io2d/src/3rd-party/cairo/test/caps.c
similarity index 100%
rename from cairo/test/caps.c
rename to io2d/src/3rd-party/cairo/test/caps.c
diff --git a/cairo/test/check-refs.sh b/io2d/src/3rd-party/cairo/test/check-refs.sh
similarity index 100%
rename from cairo/test/check-refs.sh
rename to io2d/src/3rd-party/cairo/test/check-refs.sh
diff --git a/cairo/test/checkerboard.c b/io2d/src/3rd-party/cairo/test/checkerboard.c
similarity index 100%
rename from cairo/test/checkerboard.c
rename to io2d/src/3rd-party/cairo/test/checkerboard.c
diff --git a/cairo/test/clear-source.c b/io2d/src/3rd-party/cairo/test/clear-source.c
similarity index 100%
rename from cairo/test/clear-source.c
rename to io2d/src/3rd-party/cairo/test/clear-source.c
diff --git a/cairo/test/clear.c b/io2d/src/3rd-party/cairo/test/clear.c
similarity index 100%
rename from cairo/test/clear.c
rename to io2d/src/3rd-party/cairo/test/clear.c
diff --git a/cairo/test/clip-all.c b/io2d/src/3rd-party/cairo/test/clip-all.c
similarity index 100%
rename from cairo/test/clip-all.c
rename to io2d/src/3rd-party/cairo/test/clip-all.c
diff --git a/cairo/test/clip-complex-bug61592.c b/io2d/src/3rd-party/cairo/test/clip-complex-bug61592.c
similarity index 100%
rename from cairo/test/clip-complex-bug61592.c
rename to io2d/src/3rd-party/cairo/test/clip-complex-bug61592.c
diff --git a/cairo/test/clip-complex-shape.c b/io2d/src/3rd-party/cairo/test/clip-complex-shape.c
similarity index 100%
rename from cairo/test/clip-complex-shape.c
rename to io2d/src/3rd-party/cairo/test/clip-complex-shape.c
diff --git a/cairo/test/clip-contexts.c b/io2d/src/3rd-party/cairo/test/clip-contexts.c
similarity index 100%
rename from cairo/test/clip-contexts.c
rename to io2d/src/3rd-party/cairo/test/clip-contexts.c
diff --git a/cairo/test/clip-device-offset.c b/io2d/src/3rd-party/cairo/test/clip-device-offset.c
similarity index 100%
rename from cairo/test/clip-device-offset.c
rename to io2d/src/3rd-party/cairo/test/clip-device-offset.c
diff --git a/cairo/test/clip-disjoint-hatching.c b/io2d/src/3rd-party/cairo/test/clip-disjoint-hatching.c
similarity index 100%
rename from cairo/test/clip-disjoint-hatching.c
rename to io2d/src/3rd-party/cairo/test/clip-disjoint-hatching.c
diff --git a/cairo/test/clip-disjoint-quad.c b/io2d/src/3rd-party/cairo/test/clip-disjoint-quad.c
similarity index 100%
rename from cairo/test/clip-disjoint-quad.c
rename to io2d/src/3rd-party/cairo/test/clip-disjoint-quad.c
diff --git a/cairo/test/clip-disjoint.c b/io2d/src/3rd-party/cairo/test/clip-disjoint.c
similarity index 100%
rename from cairo/test/clip-disjoint.c
rename to io2d/src/3rd-party/cairo/test/clip-disjoint.c
diff --git a/cairo/test/clip-double-free.c b/io2d/src/3rd-party/cairo/test/clip-double-free.c
similarity index 100%
rename from cairo/test/clip-double-free.c
rename to io2d/src/3rd-party/cairo/test/clip-double-free.c
diff --git a/cairo/test/clip-draw-unbounded.c b/io2d/src/3rd-party/cairo/test/clip-draw-unbounded.c
similarity index 100%
rename from cairo/test/clip-draw-unbounded.c
rename to io2d/src/3rd-party/cairo/test/clip-draw-unbounded.c
diff --git a/cairo/test/clip-empty-group.c b/io2d/src/3rd-party/cairo/test/clip-empty-group.c
similarity index 100%
rename from cairo/test/clip-empty-group.c
rename to io2d/src/3rd-party/cairo/test/clip-empty-group.c
diff --git a/cairo/test/clip-empty-save.c b/io2d/src/3rd-party/cairo/test/clip-empty-save.c
similarity index 100%
rename from cairo/test/clip-empty-save.c
rename to io2d/src/3rd-party/cairo/test/clip-empty-save.c
diff --git a/cairo/test/clip-empty.c b/io2d/src/3rd-party/cairo/test/clip-empty.c
similarity index 100%
rename from cairo/test/clip-empty.c
rename to io2d/src/3rd-party/cairo/test/clip-empty.c
diff --git a/cairo/test/clip-fill-no-op.c b/io2d/src/3rd-party/cairo/test/clip-fill-no-op.c
similarity index 100%
rename from cairo/test/clip-fill-no-op.c
rename to io2d/src/3rd-party/cairo/test/clip-fill-no-op.c
diff --git a/cairo/test/clip-fill-rule-pixel-aligned.c b/io2d/src/3rd-party/cairo/test/clip-fill-rule-pixel-aligned.c
similarity index 100%
rename from cairo/test/clip-fill-rule-pixel-aligned.c
rename to io2d/src/3rd-party/cairo/test/clip-fill-rule-pixel-aligned.c
diff --git a/cairo/test/clip-fill-rule.c b/io2d/src/3rd-party/cairo/test/clip-fill-rule.c
similarity index 100%
rename from cairo/test/clip-fill-rule.c
rename to io2d/src/3rd-party/cairo/test/clip-fill-rule.c
diff --git a/cairo/test/clip-fill.c b/io2d/src/3rd-party/cairo/test/clip-fill.c
similarity index 100%
rename from cairo/test/clip-fill.c
rename to io2d/src/3rd-party/cairo/test/clip-fill.c
diff --git a/cairo/test/clip-group-shapes.c b/io2d/src/3rd-party/cairo/test/clip-group-shapes.c
similarity index 100%
rename from cairo/test/clip-group-shapes.c
rename to io2d/src/3rd-party/cairo/test/clip-group-shapes.c
diff --git a/cairo/test/clip-image.c b/io2d/src/3rd-party/cairo/test/clip-image.c
similarity index 100%
rename from cairo/test/clip-image.c
rename to io2d/src/3rd-party/cairo/test/clip-image.c
diff --git a/cairo/test/clip-intersect.c b/io2d/src/3rd-party/cairo/test/clip-intersect.c
similarity index 100%
rename from cairo/test/clip-intersect.c
rename to io2d/src/3rd-party/cairo/test/clip-intersect.c
diff --git a/cairo/test/clip-mixed-antialias.c b/io2d/src/3rd-party/cairo/test/clip-mixed-antialias.c
similarity index 100%
rename from cairo/test/clip-mixed-antialias.c
rename to io2d/src/3rd-party/cairo/test/clip-mixed-antialias.c
diff --git a/cairo/test/clip-nesting.c b/io2d/src/3rd-party/cairo/test/clip-nesting.c
similarity index 100%
rename from cairo/test/clip-nesting.c
rename to io2d/src/3rd-party/cairo/test/clip-nesting.c
diff --git a/cairo/test/clip-operator.c b/io2d/src/3rd-party/cairo/test/clip-operator.c
similarity index 100%
rename from cairo/test/clip-operator.c
rename to io2d/src/3rd-party/cairo/test/clip-operator.c
diff --git a/cairo/test/clip-polygons.c b/io2d/src/3rd-party/cairo/test/clip-polygons.c
similarity index 100%
rename from cairo/test/clip-polygons.c
rename to io2d/src/3rd-party/cairo/test/clip-polygons.c
diff --git a/cairo/test/clip-push-group.c b/io2d/src/3rd-party/cairo/test/clip-push-group.c
similarity index 100%
rename from cairo/test/clip-push-group.c
rename to io2d/src/3rd-party/cairo/test/clip-push-group.c
diff --git a/cairo/test/clip-rectilinear.c b/io2d/src/3rd-party/cairo/test/clip-rectilinear.c
similarity index 100%
rename from cairo/test/clip-rectilinear.c
rename to io2d/src/3rd-party/cairo/test/clip-rectilinear.c
diff --git a/cairo/test/clip-shape.c b/io2d/src/3rd-party/cairo/test/clip-shape.c
similarity index 100%
rename from cairo/test/clip-shape.c
rename to io2d/src/3rd-party/cairo/test/clip-shape.c
diff --git a/cairo/test/clip-stroke-no-op.c b/io2d/src/3rd-party/cairo/test/clip-stroke-no-op.c
similarity index 100%
rename from cairo/test/clip-stroke-no-op.c
rename to io2d/src/3rd-party/cairo/test/clip-stroke-no-op.c
diff --git a/cairo/test/clip-stroke.c b/io2d/src/3rd-party/cairo/test/clip-stroke.c
similarity index 100%
rename from cairo/test/clip-stroke.c
rename to io2d/src/3rd-party/cairo/test/clip-stroke.c
diff --git a/cairo/test/clip-text.c b/io2d/src/3rd-party/cairo/test/clip-text.c
similarity index 100%
rename from cairo/test/clip-text.c
rename to io2d/src/3rd-party/cairo/test/clip-text.c
diff --git a/cairo/test/clip-twice-rectangle.c b/io2d/src/3rd-party/cairo/test/clip-twice-rectangle.c
similarity index 100%
rename from cairo/test/clip-twice-rectangle.c
rename to io2d/src/3rd-party/cairo/test/clip-twice-rectangle.c
diff --git a/cairo/test/clip-twice.c b/io2d/src/3rd-party/cairo/test/clip-twice.c
similarity index 100%
rename from cairo/test/clip-twice.c
rename to io2d/src/3rd-party/cairo/test/clip-twice.c
diff --git a/cairo/test/clip-unbounded.c b/io2d/src/3rd-party/cairo/test/clip-unbounded.c
similarity index 100%
rename from cairo/test/clip-unbounded.c
rename to io2d/src/3rd-party/cairo/test/clip-unbounded.c
diff --git a/cairo/test/clip-zero.c b/io2d/src/3rd-party/cairo/test/clip-zero.c
similarity index 100%
rename from cairo/test/clip-zero.c
rename to io2d/src/3rd-party/cairo/test/clip-zero.c
diff --git a/cairo/test/clipped-group.c b/io2d/src/3rd-party/cairo/test/clipped-group.c
similarity index 100%
rename from cairo/test/clipped-group.c
rename to io2d/src/3rd-party/cairo/test/clipped-group.c
diff --git a/cairo/test/clipped-surface.c b/io2d/src/3rd-party/cairo/test/clipped-surface.c
similarity index 100%
rename from cairo/test/clipped-surface.c
rename to io2d/src/3rd-party/cairo/test/clipped-surface.c
diff --git a/cairo/test/clipped-trapezoids-ref.png b/io2d/src/3rd-party/cairo/test/clipped-trapezoids-ref.png
similarity index 100%
rename from cairo/test/clipped-trapezoids-ref.png
rename to io2d/src/3rd-party/cairo/test/clipped-trapezoids-ref.png
diff --git a/cairo/test/clipped-trapezoids.c b/io2d/src/3rd-party/cairo/test/clipped-trapezoids.c
similarity index 100%
rename from cairo/test/clipped-trapezoids.c
rename to io2d/src/3rd-party/cairo/test/clipped-trapezoids.c
diff --git a/cairo/test/close-path-current-point.c b/io2d/src/3rd-party/cairo/test/close-path-current-point.c
similarity index 100%
rename from cairo/test/close-path-current-point.c
rename to io2d/src/3rd-party/cairo/test/close-path-current-point.c
diff --git a/cairo/test/close-path.c b/io2d/src/3rd-party/cairo/test/close-path.c
similarity index 100%
rename from cairo/test/close-path.c
rename to io2d/src/3rd-party/cairo/test/close-path.c
diff --git a/cairo/test/composite-integer-translate-over-repeat.c b/io2d/src/3rd-party/cairo/test/composite-integer-translate-over-repeat.c
similarity index 100%
rename from cairo/test/composite-integer-translate-over-repeat.c
rename to io2d/src/3rd-party/cairo/test/composite-integer-translate-over-repeat.c
diff --git a/cairo/test/composite-integer-translate-over.c b/io2d/src/3rd-party/cairo/test/composite-integer-translate-over.c
similarity index 100%
rename from cairo/test/composite-integer-translate-over.c
rename to io2d/src/3rd-party/cairo/test/composite-integer-translate-over.c
diff --git a/cairo/test/composite-integer-translate-source.c b/io2d/src/3rd-party/cairo/test/composite-integer-translate-source.c
similarity index 100%
rename from cairo/test/composite-integer-translate-source.c
rename to io2d/src/3rd-party/cairo/test/composite-integer-translate-source.c
diff --git a/cairo/test/copy-disjoint.c b/io2d/src/3rd-party/cairo/test/copy-disjoint.c
similarity index 100%
rename from cairo/test/copy-disjoint.c
rename to io2d/src/3rd-party/cairo/test/copy-disjoint.c
diff --git a/cairo/test/copy-path.c b/io2d/src/3rd-party/cairo/test/copy-path.c
similarity index 100%
rename from cairo/test/copy-path.c
rename to io2d/src/3rd-party/cairo/test/copy-path.c
diff --git a/cairo/test/coverage.c b/io2d/src/3rd-party/cairo/test/coverage.c
similarity index 100%
rename from cairo/test/coverage.c
rename to io2d/src/3rd-party/cairo/test/coverage.c
diff --git a/cairo/test/create-for-stream.c b/io2d/src/3rd-party/cairo/test/create-for-stream.c
similarity index 100%
rename from cairo/test/create-for-stream.c
rename to io2d/src/3rd-party/cairo/test/create-for-stream.c
diff --git a/cairo/test/create-from-png-stream.c b/io2d/src/3rd-party/cairo/test/create-from-png-stream.c
similarity index 100%
rename from cairo/test/create-from-png-stream.c
rename to io2d/src/3rd-party/cairo/test/create-from-png-stream.c
diff --git a/cairo/test/create-from-png.c b/io2d/src/3rd-party/cairo/test/create-from-png.c
similarity index 100%
rename from cairo/test/create-from-png.c
rename to io2d/src/3rd-party/cairo/test/create-from-png.c
diff --git a/cairo/test/culled-glyphs.c b/io2d/src/3rd-party/cairo/test/culled-glyphs.c
similarity index 100%
rename from cairo/test/culled-glyphs.c
rename to io2d/src/3rd-party/cairo/test/culled-glyphs.c
diff --git a/cairo/test/curve-to-as-line-to.c b/io2d/src/3rd-party/cairo/test/curve-to-as-line-to.c
similarity index 100%
rename from cairo/test/curve-to-as-line-to.c
rename to io2d/src/3rd-party/cairo/test/curve-to-as-line-to.c
diff --git a/cairo/test/dash-caps-joins.c b/io2d/src/3rd-party/cairo/test/dash-caps-joins.c
similarity index 100%
rename from cairo/test/dash-caps-joins.c
rename to io2d/src/3rd-party/cairo/test/dash-caps-joins.c
diff --git a/cairo/test/dash-curve.c b/io2d/src/3rd-party/cairo/test/dash-curve.c
similarity index 100%
rename from cairo/test/dash-curve.c
rename to io2d/src/3rd-party/cairo/test/dash-curve.c
diff --git a/cairo/test/dash-infinite-loop.c b/io2d/src/3rd-party/cairo/test/dash-infinite-loop.c
similarity index 100%
rename from cairo/test/dash-infinite-loop.c
rename to io2d/src/3rd-party/cairo/test/dash-infinite-loop.c
diff --git a/cairo/test/dash-no-dash.c b/io2d/src/3rd-party/cairo/test/dash-no-dash.c
similarity index 100%
rename from cairo/test/dash-no-dash.c
rename to io2d/src/3rd-party/cairo/test/dash-no-dash.c
diff --git a/cairo/test/dash-offset-negative.c b/io2d/src/3rd-party/cairo/test/dash-offset-negative.c
similarity index 100%
rename from cairo/test/dash-offset-negative.c
rename to io2d/src/3rd-party/cairo/test/dash-offset-negative.c
diff --git a/cairo/test/dash-offset.c b/io2d/src/3rd-party/cairo/test/dash-offset.c
similarity index 100%
rename from cairo/test/dash-offset.c
rename to io2d/src/3rd-party/cairo/test/dash-offset.c
diff --git a/cairo/test/dash-scale.c b/io2d/src/3rd-party/cairo/test/dash-scale.c
similarity index 100%
rename from cairo/test/dash-scale.c
rename to io2d/src/3rd-party/cairo/test/dash-scale.c
diff --git a/cairo/test/dash-state.c b/io2d/src/3rd-party/cairo/test/dash-state.c
similarity index 100%
rename from cairo/test/dash-state.c
rename to io2d/src/3rd-party/cairo/test/dash-state.c
diff --git a/cairo/test/dash-zero-length.c b/io2d/src/3rd-party/cairo/test/dash-zero-length.c
similarity index 100%
rename from cairo/test/dash-zero-length.c
rename to io2d/src/3rd-party/cairo/test/dash-zero-length.c
diff --git a/cairo/test/degenerate-arc.c b/io2d/src/3rd-party/cairo/test/degenerate-arc.c
similarity index 100%
rename from cairo/test/degenerate-arc.c
rename to io2d/src/3rd-party/cairo/test/degenerate-arc.c
diff --git a/cairo/test/degenerate-arcs.c b/io2d/src/3rd-party/cairo/test/degenerate-arcs.c
similarity index 100%
rename from cairo/test/degenerate-arcs.c
rename to io2d/src/3rd-party/cairo/test/degenerate-arcs.c
diff --git a/cairo/test/degenerate-curve-to.c b/io2d/src/3rd-party/cairo/test/degenerate-curve-to.c
similarity index 100%
rename from cairo/test/degenerate-curve-to.c
rename to io2d/src/3rd-party/cairo/test/degenerate-curve-to.c
diff --git a/cairo/test/degenerate-dash.c b/io2d/src/3rd-party/cairo/test/degenerate-dash.c
similarity index 100%
rename from cairo/test/degenerate-dash.c
rename to io2d/src/3rd-party/cairo/test/degenerate-dash.c
diff --git a/cairo/test/degenerate-linear-gradient.c b/io2d/src/3rd-party/cairo/test/degenerate-linear-gradient.c
similarity index 100%
rename from cairo/test/degenerate-linear-gradient.c
rename to io2d/src/3rd-party/cairo/test/degenerate-linear-gradient.c
diff --git a/cairo/test/degenerate-path.c b/io2d/src/3rd-party/cairo/test/degenerate-path.c
similarity index 100%
rename from cairo/test/degenerate-path.c
rename to io2d/src/3rd-party/cairo/test/degenerate-path.c
diff --git a/cairo/test/degenerate-pen.c b/io2d/src/3rd-party/cairo/test/degenerate-pen.c
similarity index 100%
rename from cairo/test/degenerate-pen.c
rename to io2d/src/3rd-party/cairo/test/degenerate-pen.c
diff --git a/cairo/test/degenerate-radial-gradient.c b/io2d/src/3rd-party/cairo/test/degenerate-radial-gradient.c
similarity index 100%
rename from cairo/test/degenerate-radial-gradient.c
rename to io2d/src/3rd-party/cairo/test/degenerate-radial-gradient.c
diff --git a/cairo/test/degenerate-rel-curve-to.c b/io2d/src/3rd-party/cairo/test/degenerate-rel-curve-to.c
similarity index 100%
rename from cairo/test/degenerate-rel-curve-to.c
rename to io2d/src/3rd-party/cairo/test/degenerate-rel-curve-to.c
diff --git a/cairo/test/degenerate-solid-dash.c b/io2d/src/3rd-party/cairo/test/degenerate-solid-dash.c
similarity index 100%
rename from cairo/test/degenerate-solid-dash.c
rename to io2d/src/3rd-party/cairo/test/degenerate-solid-dash.c
diff --git a/cairo/test/device-offset-fractional.c b/io2d/src/3rd-party/cairo/test/device-offset-fractional.c
similarity index 100%
rename from cairo/test/device-offset-fractional.c
rename to io2d/src/3rd-party/cairo/test/device-offset-fractional.c
diff --git a/cairo/test/device-offset-positive.c b/io2d/src/3rd-party/cairo/test/device-offset-positive.c
similarity index 100%
rename from cairo/test/device-offset-positive.c
rename to io2d/src/3rd-party/cairo/test/device-offset-positive.c
diff --git a/cairo/test/device-offset-scale.c b/io2d/src/3rd-party/cairo/test/device-offset-scale.c
similarity index 100%
rename from cairo/test/device-offset-scale.c
rename to io2d/src/3rd-party/cairo/test/device-offset-scale.c
diff --git a/cairo/test/device-offset.c b/io2d/src/3rd-party/cairo/test/device-offset.c
similarity index 100%
rename from cairo/test/device-offset.c
rename to io2d/src/3rd-party/cairo/test/device-offset.c
diff --git a/cairo/test/drunkard-tails.c b/io2d/src/3rd-party/cairo/test/drunkard-tails.c
similarity index 100%
rename from cairo/test/drunkard-tails.c
rename to io2d/src/3rd-party/cairo/test/drunkard-tails.c
diff --git a/cairo/test/error-setters.c b/io2d/src/3rd-party/cairo/test/error-setters.c
similarity index 100%
rename from cairo/test/error-setters.c
rename to io2d/src/3rd-party/cairo/test/error-setters.c
diff --git a/cairo/test/extend-pad-border.c b/io2d/src/3rd-party/cairo/test/extend-pad-border.c
similarity index 100%
rename from cairo/test/extend-pad-border.c
rename to io2d/src/3rd-party/cairo/test/extend-pad-border.c
diff --git a/cairo/test/extend-pad-similar.c b/io2d/src/3rd-party/cairo/test/extend-pad-similar.c
similarity index 100%
rename from cairo/test/extend-pad-similar.c
rename to io2d/src/3rd-party/cairo/test/extend-pad-similar.c
diff --git a/cairo/test/extend-pad.c b/io2d/src/3rd-party/cairo/test/extend-pad.c
similarity index 100%
rename from cairo/test/extend-pad.c
rename to io2d/src/3rd-party/cairo/test/extend-pad.c
diff --git a/cairo/test/extend-reflect-similar.c b/io2d/src/3rd-party/cairo/test/extend-reflect-similar.c
similarity index 100%
rename from cairo/test/extend-reflect-similar.c
rename to io2d/src/3rd-party/cairo/test/extend-reflect-similar.c
diff --git a/cairo/test/extend-reflect.c b/io2d/src/3rd-party/cairo/test/extend-reflect.c
similarity index 100%
rename from cairo/test/extend-reflect.c
rename to io2d/src/3rd-party/cairo/test/extend-reflect.c
diff --git a/cairo/test/extend-repeat-similar.c b/io2d/src/3rd-party/cairo/test/extend-repeat-similar.c
similarity index 100%
rename from cairo/test/extend-repeat-similar.c
rename to io2d/src/3rd-party/cairo/test/extend-repeat-similar.c
diff --git a/cairo/test/extend-repeat.c b/io2d/src/3rd-party/cairo/test/extend-repeat.c
similarity index 100%
rename from cairo/test/extend-repeat.c
rename to io2d/src/3rd-party/cairo/test/extend-repeat.c
diff --git a/cairo/test/extended-blend.c b/io2d/src/3rd-party/cairo/test/extended-blend.c
similarity index 100%
rename from cairo/test/extended-blend.c
rename to io2d/src/3rd-party/cairo/test/extended-blend.c
diff --git a/cairo/test/fallback-resolution.c b/io2d/src/3rd-party/cairo/test/fallback-resolution.c
similarity index 100%
rename from cairo/test/fallback-resolution.c
rename to io2d/src/3rd-party/cairo/test/fallback-resolution.c
diff --git a/cairo/test/fallback.c b/io2d/src/3rd-party/cairo/test/fallback.c
similarity index 100%
rename from cairo/test/fallback.c
rename to io2d/src/3rd-party/cairo/test/fallback.c
diff --git a/cairo/test/fill-alpha-pattern.c b/io2d/src/3rd-party/cairo/test/fill-alpha-pattern.c
similarity index 100%
rename from cairo/test/fill-alpha-pattern.c
rename to io2d/src/3rd-party/cairo/test/fill-alpha-pattern.c
diff --git a/cairo/test/fill-alpha.c b/io2d/src/3rd-party/cairo/test/fill-alpha.c
similarity index 100%
rename from cairo/test/fill-alpha.c
rename to io2d/src/3rd-party/cairo/test/fill-alpha.c
diff --git a/cairo/test/fill-and-stroke-alpha-add.c b/io2d/src/3rd-party/cairo/test/fill-and-stroke-alpha-add.c
similarity index 100%
rename from cairo/test/fill-and-stroke-alpha-add.c
rename to io2d/src/3rd-party/cairo/test/fill-and-stroke-alpha-add.c
diff --git a/cairo/test/fill-and-stroke-alpha.c b/io2d/src/3rd-party/cairo/test/fill-and-stroke-alpha.c
similarity index 100%
rename from cairo/test/fill-and-stroke-alpha.c
rename to io2d/src/3rd-party/cairo/test/fill-and-stroke-alpha.c
diff --git a/cairo/test/fill-and-stroke.c b/io2d/src/3rd-party/cairo/test/fill-and-stroke.c
similarity index 100%
rename from cairo/test/fill-and-stroke.c
rename to io2d/src/3rd-party/cairo/test/fill-and-stroke.c
diff --git a/cairo/test/fill-degenerate-sort-order.c b/io2d/src/3rd-party/cairo/test/fill-degenerate-sort-order.c
similarity index 100%
rename from cairo/test/fill-degenerate-sort-order.c
rename to io2d/src/3rd-party/cairo/test/fill-degenerate-sort-order.c
diff --git a/cairo/test/fill-disjoint.c b/io2d/src/3rd-party/cairo/test/fill-disjoint.c
similarity index 100%
rename from cairo/test/fill-disjoint.c
rename to io2d/src/3rd-party/cairo/test/fill-disjoint.c
diff --git a/cairo/test/fill-empty.c b/io2d/src/3rd-party/cairo/test/fill-empty.c
similarity index 100%
rename from cairo/test/fill-empty.c
rename to io2d/src/3rd-party/cairo/test/fill-empty.c
diff --git a/cairo/test/fill-image.c b/io2d/src/3rd-party/cairo/test/fill-image.c
similarity index 100%
rename from cairo/test/fill-image.c
rename to io2d/src/3rd-party/cairo/test/fill-image.c
diff --git a/cairo/test/fill-missed-stop.c b/io2d/src/3rd-party/cairo/test/fill-missed-stop.c
similarity index 100%
rename from cairo/test/fill-missed-stop.c
rename to io2d/src/3rd-party/cairo/test/fill-missed-stop.c
diff --git a/cairo/test/fill-rule.c b/io2d/src/3rd-party/cairo/test/fill-rule.c
similarity index 100%
rename from cairo/test/fill-rule.c
rename to io2d/src/3rd-party/cairo/test/fill-rule.c
diff --git a/cairo/test/filter-bilinear-extents.c b/io2d/src/3rd-party/cairo/test/filter-bilinear-extents.c
similarity index 100%
rename from cairo/test/filter-bilinear-extents.c
rename to io2d/src/3rd-party/cairo/test/filter-bilinear-extents.c
diff --git a/cairo/test/filter-nearest-offset.c b/io2d/src/3rd-party/cairo/test/filter-nearest-offset.c
similarity index 100%
rename from cairo/test/filter-nearest-offset.c
rename to io2d/src/3rd-party/cairo/test/filter-nearest-offset.c
diff --git a/cairo/test/filter-nearest-transformed.c b/io2d/src/3rd-party/cairo/test/filter-nearest-transformed.c
similarity index 100%
rename from cairo/test/filter-nearest-transformed.c
rename to io2d/src/3rd-party/cairo/test/filter-nearest-transformed.c
diff --git a/cairo/test/finer-grained-fallbacks.c b/io2d/src/3rd-party/cairo/test/finer-grained-fallbacks.c
similarity index 100%
rename from cairo/test/finer-grained-fallbacks.c
rename to io2d/src/3rd-party/cairo/test/finer-grained-fallbacks.c
diff --git a/cairo/test/font-face-get-type.c b/io2d/src/3rd-party/cairo/test/font-face-get-type.c
similarity index 100%
rename from cairo/test/font-face-get-type.c
rename to io2d/src/3rd-party/cairo/test/font-face-get-type.c
diff --git a/cairo/test/font-matrix-translation.c b/io2d/src/3rd-party/cairo/test/font-matrix-translation.c
similarity index 100%
rename from cairo/test/font-matrix-translation.c
rename to io2d/src/3rd-party/cairo/test/font-matrix-translation.c
diff --git a/cairo/test/font-options.c b/io2d/src/3rd-party/cairo/test/font-options.c
similarity index 100%
rename from cairo/test/font-options.c
rename to io2d/src/3rd-party/cairo/test/font-options.c
diff --git a/cairo/test/ft-font-create-for-ft-face.c b/io2d/src/3rd-party/cairo/test/ft-font-create-for-ft-face.c
similarity index 100%
rename from cairo/test/ft-font-create-for-ft-face.c
rename to io2d/src/3rd-party/cairo/test/ft-font-create-for-ft-face.c
diff --git a/cairo/test/ft-show-glyphs-positioning.c b/io2d/src/3rd-party/cairo/test/ft-show-glyphs-positioning.c
similarity index 100%
rename from cairo/test/ft-show-glyphs-positioning.c
rename to io2d/src/3rd-party/cairo/test/ft-show-glyphs-positioning.c
diff --git a/cairo/test/ft-show-glyphs-table.c b/io2d/src/3rd-party/cairo/test/ft-show-glyphs-table.c
similarity index 100%
rename from cairo/test/ft-show-glyphs-table.c
rename to io2d/src/3rd-party/cairo/test/ft-show-glyphs-table.c
diff --git a/cairo/test/ft-text-antialias-none.c b/io2d/src/3rd-party/cairo/test/ft-text-antialias-none.c
similarity index 100%
rename from cairo/test/ft-text-antialias-none.c
rename to io2d/src/3rd-party/cairo/test/ft-text-antialias-none.c
diff --git a/cairo/test/ft-text-vertical-layout-type1.c b/io2d/src/3rd-party/cairo/test/ft-text-vertical-layout-type1.c
similarity index 100%
rename from cairo/test/ft-text-vertical-layout-type1.c
rename to io2d/src/3rd-party/cairo/test/ft-text-vertical-layout-type1.c
diff --git a/cairo/test/ft-text-vertical-layout-type3.c b/io2d/src/3rd-party/cairo/test/ft-text-vertical-layout-type3.c
similarity index 100%
rename from cairo/test/ft-text-vertical-layout-type3.c
rename to io2d/src/3rd-party/cairo/test/ft-text-vertical-layout-type3.c
diff --git a/cairo/test/generate_refs.sh b/io2d/src/3rd-party/cairo/test/generate_refs.sh
similarity index 100%
rename from cairo/test/generate_refs.sh
rename to io2d/src/3rd-party/cairo/test/generate_refs.sh
diff --git a/cairo/test/get-and-set.c b/io2d/src/3rd-party/cairo/test/get-and-set.c
similarity index 100%
rename from cairo/test/get-and-set.c
rename to io2d/src/3rd-party/cairo/test/get-and-set.c
diff --git a/cairo/test/get-clip.c b/io2d/src/3rd-party/cairo/test/get-clip.c
similarity index 100%
rename from cairo/test/get-clip.c
rename to io2d/src/3rd-party/cairo/test/get-clip.c
diff --git a/cairo/test/get-group-target.c b/io2d/src/3rd-party/cairo/test/get-group-target.c
similarity index 100%
rename from cairo/test/get-group-target.c
rename to io2d/src/3rd-party/cairo/test/get-group-target.c
diff --git a/cairo/test/get-path-extents.c b/io2d/src/3rd-party/cairo/test/get-path-extents.c
similarity index 100%
rename from cairo/test/get-path-extents.c
rename to io2d/src/3rd-party/cairo/test/get-path-extents.c
diff --git a/cairo/test/get-xrender-format.c b/io2d/src/3rd-party/cairo/test/get-xrender-format.c
similarity index 100%
rename from cairo/test/get-xrender-format.c
rename to io2d/src/3rd-party/cairo/test/get-xrender-format.c
diff --git a/cairo/test/gl-device-release.c b/io2d/src/3rd-party/cairo/test/gl-device-release.c
similarity index 100%
rename from cairo/test/gl-device-release.c
rename to io2d/src/3rd-party/cairo/test/gl-device-release.c
diff --git a/cairo/test/gl-oversized-surface.c b/io2d/src/3rd-party/cairo/test/gl-oversized-surface.c
similarity index 100%
rename from cairo/test/gl-oversized-surface.c
rename to io2d/src/3rd-party/cairo/test/gl-oversized-surface.c
diff --git a/cairo/test/gl-surface-source.c b/io2d/src/3rd-party/cairo/test/gl-surface-source.c
similarity index 100%
rename from cairo/test/gl-surface-source.c
rename to io2d/src/3rd-party/cairo/test/gl-surface-source.c
diff --git a/cairo/test/glyph-cache-pressure.c b/io2d/src/3rd-party/cairo/test/glyph-cache-pressure.c
similarity index 100%
rename from cairo/test/glyph-cache-pressure.c
rename to io2d/src/3rd-party/cairo/test/glyph-cache-pressure.c
diff --git a/cairo/test/gradient-alpha.c b/io2d/src/3rd-party/cairo/test/gradient-alpha.c
similarity index 100%
rename from cairo/test/gradient-alpha.c
rename to io2d/src/3rd-party/cairo/test/gradient-alpha.c
diff --git a/cairo/test/gradient-constant-alpha.c b/io2d/src/3rd-party/cairo/test/gradient-constant-alpha.c
similarity index 100%
rename from cairo/test/gradient-constant-alpha.c
rename to io2d/src/3rd-party/cairo/test/gradient-constant-alpha.c
diff --git a/cairo/test/gradient-zero-stops-mask.c b/io2d/src/3rd-party/cairo/test/gradient-zero-stops-mask.c
similarity index 100%
rename from cairo/test/gradient-zero-stops-mask.c
rename to io2d/src/3rd-party/cairo/test/gradient-zero-stops-mask.c
diff --git a/cairo/test/gradient-zero-stops.c b/io2d/src/3rd-party/cairo/test/gradient-zero-stops.c
similarity index 100%
rename from cairo/test/gradient-zero-stops.c
rename to io2d/src/3rd-party/cairo/test/gradient-zero-stops.c
diff --git a/cairo/test/group-clip.c b/io2d/src/3rd-party/cairo/test/group-clip.c
similarity index 100%
rename from cairo/test/group-clip.c
rename to io2d/src/3rd-party/cairo/test/group-clip.c
diff --git a/cairo/test/group-paint.c b/io2d/src/3rd-party/cairo/test/group-paint.c
similarity index 100%
rename from cairo/test/group-paint.c
rename to io2d/src/3rd-party/cairo/test/group-paint.c
diff --git a/cairo/test/group-state.c b/io2d/src/3rd-party/cairo/test/group-state.c
similarity index 100%
rename from cairo/test/group-state.c
rename to io2d/src/3rd-party/cairo/test/group-state.c
diff --git a/cairo/test/group-unaligned.c b/io2d/src/3rd-party/cairo/test/group-unaligned.c
similarity index 100%
rename from cairo/test/group-unaligned.c
rename to io2d/src/3rd-party/cairo/test/group-unaligned.c
diff --git a/cairo/test/half-coverage.c b/io2d/src/3rd-party/cairo/test/half-coverage.c
similarity index 100%
rename from cairo/test/half-coverage.c
rename to io2d/src/3rd-party/cairo/test/half-coverage.c
diff --git a/cairo/test/halo.c b/io2d/src/3rd-party/cairo/test/halo.c
similarity index 100%
rename from cairo/test/halo.c
rename to io2d/src/3rd-party/cairo/test/halo.c
diff --git a/cairo/test/hatchings.c b/io2d/src/3rd-party/cairo/test/hatchings.c
similarity index 100%
rename from cairo/test/hatchings.c
rename to io2d/src/3rd-party/cairo/test/hatchings.c
diff --git a/cairo/test/horizontal-clip.c b/io2d/src/3rd-party/cairo/test/horizontal-clip.c
similarity index 100%
rename from cairo/test/horizontal-clip.c
rename to io2d/src/3rd-party/cairo/test/horizontal-clip.c
diff --git a/cairo/test/huge-linear.c b/io2d/src/3rd-party/cairo/test/huge-linear.c
similarity index 100%
rename from cairo/test/huge-linear.c
rename to io2d/src/3rd-party/cairo/test/huge-linear.c
diff --git a/cairo/test/huge-radial.c b/io2d/src/3rd-party/cairo/test/huge-radial.c
similarity index 100%
rename from cairo/test/huge-radial.c
rename to io2d/src/3rd-party/cairo/test/huge-radial.c
diff --git a/cairo/test/image-bug-710072.c b/io2d/src/3rd-party/cairo/test/image-bug-710072.c
similarity index 100%
rename from cairo/test/image-bug-710072.c
rename to io2d/src/3rd-party/cairo/test/image-bug-710072.c
diff --git a/cairo/test/image-surface-source.c b/io2d/src/3rd-party/cairo/test/image-surface-source.c
similarity index 100%
rename from cairo/test/image-surface-source.c
rename to io2d/src/3rd-party/cairo/test/image-surface-source.c
diff --git a/cairo/test/imagediff.c b/io2d/src/3rd-party/cairo/test/imagediff.c
similarity index 100%
rename from cairo/test/imagediff.c
rename to io2d/src/3rd-party/cairo/test/imagediff.c
diff --git a/cairo/test/implicit-close.c b/io2d/src/3rd-party/cairo/test/implicit-close.c
similarity index 100%
rename from cairo/test/implicit-close.c
rename to io2d/src/3rd-party/cairo/test/implicit-close.c
diff --git a/cairo/test/in-fill-empty-trapezoid.c b/io2d/src/3rd-party/cairo/test/in-fill-empty-trapezoid.c
similarity index 100%
rename from cairo/test/in-fill-empty-trapezoid.c
rename to io2d/src/3rd-party/cairo/test/in-fill-empty-trapezoid.c
diff --git a/cairo/test/in-fill-trapezoid.c b/io2d/src/3rd-party/cairo/test/in-fill-trapezoid.c
similarity index 100%
rename from cairo/test/in-fill-trapezoid.c
rename to io2d/src/3rd-party/cairo/test/in-fill-trapezoid.c
diff --git a/cairo/test/index.html b/io2d/src/3rd-party/cairo/test/index.html
similarity index 100%
rename from cairo/test/index.html
rename to io2d/src/3rd-party/cairo/test/index.html
diff --git a/cairo/test/infinite-join.c b/io2d/src/3rd-party/cairo/test/infinite-join.c
similarity index 100%
rename from cairo/test/infinite-join.c
rename to io2d/src/3rd-party/cairo/test/infinite-join.c
diff --git a/cairo/test/invalid-matrix.c b/io2d/src/3rd-party/cairo/test/invalid-matrix.c
similarity index 100%
rename from cairo/test/invalid-matrix.c
rename to io2d/src/3rd-party/cairo/test/invalid-matrix.c
diff --git a/cairo/test/inverse-text.c b/io2d/src/3rd-party/cairo/test/inverse-text.c
similarity index 100%
rename from cairo/test/inverse-text.c
rename to io2d/src/3rd-party/cairo/test/inverse-text.c
diff --git a/cairo/test/inverted-clip.c b/io2d/src/3rd-party/cairo/test/inverted-clip.c
similarity index 100%
rename from cairo/test/inverted-clip.c
rename to io2d/src/3rd-party/cairo/test/inverted-clip.c
diff --git a/cairo/test/joins-loop.c b/io2d/src/3rd-party/cairo/test/joins-loop.c
similarity index 100%
rename from cairo/test/joins-loop.c
rename to io2d/src/3rd-party/cairo/test/joins-loop.c
diff --git a/cairo/test/joins-retrace.c b/io2d/src/3rd-party/cairo/test/joins-retrace.c
similarity index 100%
rename from cairo/test/joins-retrace.c
rename to io2d/src/3rd-party/cairo/test/joins-retrace.c
diff --git a/cairo/test/joins-star.c b/io2d/src/3rd-party/cairo/test/joins-star.c
similarity index 100%
rename from cairo/test/joins-star.c
rename to io2d/src/3rd-party/cairo/test/joins-star.c
diff --git a/cairo/test/joins.c b/io2d/src/3rd-party/cairo/test/joins.c
similarity index 100%
rename from cairo/test/joins.c
rename to io2d/src/3rd-party/cairo/test/joins.c
diff --git a/cairo/test/jp2.jp2 b/io2d/src/3rd-party/cairo/test/jp2.jp2
similarity index 100%
rename from cairo/test/jp2.jp2
rename to io2d/src/3rd-party/cairo/test/jp2.jp2
diff --git a/cairo/test/jpeg.jpg b/io2d/src/3rd-party/cairo/test/jpeg.jpg
similarity index 100%
rename from cairo/test/jpeg.jpg
rename to io2d/src/3rd-party/cairo/test/jpeg.jpg
diff --git a/cairo/test/large-clip.c b/io2d/src/3rd-party/cairo/test/large-clip.c
similarity index 100%
rename from cairo/test/large-clip.c
rename to io2d/src/3rd-party/cairo/test/large-clip.c
diff --git a/cairo/test/large-font.c b/io2d/src/3rd-party/cairo/test/large-font.c
similarity index 100%
rename from cairo/test/large-font.c
rename to io2d/src/3rd-party/cairo/test/large-font.c
diff --git a/cairo/test/large-source-roi.c b/io2d/src/3rd-party/cairo/test/large-source-roi.c
similarity index 100%
rename from cairo/test/large-source-roi.c
rename to io2d/src/3rd-party/cairo/test/large-source-roi.c
diff --git a/cairo/test/large-source.c b/io2d/src/3rd-party/cairo/test/large-source.c
similarity index 100%
rename from cairo/test/large-source.c
rename to io2d/src/3rd-party/cairo/test/large-source.c
diff --git a/cairo/test/large-twin-antialias-mixed.c b/io2d/src/3rd-party/cairo/test/large-twin-antialias-mixed.c
similarity index 100%
rename from cairo/test/large-twin-antialias-mixed.c
rename to io2d/src/3rd-party/cairo/test/large-twin-antialias-mixed.c
diff --git a/cairo/test/leaky-dash.c b/io2d/src/3rd-party/cairo/test/leaky-dash.c
similarity index 100%
rename from cairo/test/leaky-dash.c
rename to io2d/src/3rd-party/cairo/test/leaky-dash.c
diff --git a/cairo/test/leaky-dashed-rectangle.c b/io2d/src/3rd-party/cairo/test/leaky-dashed-rectangle.c
similarity index 100%
rename from cairo/test/leaky-dashed-rectangle.c
rename to io2d/src/3rd-party/cairo/test/leaky-dashed-rectangle.c
diff --git a/cairo/test/leaky-dashed-stroke.c b/io2d/src/3rd-party/cairo/test/leaky-dashed-stroke.c
similarity index 100%
rename from cairo/test/leaky-dashed-stroke.c
rename to io2d/src/3rd-party/cairo/test/leaky-dashed-stroke.c
diff --git a/cairo/test/leaky-polygon.c b/io2d/src/3rd-party/cairo/test/leaky-polygon.c
similarity index 100%
rename from cairo/test/leaky-polygon.c
rename to io2d/src/3rd-party/cairo/test/leaky-polygon.c
diff --git a/cairo/test/line-width-large-overlap.c b/io2d/src/3rd-party/cairo/test/line-width-large-overlap.c
similarity index 100%
rename from cairo/test/line-width-large-overlap.c
rename to io2d/src/3rd-party/cairo/test/line-width-large-overlap.c
diff --git a/cairo/test/line-width-overlap.c b/io2d/src/3rd-party/cairo/test/line-width-overlap.c
similarity index 100%
rename from cairo/test/line-width-overlap.c
rename to io2d/src/3rd-party/cairo/test/line-width-overlap.c
diff --git a/cairo/test/line-width-scale.c b/io2d/src/3rd-party/cairo/test/line-width-scale.c
similarity index 100%
rename from cairo/test/line-width-scale.c
rename to io2d/src/3rd-party/cairo/test/line-width-scale.c
diff --git a/cairo/test/line-width-tolerance.c b/io2d/src/3rd-party/cairo/test/line-width-tolerance.c
similarity index 100%
rename from cairo/test/line-width-tolerance.c
rename to io2d/src/3rd-party/cairo/test/line-width-tolerance.c
diff --git a/cairo/test/line-width-zero.c b/io2d/src/3rd-party/cairo/test/line-width-zero.c
similarity index 100%
rename from cairo/test/line-width-zero.c
rename to io2d/src/3rd-party/cairo/test/line-width-zero.c
diff --git a/cairo/test/line-width.c b/io2d/src/3rd-party/cairo/test/line-width.c
similarity index 100%
rename from cairo/test/line-width.c
rename to io2d/src/3rd-party/cairo/test/line-width.c
diff --git a/cairo/test/linear-gradient-extend.c b/io2d/src/3rd-party/cairo/test/linear-gradient-extend.c
similarity index 100%
rename from cairo/test/linear-gradient-extend.c
rename to io2d/src/3rd-party/cairo/test/linear-gradient-extend.c
diff --git a/cairo/test/linear-gradient-large.c b/io2d/src/3rd-party/cairo/test/linear-gradient-large.c
similarity index 100%
rename from cairo/test/linear-gradient-large.c
rename to io2d/src/3rd-party/cairo/test/linear-gradient-large.c
diff --git a/cairo/test/linear-gradient-one-stop.c b/io2d/src/3rd-party/cairo/test/linear-gradient-one-stop.c
similarity index 100%
rename from cairo/test/linear-gradient-one-stop.c
rename to io2d/src/3rd-party/cairo/test/linear-gradient-one-stop.c
diff --git a/cairo/test/linear-gradient-reflect.c b/io2d/src/3rd-party/cairo/test/linear-gradient-reflect.c
similarity index 100%
rename from cairo/test/linear-gradient-reflect.c
rename to io2d/src/3rd-party/cairo/test/linear-gradient-reflect.c
diff --git a/cairo/test/linear-gradient-subset.c b/io2d/src/3rd-party/cairo/test/linear-gradient-subset.c
similarity index 100%
rename from cairo/test/linear-gradient-subset.c
rename to io2d/src/3rd-party/cairo/test/linear-gradient-subset.c
diff --git a/cairo/test/linear-gradient.c b/io2d/src/3rd-party/cairo/test/linear-gradient.c
similarity index 100%
rename from cairo/test/linear-gradient.c
rename to io2d/src/3rd-party/cairo/test/linear-gradient.c
diff --git a/cairo/test/linear-step-function.c b/io2d/src/3rd-party/cairo/test/linear-step-function.c
similarity index 100%
rename from cairo/test/linear-step-function.c
rename to io2d/src/3rd-party/cairo/test/linear-step-function.c
diff --git a/cairo/test/linear-uniform.c b/io2d/src/3rd-party/cairo/test/linear-uniform.c
similarity index 100%
rename from cairo/test/linear-uniform.c
rename to io2d/src/3rd-party/cairo/test/linear-uniform.c
diff --git a/cairo/test/long-dashed-lines.c b/io2d/src/3rd-party/cairo/test/long-dashed-lines.c
similarity index 100%
rename from cairo/test/long-dashed-lines.c
rename to io2d/src/3rd-party/cairo/test/long-dashed-lines.c
diff --git a/cairo/test/long-lines.c b/io2d/src/3rd-party/cairo/test/long-lines.c
similarity index 100%
rename from cairo/test/long-lines.c
rename to io2d/src/3rd-party/cairo/test/long-lines.c
diff --git a/cairo/test/make-cairo-test-constructors.sh b/io2d/src/3rd-party/cairo/test/make-cairo-test-constructors.sh
similarity index 100%
rename from cairo/test/make-cairo-test-constructors.sh
rename to io2d/src/3rd-party/cairo/test/make-cairo-test-constructors.sh
diff --git a/cairo/test/map-to-image.c b/io2d/src/3rd-party/cairo/test/map-to-image.c
similarity index 100%
rename from cairo/test/map-to-image.c
rename to io2d/src/3rd-party/cairo/test/map-to-image.c
diff --git a/cairo/test/mask-alpha.c b/io2d/src/3rd-party/cairo/test/mask-alpha.c
similarity index 100%
rename from cairo/test/mask-alpha.c
rename to io2d/src/3rd-party/cairo/test/mask-alpha.c
diff --git a/cairo/test/mask-ctm.c b/io2d/src/3rd-party/cairo/test/mask-ctm.c
similarity index 100%
rename from cairo/test/mask-ctm.c
rename to io2d/src/3rd-party/cairo/test/mask-ctm.c
diff --git a/cairo/test/mask-glyphs.c b/io2d/src/3rd-party/cairo/test/mask-glyphs.c
similarity index 100%
rename from cairo/test/mask-glyphs.c
rename to io2d/src/3rd-party/cairo/test/mask-glyphs.c
diff --git a/cairo/test/mask-surface-ctm.c b/io2d/src/3rd-party/cairo/test/mask-surface-ctm.c
similarity index 100%
rename from cairo/test/mask-surface-ctm.c
rename to io2d/src/3rd-party/cairo/test/mask-surface-ctm.c
diff --git a/cairo/test/mask-transformed-image.c b/io2d/src/3rd-party/cairo/test/mask-transformed-image.c
similarity index 100%
rename from cairo/test/mask-transformed-image.c
rename to io2d/src/3rd-party/cairo/test/mask-transformed-image.c
diff --git a/cairo/test/mask-transformed-similar.c b/io2d/src/3rd-party/cairo/test/mask-transformed-similar.c
similarity index 100%
rename from cairo/test/mask-transformed-similar.c
rename to io2d/src/3rd-party/cairo/test/mask-transformed-similar.c
diff --git a/cairo/test/mask.c b/io2d/src/3rd-party/cairo/test/mask.c
similarity index 100%
rename from cairo/test/mask.c
rename to io2d/src/3rd-party/cairo/test/mask.c
diff --git a/cairo/test/mesh-pattern-accuracy.c b/io2d/src/3rd-party/cairo/test/mesh-pattern-accuracy.c
similarity index 100%
rename from cairo/test/mesh-pattern-accuracy.c
rename to io2d/src/3rd-party/cairo/test/mesh-pattern-accuracy.c
diff --git a/cairo/test/mesh-pattern-conical.c b/io2d/src/3rd-party/cairo/test/mesh-pattern-conical.c
similarity index 100%
rename from cairo/test/mesh-pattern-conical.c
rename to io2d/src/3rd-party/cairo/test/mesh-pattern-conical.c
diff --git a/cairo/test/mesh-pattern-control-points.c b/io2d/src/3rd-party/cairo/test/mesh-pattern-control-points.c
similarity index 100%
rename from cairo/test/mesh-pattern-control-points.c
rename to io2d/src/3rd-party/cairo/test/mesh-pattern-control-points.c
diff --git a/cairo/test/mesh-pattern-fold.c b/io2d/src/3rd-party/cairo/test/mesh-pattern-fold.c
similarity index 100%
rename from cairo/test/mesh-pattern-fold.c
rename to io2d/src/3rd-party/cairo/test/mesh-pattern-fold.c
diff --git a/cairo/test/mesh-pattern-overlap.c b/io2d/src/3rd-party/cairo/test/mesh-pattern-overlap.c
similarity index 100%
rename from cairo/test/mesh-pattern-overlap.c
rename to io2d/src/3rd-party/cairo/test/mesh-pattern-overlap.c
diff --git a/cairo/test/mesh-pattern-transformed.c b/io2d/src/3rd-party/cairo/test/mesh-pattern-transformed.c
similarity index 100%
rename from cairo/test/mesh-pattern-transformed.c
rename to io2d/src/3rd-party/cairo/test/mesh-pattern-transformed.c
diff --git a/cairo/test/mesh-pattern.c b/io2d/src/3rd-party/cairo/test/mesh-pattern.c
similarity index 100%
rename from cairo/test/mesh-pattern.c
rename to io2d/src/3rd-party/cairo/test/mesh-pattern.c
diff --git a/cairo/test/mime-data.c b/io2d/src/3rd-party/cairo/test/mime-data.c
similarity index 100%
rename from cairo/test/mime-data.c
rename to io2d/src/3rd-party/cairo/test/mime-data.c
diff --git a/cairo/test/mime-surface-api.c b/io2d/src/3rd-party/cairo/test/mime-surface-api.c
similarity index 100%
rename from cairo/test/mime-surface-api.c
rename to io2d/src/3rd-party/cairo/test/mime-surface-api.c
diff --git a/cairo/test/miter-precision.c b/io2d/src/3rd-party/cairo/test/miter-precision.c
similarity index 100%
rename from cairo/test/miter-precision.c
rename to io2d/src/3rd-party/cairo/test/miter-precision.c
diff --git a/cairo/test/move-to-show-surface.c b/io2d/src/3rd-party/cairo/test/move-to-show-surface.c
similarity index 100%
rename from cairo/test/move-to-show-surface.c
rename to io2d/src/3rd-party/cairo/test/move-to-show-surface.c
diff --git a/cairo/test/multi-page.c b/io2d/src/3rd-party/cairo/test/multi-page.c
similarity index 100%
rename from cairo/test/multi-page.c
rename to io2d/src/3rd-party/cairo/test/multi-page.c
diff --git a/cairo/test/negative-stride-image.c b/io2d/src/3rd-party/cairo/test/negative-stride-image.c
similarity index 100%
rename from cairo/test/negative-stride-image.c
rename to io2d/src/3rd-party/cairo/test/negative-stride-image.c
diff --git a/cairo/test/new-sub-path.c b/io2d/src/3rd-party/cairo/test/new-sub-path.c
similarity index 100%
rename from cairo/test/new-sub-path.c
rename to io2d/src/3rd-party/cairo/test/new-sub-path.c
diff --git a/cairo/test/nil-surface.c b/io2d/src/3rd-party/cairo/test/nil-surface.c
similarity index 100%
rename from cairo/test/nil-surface.c
rename to io2d/src/3rd-party/cairo/test/nil-surface.c
diff --git a/cairo/test/operator-alpha-alpha.c b/io2d/src/3rd-party/cairo/test/operator-alpha-alpha.c
similarity index 100%
rename from cairo/test/operator-alpha-alpha.c
rename to io2d/src/3rd-party/cairo/test/operator-alpha-alpha.c
diff --git a/cairo/test/operator-alpha.c b/io2d/src/3rd-party/cairo/test/operator-alpha.c
similarity index 100%
rename from cairo/test/operator-alpha.c
rename to io2d/src/3rd-party/cairo/test/operator-alpha.c
diff --git a/cairo/test/operator-clear.c b/io2d/src/3rd-party/cairo/test/operator-clear.c
similarity index 100%
rename from cairo/test/operator-clear.c
rename to io2d/src/3rd-party/cairo/test/operator-clear.c
diff --git a/cairo/test/operator-source.c b/io2d/src/3rd-party/cairo/test/operator-source.c
similarity index 100%
rename from cairo/test/operator-source.c
rename to io2d/src/3rd-party/cairo/test/operator-source.c
diff --git a/cairo/test/operator.c b/io2d/src/3rd-party/cairo/test/operator.c
similarity index 100%
rename from cairo/test/operator.c
rename to io2d/src/3rd-party/cairo/test/operator.c
diff --git a/cairo/test/outline-tolerance.c b/io2d/src/3rd-party/cairo/test/outline-tolerance.c
similarity index 100%
rename from cairo/test/outline-tolerance.c
rename to io2d/src/3rd-party/cairo/test/outline-tolerance.c
diff --git a/cairo/test/over-above-source.c b/io2d/src/3rd-party/cairo/test/over-above-source.c
similarity index 100%
rename from cairo/test/over-above-source.c
rename to io2d/src/3rd-party/cairo/test/over-above-source.c
diff --git a/cairo/test/over-around-source.c b/io2d/src/3rd-party/cairo/test/over-around-source.c
similarity index 100%
rename from cairo/test/over-around-source.c
rename to io2d/src/3rd-party/cairo/test/over-around-source.c
diff --git a/cairo/test/over-below-source.c b/io2d/src/3rd-party/cairo/test/over-below-source.c
similarity index 100%
rename from cairo/test/over-below-source.c
rename to io2d/src/3rd-party/cairo/test/over-below-source.c
diff --git a/cairo/test/over-between-source.c b/io2d/src/3rd-party/cairo/test/over-between-source.c
similarity index 100%
rename from cairo/test/over-between-source.c
rename to io2d/src/3rd-party/cairo/test/over-between-source.c
diff --git a/cairo/test/overlapping-boxes.c b/io2d/src/3rd-party/cairo/test/overlapping-boxes.c
similarity index 100%
rename from cairo/test/overlapping-boxes.c
rename to io2d/src/3rd-party/cairo/test/overlapping-boxes.c
diff --git a/cairo/test/overlapping-dash-caps.c b/io2d/src/3rd-party/cairo/test/overlapping-dash-caps.c
similarity index 100%
rename from cairo/test/overlapping-dash-caps.c
rename to io2d/src/3rd-party/cairo/test/overlapping-dash-caps.c
diff --git a/cairo/test/overlapping-glyphs.c b/io2d/src/3rd-party/cairo/test/overlapping-glyphs.c
similarity index 100%
rename from cairo/test/overlapping-glyphs.c
rename to io2d/src/3rd-party/cairo/test/overlapping-glyphs.c
diff --git a/cairo/test/paint-clip-fill.c b/io2d/src/3rd-party/cairo/test/paint-clip-fill.c
similarity index 100%
rename from cairo/test/paint-clip-fill.c
rename to io2d/src/3rd-party/cairo/test/paint-clip-fill.c
diff --git a/cairo/test/paint-repeat.c b/io2d/src/3rd-party/cairo/test/paint-repeat.c
similarity index 100%
rename from cairo/test/paint-repeat.c
rename to io2d/src/3rd-party/cairo/test/paint-repeat.c
diff --git a/cairo/test/paint-source-alpha.c b/io2d/src/3rd-party/cairo/test/paint-source-alpha.c
similarity index 100%
rename from cairo/test/paint-source-alpha.c
rename to io2d/src/3rd-party/cairo/test/paint-source-alpha.c
diff --git a/cairo/test/paint-with-alpha.c b/io2d/src/3rd-party/cairo/test/paint-with-alpha.c
similarity index 100%
rename from cairo/test/paint-with-alpha.c
rename to io2d/src/3rd-party/cairo/test/paint-with-alpha.c
diff --git a/cairo/test/paint.c b/io2d/src/3rd-party/cairo/test/paint.c
similarity index 100%
rename from cairo/test/paint.c
rename to io2d/src/3rd-party/cairo/test/paint.c
diff --git a/cairo/test/partial-clip-text.c b/io2d/src/3rd-party/cairo/test/partial-clip-text.c
similarity index 100%
rename from cairo/test/partial-clip-text.c
rename to io2d/src/3rd-party/cairo/test/partial-clip-text.c
diff --git a/cairo/test/partial-coverage.c b/io2d/src/3rd-party/cairo/test/partial-coverage.c
similarity index 100%
rename from cairo/test/partial-coverage.c
rename to io2d/src/3rd-party/cairo/test/partial-coverage.c
diff --git a/cairo/test/pass-through.c b/io2d/src/3rd-party/cairo/test/pass-through.c
similarity index 100%
rename from cairo/test/pass-through.c
rename to io2d/src/3rd-party/cairo/test/pass-through.c
diff --git a/cairo/test/path-append.c b/io2d/src/3rd-party/cairo/test/path-append.c
similarity index 100%
rename from cairo/test/path-append.c
rename to io2d/src/3rd-party/cairo/test/path-append.c
diff --git a/cairo/test/path-precision.c b/io2d/src/3rd-party/cairo/test/path-precision.c
similarity index 100%
rename from cairo/test/path-precision.c
rename to io2d/src/3rd-party/cairo/test/path-precision.c
diff --git a/cairo/test/path-stroke-twice.c b/io2d/src/3rd-party/cairo/test/path-stroke-twice.c
similarity index 100%
rename from cairo/test/path-stroke-twice.c
rename to io2d/src/3rd-party/cairo/test/path-stroke-twice.c
diff --git a/cairo/test/pattern-get-type.c b/io2d/src/3rd-party/cairo/test/pattern-get-type.c
similarity index 100%
rename from cairo/test/pattern-get-type.c
rename to io2d/src/3rd-party/cairo/test/pattern-get-type.c
diff --git a/cairo/test/pattern-getters.c b/io2d/src/3rd-party/cairo/test/pattern-getters.c
similarity index 100%
rename from cairo/test/pattern-getters.c
rename to io2d/src/3rd-party/cairo/test/pattern-getters.c
diff --git a/cairo/test/pdf-features.c b/io2d/src/3rd-party/cairo/test/pdf-features.c
similarity index 100%
rename from cairo/test/pdf-features.c
rename to io2d/src/3rd-party/cairo/test/pdf-features.c
diff --git a/cairo/test/pdf-isolated-group.c b/io2d/src/3rd-party/cairo/test/pdf-isolated-group.c
similarity index 100%
rename from cairo/test/pdf-isolated-group.c
rename to io2d/src/3rd-party/cairo/test/pdf-isolated-group.c
diff --git a/cairo/test/pdf-mime-data.c b/io2d/src/3rd-party/cairo/test/pdf-mime-data.c
similarity index 100%
rename from cairo/test/pdf-mime-data.c
rename to io2d/src/3rd-party/cairo/test/pdf-mime-data.c
diff --git a/cairo/test/pdf-surface-source.c b/io2d/src/3rd-party/cairo/test/pdf-surface-source.c
similarity index 100%
rename from cairo/test/pdf-surface-source.c
rename to io2d/src/3rd-party/cairo/test/pdf-surface-source.c
diff --git a/cairo/test/pdf2png.c b/io2d/src/3rd-party/cairo/test/pdf2png.c
similarity index 100%
rename from cairo/test/pdf2png.c
rename to io2d/src/3rd-party/cairo/test/pdf2png.c
diff --git a/cairo/test/pdiff/.gitignore b/io2d/src/3rd-party/cairo/test/pdiff/.gitignore
similarity index 100%
rename from cairo/test/pdiff/.gitignore
rename to io2d/src/3rd-party/cairo/test/pdiff/.gitignore
diff --git a/cairo/test/pdiff/CMakeLists.txt b/io2d/src/3rd-party/cairo/test/pdiff/CMakeLists.txt
similarity index 100%
rename from cairo/test/pdiff/CMakeLists.txt
rename to io2d/src/3rd-party/cairo/test/pdiff/CMakeLists.txt
diff --git a/cairo/test/pdiff/Makefile.am b/io2d/src/3rd-party/cairo/test/pdiff/Makefile.am
similarity index 100%
rename from cairo/test/pdiff/Makefile.am
rename to io2d/src/3rd-party/cairo/test/pdiff/Makefile.am
diff --git a/cairo/test/pdiff/Makefile.win32 b/io2d/src/3rd-party/cairo/test/pdiff/Makefile.win32
similarity index 100%
rename from cairo/test/pdiff/Makefile.win32
rename to io2d/src/3rd-party/cairo/test/pdiff/Makefile.win32
diff --git a/cairo/test/pdiff/README.txt b/io2d/src/3rd-party/cairo/test/pdiff/README.txt
similarity index 100%
rename from cairo/test/pdiff/README.txt
rename to io2d/src/3rd-party/cairo/test/pdiff/README.txt
diff --git a/cairo/test/pdiff/args.c b/io2d/src/3rd-party/cairo/test/pdiff/args.c
similarity index 100%
rename from cairo/test/pdiff/args.c
rename to io2d/src/3rd-party/cairo/test/pdiff/args.c
diff --git a/cairo/test/pdiff/args.h b/io2d/src/3rd-party/cairo/test/pdiff/args.h
similarity index 100%
rename from cairo/test/pdiff/args.h
rename to io2d/src/3rd-party/cairo/test/pdiff/args.h
diff --git a/cairo/test/pdiff/gpl.txt b/io2d/src/3rd-party/cairo/test/pdiff/gpl.txt
similarity index 100%
rename from cairo/test/pdiff/gpl.txt
rename to io2d/src/3rd-party/cairo/test/pdiff/gpl.txt
diff --git a/cairo/test/pdiff/lpyramid.c b/io2d/src/3rd-party/cairo/test/pdiff/lpyramid.c
similarity index 100%
rename from cairo/test/pdiff/lpyramid.c
rename to io2d/src/3rd-party/cairo/test/pdiff/lpyramid.c
diff --git a/cairo/test/pdiff/lpyramid.h b/io2d/src/3rd-party/cairo/test/pdiff/lpyramid.h
similarity index 100%
rename from cairo/test/pdiff/lpyramid.h
rename to io2d/src/3rd-party/cairo/test/pdiff/lpyramid.h
diff --git a/cairo/test/pdiff/pdiff.c b/io2d/src/3rd-party/cairo/test/pdiff/pdiff.c
similarity index 100%
rename from cairo/test/pdiff/pdiff.c
rename to io2d/src/3rd-party/cairo/test/pdiff/pdiff.c
diff --git a/cairo/test/pdiff/pdiff.h b/io2d/src/3rd-party/cairo/test/pdiff/pdiff.h
similarity index 100%
rename from cairo/test/pdiff/pdiff.h
rename to io2d/src/3rd-party/cairo/test/pdiff/pdiff.h
diff --git a/cairo/test/pdiff/perceptualdiff.c b/io2d/src/3rd-party/cairo/test/pdiff/perceptualdiff.c
similarity index 100%
rename from cairo/test/pdiff/perceptualdiff.c
rename to io2d/src/3rd-party/cairo/test/pdiff/perceptualdiff.c
diff --git a/cairo/test/pixman-rotate.c b/io2d/src/3rd-party/cairo/test/pixman-rotate.c
similarity index 100%
rename from cairo/test/pixman-rotate.c
rename to io2d/src/3rd-party/cairo/test/pixman-rotate.c
diff --git a/cairo/test/png-flatten.c b/io2d/src/3rd-party/cairo/test/png-flatten.c
similarity index 100%
rename from cairo/test/png-flatten.c
rename to io2d/src/3rd-party/cairo/test/png-flatten.c
diff --git a/cairo/test/png.c b/io2d/src/3rd-party/cairo/test/png.c
similarity index 100%
rename from cairo/test/png.c
rename to io2d/src/3rd-party/cairo/test/png.c
diff --git a/cairo/test/png.png b/io2d/src/3rd-party/cairo/test/png.png
similarity index 100%
rename from cairo/test/png.png
rename to io2d/src/3rd-party/cairo/test/png.png
diff --git a/cairo/test/ps-eps.c b/io2d/src/3rd-party/cairo/test/ps-eps.c
similarity index 100%
rename from cairo/test/ps-eps.c
rename to io2d/src/3rd-party/cairo/test/ps-eps.c
diff --git a/cairo/test/ps-features.c b/io2d/src/3rd-party/cairo/test/ps-features.c
similarity index 100%
rename from cairo/test/ps-features.c
rename to io2d/src/3rd-party/cairo/test/ps-features.c
diff --git a/cairo/test/ps-surface-source.c b/io2d/src/3rd-party/cairo/test/ps-surface-source.c
similarity index 100%
rename from cairo/test/ps-surface-source.c
rename to io2d/src/3rd-party/cairo/test/ps-surface-source.c
diff --git a/cairo/test/ps2png.c b/io2d/src/3rd-party/cairo/test/ps2png.c
similarity index 100%
rename from cairo/test/ps2png.c
rename to io2d/src/3rd-party/cairo/test/ps2png.c
diff --git a/cairo/test/pthread-same-source.c b/io2d/src/3rd-party/cairo/test/pthread-same-source.c
similarity index 100%
rename from cairo/test/pthread-same-source.c
rename to io2d/src/3rd-party/cairo/test/pthread-same-source.c
diff --git a/cairo/test/pthread-show-text.c b/io2d/src/3rd-party/cairo/test/pthread-show-text.c
similarity index 100%
rename from cairo/test/pthread-show-text.c
rename to io2d/src/3rd-party/cairo/test/pthread-show-text.c
diff --git a/cairo/test/pthread-similar.c b/io2d/src/3rd-party/cairo/test/pthread-similar.c
similarity index 100%
rename from cairo/test/pthread-similar.c
rename to io2d/src/3rd-party/cairo/test/pthread-similar.c
diff --git a/cairo/test/push-group-color.c b/io2d/src/3rd-party/cairo/test/push-group-color.c
similarity index 100%
rename from cairo/test/push-group-color.c
rename to io2d/src/3rd-party/cairo/test/push-group-color.c
diff --git a/cairo/test/push-group-path-offset.c b/io2d/src/3rd-party/cairo/test/push-group-path-offset.c
similarity index 100%
rename from cairo/test/push-group-path-offset.c
rename to io2d/src/3rd-party/cairo/test/push-group-path-offset.c
diff --git a/cairo/test/push-group.c b/io2d/src/3rd-party/cairo/test/push-group.c
similarity index 100%
rename from cairo/test/push-group.c
rename to io2d/src/3rd-party/cairo/test/push-group.c
diff --git a/cairo/test/quartz-surface-source.c b/io2d/src/3rd-party/cairo/test/quartz-surface-source.c
similarity index 100%
rename from cairo/test/quartz-surface-source.c
rename to io2d/src/3rd-party/cairo/test/quartz-surface-source.c
diff --git a/cairo/test/radial-gradient-extend.c b/io2d/src/3rd-party/cairo/test/radial-gradient-extend.c
similarity index 100%
rename from cairo/test/radial-gradient-extend.c
rename to io2d/src/3rd-party/cairo/test/radial-gradient-extend.c
diff --git a/cairo/test/radial-gradient.c b/io2d/src/3rd-party/cairo/test/radial-gradient.c
similarity index 100%
rename from cairo/test/radial-gradient.c
rename to io2d/src/3rd-party/cairo/test/radial-gradient.c
diff --git a/cairo/test/radial-outer-focus.c b/io2d/src/3rd-party/cairo/test/radial-outer-focus.c
similarity index 100%
rename from cairo/test/radial-outer-focus.c
rename to io2d/src/3rd-party/cairo/test/radial-outer-focus.c
diff --git a/cairo/test/random-clips.c b/io2d/src/3rd-party/cairo/test/random-clips.c
similarity index 100%
rename from cairo/test/random-clips.c
rename to io2d/src/3rd-party/cairo/test/random-clips.c
diff --git a/cairo/test/random-intersections-curves-eo.c b/io2d/src/3rd-party/cairo/test/random-intersections-curves-eo.c
similarity index 100%
rename from cairo/test/random-intersections-curves-eo.c
rename to io2d/src/3rd-party/cairo/test/random-intersections-curves-eo.c
diff --git a/cairo/test/random-intersections-curves-nz.c b/io2d/src/3rd-party/cairo/test/random-intersections-curves-nz.c
similarity index 100%
rename from cairo/test/random-intersections-curves-nz.c
rename to io2d/src/3rd-party/cairo/test/random-intersections-curves-nz.c
diff --git a/cairo/test/random-intersections-eo.c b/io2d/src/3rd-party/cairo/test/random-intersections-eo.c
similarity index 100%
rename from cairo/test/random-intersections-eo.c
rename to io2d/src/3rd-party/cairo/test/random-intersections-eo.c
diff --git a/cairo/test/random-intersections-nonzero.c b/io2d/src/3rd-party/cairo/test/random-intersections-nonzero.c
similarity index 100%
rename from cairo/test/random-intersections-nonzero.c
rename to io2d/src/3rd-party/cairo/test/random-intersections-nonzero.c
diff --git a/cairo/test/raster-source.c b/io2d/src/3rd-party/cairo/test/raster-source.c
similarity index 100%
rename from cairo/test/raster-source.c
rename to io2d/src/3rd-party/cairo/test/raster-source.c
diff --git a/cairo/test/record-extend.c b/io2d/src/3rd-party/cairo/test/record-extend.c
similarity index 100%
rename from cairo/test/record-extend.c
rename to io2d/src/3rd-party/cairo/test/record-extend.c
diff --git a/cairo/test/record-mesh.c b/io2d/src/3rd-party/cairo/test/record-mesh.c
similarity index 100%
rename from cairo/test/record-mesh.c
rename to io2d/src/3rd-party/cairo/test/record-mesh.c
diff --git a/cairo/test/record.c b/io2d/src/3rd-party/cairo/test/record.c
similarity index 100%
rename from cairo/test/record.c
rename to io2d/src/3rd-party/cairo/test/record.c
diff --git a/cairo/test/record1414x.c b/io2d/src/3rd-party/cairo/test/record1414x.c
similarity index 100%
rename from cairo/test/record1414x.c
rename to io2d/src/3rd-party/cairo/test/record1414x.c
diff --git a/cairo/test/record2x.c b/io2d/src/3rd-party/cairo/test/record2x.c
similarity index 100%
rename from cairo/test/record2x.c
rename to io2d/src/3rd-party/cairo/test/record2x.c
diff --git a/cairo/test/record90.c b/io2d/src/3rd-party/cairo/test/record90.c
similarity index 100%
rename from cairo/test/record90.c
rename to io2d/src/3rd-party/cairo/test/record90.c
diff --git a/cairo/test/recordflip.c b/io2d/src/3rd-party/cairo/test/recordflip.c
similarity index 100%
rename from cairo/test/recordflip.c
rename to io2d/src/3rd-party/cairo/test/recordflip.c
diff --git a/cairo/test/recording-surface-extend.c b/io2d/src/3rd-party/cairo/test/recording-surface-extend.c
similarity index 100%
rename from cairo/test/recording-surface-extend.c
rename to io2d/src/3rd-party/cairo/test/recording-surface-extend.c
diff --git a/cairo/test/recording-surface-pattern.c b/io2d/src/3rd-party/cairo/test/recording-surface-pattern.c
similarity index 100%
rename from cairo/test/recording-surface-pattern.c
rename to io2d/src/3rd-party/cairo/test/recording-surface-pattern.c
diff --git a/cairo/test/rectangle-rounding-error.c b/io2d/src/3rd-party/cairo/test/rectangle-rounding-error.c
similarity index 100%
rename from cairo/test/rectangle-rounding-error.c
rename to io2d/src/3rd-party/cairo/test/rectangle-rounding-error.c
diff --git a/cairo/test/rectilinear-dash-scale.c b/io2d/src/3rd-party/cairo/test/rectilinear-dash-scale.c
similarity index 100%
rename from cairo/test/rectilinear-dash-scale.c
rename to io2d/src/3rd-party/cairo/test/rectilinear-dash-scale.c
diff --git a/cairo/test/rectilinear-dash.c b/io2d/src/3rd-party/cairo/test/rectilinear-dash.c
similarity index 100%
rename from cairo/test/rectilinear-dash.c
rename to io2d/src/3rd-party/cairo/test/rectilinear-dash.c
diff --git a/cairo/test/rectilinear-fill.c b/io2d/src/3rd-party/cairo/test/rectilinear-fill.c
similarity index 100%
rename from cairo/test/rectilinear-fill.c
rename to io2d/src/3rd-party/cairo/test/rectilinear-fill.c
diff --git a/cairo/test/rectilinear-grid.c b/io2d/src/3rd-party/cairo/test/rectilinear-grid.c
similarity index 100%
rename from cairo/test/rectilinear-grid.c
rename to io2d/src/3rd-party/cairo/test/rectilinear-grid.c
diff --git a/cairo/test/rectilinear-miter-limit.c b/io2d/src/3rd-party/cairo/test/rectilinear-miter-limit.c
similarity index 100%
rename from cairo/test/rectilinear-miter-limit.c
rename to io2d/src/3rd-party/cairo/test/rectilinear-miter-limit.c
diff --git a/cairo/test/rectilinear-stroke.c b/io2d/src/3rd-party/cairo/test/rectilinear-stroke.c
similarity index 100%
rename from cairo/test/rectilinear-stroke.c
rename to io2d/src/3rd-party/cairo/test/rectilinear-stroke.c
diff --git a/cairo/test/reference/a1-bug.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-bug.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-bug.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-bug.base.argb32.ref.png
diff --git a/cairo/test/reference/a1-bug.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-bug.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-bug.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-bug.base.rgb24.ref.png
diff --git a/cairo/test/reference/a1-bug.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-bug.image16.ref.png
similarity index 100%
rename from cairo/test/reference/a1-bug.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-bug.image16.ref.png
diff --git a/cairo/test/reference/a1-bug.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-bug.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-bug.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-bug.mask.argb32.ref.png
diff --git a/cairo/test/reference/a1-bug.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-bug.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-bug.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-bug.mask.rgb24.ref.png
diff --git a/cairo/test/reference/a1-bug.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/a1-bug.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/a1-bug.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-bug.quartz.xfail.png
diff --git a/cairo/test/reference/a1-bug.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-bug.ref.png
similarity index 100%
rename from cairo/test/reference/a1-bug.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-bug.ref.png
diff --git a/cairo/test/reference/a1-bug.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-bug.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-bug.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-bug.traps.argb32.ref.png
diff --git a/cairo/test/reference/a1-bug.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-bug.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-bug.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-bug.traps.rgb24.ref.png
diff --git a/cairo/test/reference/a1-clip-fill-equal.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-clip-fill-equal.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-clip-fill-equal.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-clip-fill-equal.base.argb32.ref.png
diff --git a/cairo/test/reference/a1-clip-fill-equal.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-clip-fill-equal.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-clip-fill-equal.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-clip-fill-equal.base.rgb24.ref.png
diff --git a/cairo/test/reference/a1-clip-fill-equal.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-clip-fill-equal.ref.png
similarity index 100%
rename from cairo/test/reference/a1-clip-fill-equal.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-clip-fill-equal.ref.png
diff --git a/cairo/test/reference/a1-clip-fill-rule.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-clip-fill-rule.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-clip-fill-rule.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-clip-fill-rule.argb32.ref.png
diff --git a/cairo/test/reference/a1-clip-fill-rule.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-clip-fill-rule.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-clip-fill-rule.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-clip-fill-rule.base.argb32.ref.png
diff --git a/cairo/test/reference/a1-clip-fill-rule.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-clip-fill-rule.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-clip-fill-rule.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-clip-fill-rule.base.rgb24.ref.png
diff --git a/cairo/test/reference/a1-clip-fill-rule.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-clip-fill-rule.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-clip-fill-rule.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-clip-fill-rule.rgb24.ref.png
diff --git a/cairo/test/reference/a1-clip-fill.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-clip-fill.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-clip-fill.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-clip-fill.base.argb32.ref.png
diff --git a/cairo/test/reference/a1-clip-fill.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-clip-fill.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-clip-fill.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-clip-fill.base.rgb24.ref.png
diff --git a/cairo/test/reference/a1-clip-fill.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-clip-fill.ref.png
similarity index 100%
rename from cairo/test/reference/a1-clip-fill.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-clip-fill.ref.png
diff --git a/cairo/test/reference/a1-clip-paint.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-clip-paint.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-clip-paint.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-clip-paint.base.argb32.ref.png
diff --git a/cairo/test/reference/a1-clip-paint.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-clip-paint.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-clip-paint.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-clip-paint.base.rgb24.ref.png
diff --git a/cairo/test/reference/a1-clip-paint.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-clip-paint.ref.png
similarity index 100%
rename from cairo/test/reference/a1-clip-paint.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-clip-paint.ref.png
diff --git a/cairo/test/reference/a1-clip-stroke.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-clip-stroke.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-clip-stroke.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-clip-stroke.base.argb32.ref.png
diff --git a/cairo/test/reference/a1-clip-stroke.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-clip-stroke.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-clip-stroke.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-clip-stroke.base.rgb24.ref.png
diff --git a/cairo/test/reference/a1-clip-stroke.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-clip-stroke.ref.png
similarity index 100%
rename from cairo/test/reference/a1-clip-stroke.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-clip-stroke.ref.png
diff --git a/cairo/test/reference/a1-fill.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-fill.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-fill.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-fill.base.argb32.ref.png
diff --git a/cairo/test/reference/a1-fill.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-fill.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-fill.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-fill.base.rgb24.ref.png
diff --git a/cairo/test/reference/a1-fill.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-fill.ref.png
similarity index 100%
rename from cairo/test/reference/a1-fill.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-fill.ref.png
diff --git a/cairo/test/reference/a1-image-sample.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-image-sample.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-image-sample.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-image-sample.base.argb32.ref.png
diff --git a/cairo/test/reference/a1-image-sample.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-image-sample.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-image-sample.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-image-sample.base.rgb24.ref.png
diff --git a/cairo/test/reference/a1-image-sample.gl.xfail.png b/io2d/src/3rd-party/cairo/test/reference/a1-image-sample.gl.xfail.png
similarity index 100%
rename from cairo/test/reference/a1-image-sample.gl.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-image-sample.gl.xfail.png
diff --git a/cairo/test/reference/a1-image-sample.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-image-sample.ref.png
similarity index 100%
rename from cairo/test/reference/a1-image-sample.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-image-sample.ref.png
diff --git a/cairo/test/reference/a1-line-width.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-line-width.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-line-width.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-line-width.base.argb32.ref.png
diff --git a/cairo/test/reference/a1-line-width.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-line-width.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-line-width.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-line-width.base.rgb24.ref.png
diff --git a/cairo/test/reference/a1-line-width.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-line-width.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/a1-line-width.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-line-width.pdf.ref.png
diff --git a/cairo/test/reference/a1-line-width.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-line-width.ps.ref.png
similarity index 100%
rename from cairo/test/reference/a1-line-width.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-line-width.ps.ref.png
diff --git a/cairo/test/reference/a1-line-width.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-line-width.ref.png
similarity index 100%
rename from cairo/test/reference/a1-line-width.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-line-width.ref.png
diff --git a/cairo/test/reference/a1-mask-sample.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-mask-sample.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-mask-sample.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-mask-sample.base.argb32.ref.png
diff --git a/cairo/test/reference/a1-mask-sample.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-mask-sample.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-mask-sample.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-mask-sample.base.rgb24.ref.png
diff --git a/cairo/test/reference/a1-mask-sample.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-mask-sample.ref.png
similarity index 100%
rename from cairo/test/reference/a1-mask-sample.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-mask-sample.ref.png
diff --git a/cairo/test/reference/a1-mask.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-mask.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-mask.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-mask.base.argb32.ref.png
diff --git a/cairo/test/reference/a1-mask.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-mask.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-mask.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-mask.base.rgb24.ref.png
diff --git a/cairo/test/reference/a1-mask.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-mask.ref.png
similarity index 100%
rename from cairo/test/reference/a1-mask.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-mask.ref.png
diff --git a/cairo/test/reference/a1-rasterisation-rectangles.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-rasterisation-rectangles.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-rasterisation-rectangles.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-rasterisation-rectangles.base.argb32.ref.png
diff --git a/cairo/test/reference/a1-rasterisation-rectangles.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-rasterisation-rectangles.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-rasterisation-rectangles.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-rasterisation-rectangles.base.rgb24.ref.png
diff --git a/cairo/test/reference/a1-rasterisation-rectangles.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/a1-rasterisation-rectangles.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/a1-rasterisation-rectangles.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-rasterisation-rectangles.quartz.xfail.png
diff --git a/cairo/test/reference/a1-rasterisation-rectangles.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-rasterisation-rectangles.ref.png
similarity index 100%
rename from cairo/test/reference/a1-rasterisation-rectangles.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-rasterisation-rectangles.ref.png
diff --git a/cairo/test/reference/a1-rasterisation-triangles.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-rasterisation-triangles.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-rasterisation-triangles.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-rasterisation-triangles.base.argb32.ref.png
diff --git a/cairo/test/reference/a1-rasterisation-triangles.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-rasterisation-triangles.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-rasterisation-triangles.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-rasterisation-triangles.base.rgb24.ref.png
diff --git a/cairo/test/reference/a1-rasterisation-triangles.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/a1-rasterisation-triangles.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/a1-rasterisation-triangles.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-rasterisation-triangles.quartz.xfail.png
diff --git a/cairo/test/reference/a1-rasterisation-triangles.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-rasterisation-triangles.ref.png
similarity index 100%
rename from cairo/test/reference/a1-rasterisation-triangles.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-rasterisation-triangles.ref.png
diff --git a/cairo/test/reference/a1-rectilinear-grid.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-rectilinear-grid.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-rectilinear-grid.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-rectilinear-grid.base.argb32.ref.png
diff --git a/cairo/test/reference/a1-rectilinear-grid.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-rectilinear-grid.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-rectilinear-grid.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-rectilinear-grid.base.rgb24.ref.png
diff --git a/cairo/test/reference/a1-rectilinear-grid.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-rectilinear-grid.ref.png
similarity index 100%
rename from cairo/test/reference/a1-rectilinear-grid.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-rectilinear-grid.ref.png
diff --git a/cairo/test/reference/a1-sample.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-sample.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-sample.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-sample.base.argb32.ref.png
diff --git a/cairo/test/reference/a1-sample.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-sample.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-sample.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-sample.base.rgb24.ref.png
diff --git a/cairo/test/reference/a1-sample.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-sample.ref.png
similarity index 100%
rename from cairo/test/reference/a1-sample.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-sample.ref.png
diff --git a/cairo/test/reference/a1-tiger.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-tiger.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-tiger.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-tiger.base.argb32.ref.png
diff --git a/cairo/test/reference/a1-tiger.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-tiger.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-tiger.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-tiger.base.rgb24.ref.png
diff --git a/cairo/test/reference/a1-tiger.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-tiger.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-tiger.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-tiger.mask.argb32.ref.png
diff --git a/cairo/test/reference/a1-tiger.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-tiger.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-tiger.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-tiger.mask.rgb24.ref.png
diff --git a/cairo/test/reference/a1-tiger.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-tiger.ref.png
similarity index 100%
rename from cairo/test/reference/a1-tiger.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-tiger.ref.png
diff --git a/cairo/test/reference/a1-tiger.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-tiger.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-tiger.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-tiger.traps.argb32.ref.png
diff --git a/cairo/test/reference/a1-tiger.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-tiger.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-tiger.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-tiger.traps.rgb24.ref.png
diff --git a/cairo/test/reference/a1-traps-sample.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-traps-sample.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a1-traps-sample.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-traps-sample.base.argb32.ref.png
diff --git a/cairo/test/reference/a1-traps-sample.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-traps-sample.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a1-traps-sample.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-traps-sample.base.rgb24.ref.png
diff --git a/cairo/test/reference/a1-traps-sample.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/a1-traps-sample.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/a1-traps-sample.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-traps-sample.quartz.xfail.png
diff --git a/cairo/test/reference/a1-traps-sample.ref.png b/io2d/src/3rd-party/cairo/test/reference/a1-traps-sample.ref.png
similarity index 100%
rename from cairo/test/reference/a1-traps-sample.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a1-traps-sample.ref.png
diff --git a/cairo/test/reference/a8-clear.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a8-clear.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a8-clear.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a8-clear.argb32.ref.png
diff --git a/cairo/test/reference/a8-clear.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a8-clear.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a8-clear.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a8-clear.base.argb32.ref.png
diff --git a/cairo/test/reference/a8-clear.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a8-clear.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a8-clear.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a8-clear.base.rgb24.ref.png
diff --git a/cairo/test/reference/a8-clear.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/a8-clear.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/a8-clear.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a8-clear.quartz.ref.png
diff --git a/cairo/test/reference/a8-clear.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a8-clear.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a8-clear.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a8-clear.rgb24.ref.png
diff --git a/cairo/test/reference/a8-clear.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a8-clear.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a8-clear.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a8-clear.traps.argb32.ref.png
diff --git a/cairo/test/reference/a8-clear.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a8-clear.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a8-clear.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a8-clear.traps.rgb24.ref.png
diff --git a/cairo/test/reference/a8-mask.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/a8-mask.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/a8-mask.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a8-mask.base.argb32.ref.png
diff --git a/cairo/test/reference/a8-mask.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/a8-mask.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/a8-mask.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a8-mask.base.rgb24.ref.png
diff --git a/cairo/test/reference/a8-mask.ref.png b/io2d/src/3rd-party/cairo/test/reference/a8-mask.ref.png
similarity index 100%
rename from cairo/test/reference/a8-mask.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/a8-mask.ref.png
diff --git a/cairo/test/reference/aliasing.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/aliasing.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/aliasing.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/aliasing.argb32.ref.png
diff --git a/cairo/test/reference/aliasing.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/aliasing.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/aliasing.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/aliasing.base.argb32.ref.png
diff --git a/cairo/test/reference/aliasing.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/aliasing.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/aliasing.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/aliasing.base.rgb24.ref.png
diff --git a/cairo/test/reference/aliasing.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/aliasing.image16.ref.png
similarity index 100%
rename from cairo/test/reference/aliasing.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/aliasing.image16.ref.png
diff --git a/cairo/test/reference/aliasing.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/aliasing.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/aliasing.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/aliasing.quartz.ref.png
diff --git a/cairo/test/reference/aliasing.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/aliasing.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/aliasing.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/aliasing.rgb24.ref.png
diff --git a/cairo/test/reference/aliasing.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/aliasing.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/aliasing.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/aliasing.traps.argb32.ref.png
diff --git a/cairo/test/reference/aliasing.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/aliasing.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/aliasing.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/aliasing.traps.rgb24.ref.png
diff --git a/cairo/test/reference/alpha-similar.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/alpha-similar.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/alpha-similar.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/alpha-similar.argb32.ref.png
diff --git a/cairo/test/reference/alpha-similar.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/alpha-similar.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/alpha-similar.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/alpha-similar.base.argb32.ref.png
diff --git a/cairo/test/reference/alpha-similar.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/alpha-similar.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/alpha-similar.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/alpha-similar.base.rgb24.ref.png
diff --git a/cairo/test/reference/alpha-similar.gl.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/alpha-similar.gl.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/alpha-similar.gl.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/alpha-similar.gl.argb32.xfail.png
diff --git a/cairo/test/reference/alpha-similar.gl.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/alpha-similar.gl.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/alpha-similar.gl.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/alpha-similar.gl.rgb24.xfail.png
diff --git a/cairo/test/reference/alpha-similar.pdf.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/alpha-similar.pdf.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/alpha-similar.pdf.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/alpha-similar.pdf.argb32.xfail.png
diff --git a/cairo/test/reference/alpha-similar.pdf.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/alpha-similar.pdf.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/alpha-similar.pdf.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/alpha-similar.pdf.rgb24.xfail.png
diff --git a/cairo/test/reference/alpha-similar.ps.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/alpha-similar.ps.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/alpha-similar.ps.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/alpha-similar.ps.argb32.xfail.png
diff --git a/cairo/test/reference/alpha-similar.ps.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/alpha-similar.ps.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/alpha-similar.ps.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/alpha-similar.ps.rgb24.xfail.png
diff --git a/cairo/test/reference/alpha-similar.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/alpha-similar.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/alpha-similar.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/alpha-similar.rgb24.ref.png
diff --git a/cairo/test/reference/alpha-similar.svg.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/alpha-similar.svg.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/alpha-similar.svg.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/alpha-similar.svg.argb32.xfail.png
diff --git a/cairo/test/reference/alpha-similar.svg.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/alpha-similar.svg.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/alpha-similar.svg.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/alpha-similar.svg.rgb24.xfail.png
diff --git a/cairo/test/reference/api-special-cases.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/api-special-cases.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/api-special-cases.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/api-special-cases.base.argb32.ref.png
diff --git a/cairo/test/reference/api-special-cases.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/api-special-cases.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/api-special-cases.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/api-special-cases.base.rgb24.ref.png
diff --git a/cairo/test/reference/api-special-cases.ref.png b/io2d/src/3rd-party/cairo/test/reference/api-special-cases.ref.png
similarity index 100%
rename from cairo/test/reference/api-special-cases.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/api-special-cases.ref.png
diff --git a/cairo/test/reference/arc-direction.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/arc-direction.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/arc-direction.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/arc-direction.argb32.ref.png
diff --git a/cairo/test/reference/arc-direction.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/arc-direction.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/arc-direction.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/arc-direction.base.argb32.ref.png
diff --git a/cairo/test/reference/arc-direction.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/arc-direction.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/arc-direction.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/arc-direction.base.rgb24.ref.png
diff --git a/cairo/test/reference/arc-direction.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/arc-direction.ps.ref.png
similarity index 100%
rename from cairo/test/reference/arc-direction.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/arc-direction.ps.ref.png
diff --git a/cairo/test/reference/arc-direction.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/arc-direction.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/arc-direction.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/arc-direction.rgb24.ref.png
diff --git a/cairo/test/reference/arc-direction.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/arc-direction.traps.ref.png
similarity index 100%
rename from cairo/test/reference/arc-direction.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/arc-direction.traps.ref.png
diff --git a/cairo/test/reference/arc-infinite-loop.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/arc-infinite-loop.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/arc-infinite-loop.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/arc-infinite-loop.base.argb32.ref.png
diff --git a/cairo/test/reference/arc-infinite-loop.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/arc-infinite-loop.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/arc-infinite-loop.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/arc-infinite-loop.base.rgb24.ref.png
diff --git a/cairo/test/reference/arc-infinite-loop.ref.png b/io2d/src/3rd-party/cairo/test/reference/arc-infinite-loop.ref.png
similarity index 100%
rename from cairo/test/reference/arc-infinite-loop.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/arc-infinite-loop.ref.png
diff --git a/cairo/test/reference/arc-looping-dash.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/arc-looping-dash.image16.ref.png
similarity index 100%
rename from cairo/test/reference/arc-looping-dash.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/arc-looping-dash.image16.ref.png
diff --git a/cairo/test/reference/arc-looping-dash.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/arc-looping-dash.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/arc-looping-dash.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/arc-looping-dash.mask.argb32.ref.png
diff --git a/cairo/test/reference/arc-looping-dash.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/arc-looping-dash.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/arc-looping-dash.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/arc-looping-dash.mask.rgb24.ref.png
diff --git a/cairo/test/reference/arc-looping-dash.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/arc-looping-dash.ps.ref.png
similarity index 100%
rename from cairo/test/reference/arc-looping-dash.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/arc-looping-dash.ps.ref.png
diff --git a/cairo/test/reference/arc-looping-dash.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/arc-looping-dash.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/arc-looping-dash.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/arc-looping-dash.quartz.ref.png
diff --git a/cairo/test/reference/arc-looping-dash.ref.png b/io2d/src/3rd-party/cairo/test/reference/arc-looping-dash.ref.png
similarity index 100%
rename from cairo/test/reference/arc-looping-dash.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/arc-looping-dash.ref.png
diff --git a/cairo/test/reference/arc-looping-dash.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/arc-looping-dash.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/arc-looping-dash.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/arc-looping-dash.traps.argb32.ref.png
diff --git a/cairo/test/reference/arc-looping-dash.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/arc-looping-dash.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/arc-looping-dash.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/arc-looping-dash.traps.rgb24.ref.png
diff --git a/cairo/test/reference/big-empty-box.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-empty-box.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/big-empty-box.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-empty-box.argb32.ref.png
diff --git a/cairo/test/reference/big-empty-box.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-empty-box.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/big-empty-box.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-empty-box.base.argb32.ref.png
diff --git a/cairo/test/reference/big-empty-box.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-empty-box.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/big-empty-box.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-empty-box.base.rgb24.ref.png
diff --git a/cairo/test/reference/big-empty-box.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-empty-box.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/big-empty-box.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-empty-box.rgb24.ref.png
diff --git a/cairo/test/reference/big-empty-triangle.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-empty-triangle.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/big-empty-triangle.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-empty-triangle.argb32.ref.png
diff --git a/cairo/test/reference/big-empty-triangle.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-empty-triangle.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/big-empty-triangle.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-empty-triangle.base.argb32.ref.png
diff --git a/cairo/test/reference/big-empty-triangle.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-empty-triangle.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/big-empty-triangle.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-empty-triangle.base.rgb24.ref.png
diff --git a/cairo/test/reference/big-empty-triangle.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-empty-triangle.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/big-empty-triangle.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-empty-triangle.rgb24.ref.png
diff --git a/cairo/test/reference/big-line.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-line.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/big-line.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-line.argb32.ref.png
diff --git a/cairo/test/reference/big-line.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-line.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/big-line.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-line.base.argb32.ref.png
diff --git a/cairo/test/reference/big-line.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-line.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/big-line.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-line.base.rgb24.ref.png
diff --git a/cairo/test/reference/big-line.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-line.image16.ref.png
similarity index 100%
rename from cairo/test/reference/big-line.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-line.image16.ref.png
diff --git a/cairo/test/reference/big-line.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-line.ps.ref.png
similarity index 100%
rename from cairo/test/reference/big-line.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-line.ps.ref.png
diff --git a/cairo/test/reference/big-line.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-line.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/big-line.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-line.quartz.ref.png
diff --git a/cairo/test/reference/big-line.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-line.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/big-line.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-line.rgb24.ref.png
diff --git a/cairo/test/reference/big-line.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-line.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/big-line.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-line.traps.argb32.ref.png
diff --git a/cairo/test/reference/big-line.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-line.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/big-line.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-line.traps.rgb24.ref.png
diff --git a/cairo/test/reference/big-little-box.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-little-box.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/big-little-box.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-little-box.argb32.ref.png
diff --git a/cairo/test/reference/big-little-box.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-little-box.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/big-little-box.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-little-box.base.argb32.ref.png
diff --git a/cairo/test/reference/big-little-box.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-little-box.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/big-little-box.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-little-box.base.rgb24.ref.png
diff --git a/cairo/test/reference/big-little-box.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-little-box.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/big-little-box.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-little-box.rgb24.ref.png
diff --git a/cairo/test/reference/big-little-triangle.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-little-triangle.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/big-little-triangle.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-little-triangle.argb32.ref.png
diff --git a/cairo/test/reference/big-little-triangle.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-little-triangle.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/big-little-triangle.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-little-triangle.base.argb32.ref.png
diff --git a/cairo/test/reference/big-little-triangle.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-little-triangle.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/big-little-triangle.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-little-triangle.base.rgb24.ref.png
diff --git a/cairo/test/reference/big-little-triangle.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-little-triangle.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/big-little-triangle.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-little-triangle.rgb24.ref.png
diff --git a/cairo/test/reference/big-little-triangle.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-little-triangle.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/big-little-triangle.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-little-triangle.traps.argb32.ref.png
diff --git a/cairo/test/reference/big-little-triangle.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-little-triangle.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/big-little-triangle.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-little-triangle.traps.rgb24.ref.png
diff --git a/cairo/test/reference/big-trap.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-trap.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/big-trap.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-trap.base.argb32.ref.png
diff --git a/cairo/test/reference/big-trap.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-trap.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/big-trap.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-trap.base.rgb24.ref.png
diff --git a/cairo/test/reference/big-trap.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-trap.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/big-trap.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-trap.mask.argb32.ref.png
diff --git a/cairo/test/reference/big-trap.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-trap.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/big-trap.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-trap.mask.rgb24.ref.png
diff --git a/cairo/test/reference/big-trap.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-trap.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/big-trap.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-trap.traps.argb32.ref.png
diff --git a/cairo/test/reference/big-trap.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/big-trap.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/big-trap.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/big-trap.traps.rgb24.ref.png
diff --git a/cairo/test/reference/bilevel-image.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/bilevel-image.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/bilevel-image.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bilevel-image.base.argb32.ref.png
diff --git a/cairo/test/reference/bilevel-image.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/bilevel-image.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/bilevel-image.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bilevel-image.base.rgb24.ref.png
diff --git a/cairo/test/reference/bilevel-image.ref.png b/io2d/src/3rd-party/cairo/test/reference/bilevel-image.ref.png
similarity index 100%
rename from cairo/test/reference/bilevel-image.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bilevel-image.ref.png
diff --git a/cairo/test/reference/bilevel-xlib-fallback.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/bilevel-xlib-fallback.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/bilevel-xlib-fallback.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bilevel-xlib-fallback.rgb24.ref.png
diff --git a/cairo/test/reference/bilevel-xlib-window.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/bilevel-xlib-window.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/bilevel-xlib-window.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bilevel-xlib-window.rgb24.ref.png
diff --git a/cairo/test/reference/bilevel-xlib.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/bilevel-xlib.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/bilevel-xlib.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bilevel-xlib.argb32.ref.png
diff --git a/cairo/test/reference/bilevel-xlib.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/bilevel-xlib.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/bilevel-xlib.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bilevel-xlib.rgb24.ref.png
diff --git a/cairo/test/reference/bitmap-font.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/bitmap-font.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/bitmap-font.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bitmap-font.argb32.ref.png
diff --git a/cairo/test/reference/bitmap-font.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/bitmap-font.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/bitmap-font.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bitmap-font.base.argb32.ref.png
diff --git a/cairo/test/reference/bitmap-font.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/bitmap-font.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/bitmap-font.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bitmap-font.base.rgb24.ref.png
diff --git a/cairo/test/reference/bitmap-font.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/bitmap-font.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/bitmap-font.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bitmap-font.rgb24.ref.png
diff --git a/cairo/test/reference/bug-40410.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-40410.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/bug-40410.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-40410.argb32.ref.png
diff --git a/cairo/test/reference/bug-40410.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-40410.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/bug-40410.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-40410.base.argb32.ref.png
diff --git a/cairo/test/reference/bug-40410.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-40410.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/bug-40410.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-40410.base.rgb24.ref.png
diff --git a/cairo/test/reference/bug-40410.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-40410.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/bug-40410.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-40410.rgb24.ref.png
diff --git a/cairo/test/reference/bug-40410.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-40410.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/bug-40410.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-40410.traps.argb32.ref.png
diff --git a/cairo/test/reference/bug-40410.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-40410.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/bug-40410.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-40410.traps.rgb24.ref.png
diff --git a/cairo/test/reference/bug-51910.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-51910.ref.png
similarity index 100%
rename from cairo/test/reference/bug-51910.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-51910.ref.png
diff --git a/cairo/test/reference/bug-bo-collins.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-bo-collins.ref.png
similarity index 100%
rename from cairo/test/reference/bug-bo-collins.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-bo-collins.ref.png
diff --git a/cairo/test/reference/bug-bo-rectangular.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-bo-rectangular.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/bug-bo-rectangular.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-bo-rectangular.base.argb32.ref.png
diff --git a/cairo/test/reference/bug-bo-rectangular.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-bo-rectangular.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/bug-bo-rectangular.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-bo-rectangular.base.rgb24.ref.png
diff --git a/cairo/test/reference/bug-bo-rectangular.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-bo-rectangular.image16.ref.png
similarity index 100%
rename from cairo/test/reference/bug-bo-rectangular.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-bo-rectangular.image16.ref.png
diff --git a/cairo/test/reference/bug-bo-rectangular.ps.xfail.png b/io2d/src/3rd-party/cairo/test/reference/bug-bo-rectangular.ps.xfail.png
similarity index 100%
rename from cairo/test/reference/bug-bo-rectangular.ps.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-bo-rectangular.ps.xfail.png
diff --git a/cairo/test/reference/bug-bo-rectangular.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-bo-rectangular.ref.png
similarity index 100%
rename from cairo/test/reference/bug-bo-rectangular.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-bo-rectangular.ref.png
diff --git a/cairo/test/reference/bug-bo-ricotz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-bo-ricotz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/bug-bo-ricotz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-bo-ricotz.argb32.ref.png
diff --git a/cairo/test/reference/bug-bo-ricotz.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-bo-ricotz.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/bug-bo-ricotz.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-bo-ricotz.base.argb32.ref.png
diff --git a/cairo/test/reference/bug-bo-ricotz.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-bo-ricotz.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/bug-bo-ricotz.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-bo-ricotz.base.rgb24.ref.png
diff --git a/cairo/test/reference/bug-bo-ricotz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-bo-ricotz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/bug-bo-ricotz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-bo-ricotz.rgb24.ref.png
diff --git a/cairo/test/reference/bug-bo-ricotz.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-bo-ricotz.traps.ref.png
similarity index 100%
rename from cairo/test/reference/bug-bo-ricotz.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-bo-ricotz.traps.ref.png
diff --git a/cairo/test/reference/bug-extents.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-extents.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/bug-extents.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-extents.argb32.ref.png
diff --git a/cairo/test/reference/bug-extents.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-extents.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/bug-extents.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-extents.base.argb32.ref.png
diff --git a/cairo/test/reference/bug-extents.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-extents.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/bug-extents.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-extents.base.rgb24.ref.png
diff --git a/cairo/test/reference/bug-extents.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-extents.image16.ref.png
similarity index 100%
rename from cairo/test/reference/bug-extents.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-extents.image16.ref.png
diff --git a/cairo/test/reference/bug-extents.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-extents.ps.ref.png
similarity index 100%
rename from cairo/test/reference/bug-extents.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-extents.ps.ref.png
diff --git a/cairo/test/reference/bug-extents.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-extents.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/bug-extents.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-extents.quartz.ref.png
diff --git a/cairo/test/reference/bug-extents.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-extents.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/bug-extents.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-extents.rgb24.ref.png
diff --git a/cairo/test/reference/bug-extents.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-extents.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/bug-extents.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-extents.traps.argb32.ref.png
diff --git a/cairo/test/reference/bug-extents.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-extents.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/bug-extents.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-extents.traps.rgb24.ref.png
diff --git a/cairo/test/reference/bug-seams.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-seams.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/bug-seams.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-seams.base.argb32.ref.png
diff --git a/cairo/test/reference/bug-seams.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-seams.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/bug-seams.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-seams.base.rgb24.ref.png
diff --git a/cairo/test/reference/bug-seams.image.xfail.png b/io2d/src/3rd-party/cairo/test/reference/bug-seams.image.xfail.png
similarity index 100%
rename from cairo/test/reference/bug-seams.image.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-seams.image.xfail.png
diff --git a/cairo/test/reference/bug-seams.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-seams.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/bug-seams.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-seams.mask.argb32.ref.png
diff --git a/cairo/test/reference/bug-seams.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-seams.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/bug-seams.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-seams.mask.rgb24.ref.png
diff --git a/cairo/test/reference/bug-seams.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-seams.ref.png
similarity index 100%
rename from cairo/test/reference/bug-seams.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-seams.ref.png
diff --git a/cairo/test/reference/bug-seams.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-seams.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/bug-seams.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-seams.traps.argb32.ref.png
diff --git a/cairo/test/reference/bug-seams.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-seams.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/bug-seams.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-seams.traps.rgb24.ref.png
diff --git a/cairo/test/reference/bug-seams.xlib-fallback.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-seams.xlib-fallback.ref.png
similarity index 100%
rename from cairo/test/reference/bug-seams.xlib-fallback.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-seams.xlib-fallback.ref.png
diff --git a/cairo/test/reference/bug-source-cu.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-source-cu.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/bug-source-cu.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-source-cu.argb32.ref.png
diff --git a/cairo/test/reference/bug-source-cu.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-source-cu.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/bug-source-cu.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-source-cu.rgb24.ref.png
diff --git a/cairo/test/reference/bug-source-cu.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-source-cu.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/bug-source-cu.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-source-cu.traps.argb32.ref.png
diff --git a/cairo/test/reference/bug-source-cu.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-source-cu.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/bug-source-cu.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-source-cu.traps.rgb24.ref.png
diff --git a/cairo/test/reference/bug-spline.ref.png b/io2d/src/3rd-party/cairo/test/reference/bug-spline.ref.png
similarity index 100%
rename from cairo/test/reference/bug-spline.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/bug-spline.ref.png
diff --git a/cairo/test/reference/caps-05.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-05.ref.png
similarity index 100%
rename from cairo/test/reference/caps-05.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-05.ref.png
diff --git a/cairo/test/reference/caps-05.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-05.traps.ref.png
similarity index 100%
rename from cairo/test/reference/caps-05.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-05.traps.ref.png
diff --git a/cairo/test/reference/caps-1.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-1.ref.png
similarity index 100%
rename from cairo/test/reference/caps-1.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-1.ref.png
diff --git a/cairo/test/reference/caps-1.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-1.traps.ref.png
similarity index 100%
rename from cairo/test/reference/caps-1.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-1.traps.ref.png
diff --git a/cairo/test/reference/caps-2.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-2.ref.png
similarity index 100%
rename from cairo/test/reference/caps-2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-2.ref.png
diff --git a/cairo/test/reference/caps-2.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-2.traps.ref.png
similarity index 100%
rename from cairo/test/reference/caps-2.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-2.traps.ref.png
diff --git a/cairo/test/reference/caps-joins-05.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins-05.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins-05.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins-05.ref.png
diff --git a/cairo/test/reference/caps-joins-05.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins-05.traps.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins-05.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins-05.traps.ref.png
diff --git a/cairo/test/reference/caps-joins-1.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins-1.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins-1.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins-1.ref.png
diff --git a/cairo/test/reference/caps-joins-1.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins-1.traps.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins-1.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins-1.traps.ref.png
diff --git a/cairo/test/reference/caps-joins-2.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins-2.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins-2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins-2.ref.png
diff --git a/cairo/test/reference/caps-joins-2.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins-2.traps.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins-2.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins-2.traps.ref.png
diff --git a/cairo/test/reference/caps-joins-alpha.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins-alpha.image16.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins-alpha.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins-alpha.image16.ref.png
diff --git a/cairo/test/reference/caps-joins-alpha.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins-alpha.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins-alpha.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins-alpha.mask.argb32.ref.png
diff --git a/cairo/test/reference/caps-joins-alpha.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins-alpha.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins-alpha.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins-alpha.mask.rgb24.ref.png
diff --git a/cairo/test/reference/caps-joins-alpha.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins-alpha.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins-alpha.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins-alpha.quartz.ref.png
diff --git a/cairo/test/reference/caps-joins-alpha.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins-alpha.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins-alpha.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins-alpha.ref.png
diff --git a/cairo/test/reference/caps-joins-alpha.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins-alpha.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins-alpha.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins-alpha.traps.argb32.ref.png
diff --git a/cairo/test/reference/caps-joins-alpha.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins-alpha.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins-alpha.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins-alpha.traps.rgb24.ref.png
diff --git a/cairo/test/reference/caps-joins-curve.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins-curve.image16.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins-curve.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins-curve.image16.ref.png
diff --git a/cairo/test/reference/caps-joins-curve.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins-curve.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins-curve.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins-curve.mask.argb32.ref.png
diff --git a/cairo/test/reference/caps-joins-curve.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins-curve.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins-curve.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins-curve.mask.rgb24.ref.png
diff --git a/cairo/test/reference/caps-joins-curve.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins-curve.ps.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins-curve.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins-curve.ps.ref.png
diff --git a/cairo/test/reference/caps-joins-curve.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins-curve.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins-curve.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins-curve.quartz.ref.png
diff --git a/cairo/test/reference/caps-joins-curve.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins-curve.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins-curve.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins-curve.ref.png
diff --git a/cairo/test/reference/caps-joins-curve.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins-curve.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins-curve.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins-curve.traps.argb32.ref.png
diff --git a/cairo/test/reference/caps-joins-curve.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins-curve.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins-curve.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins-curve.traps.rgb24.ref.png
diff --git a/cairo/test/reference/caps-joins.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins.argb32.ref.png
diff --git a/cairo/test/reference/caps-joins.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins.base.argb32.ref.png
diff --git a/cairo/test/reference/caps-joins.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins.base.rgb24.ref.png
diff --git a/cairo/test/reference/caps-joins.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins.image16.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins.image16.ref.png
diff --git a/cairo/test/reference/caps-joins.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins.ps.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins.ps.ref.png
diff --git a/cairo/test/reference/caps-joins.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins.rgb24.ref.png
diff --git a/cairo/test/reference/caps-joins.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins.traps.argb32.ref.png
diff --git a/cairo/test/reference/caps-joins.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-joins.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/caps-joins.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-joins.traps.rgb24.ref.png
diff --git a/cairo/test/reference/caps-sub-paths.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/caps-sub-paths.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.argb32.ref.png
diff --git a/cairo/test/reference/caps-sub-paths.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/caps-sub-paths.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.base.argb32.ref.png
diff --git a/cairo/test/reference/caps-sub-paths.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/caps-sub-paths.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.base.rgb24.ref.png
diff --git a/cairo/test/reference/caps-sub-paths.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.image16.ref.png
similarity index 100%
rename from cairo/test/reference/caps-sub-paths.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.image16.ref.png
diff --git a/cairo/test/reference/caps-sub-paths.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.ps.ref.png
similarity index 100%
rename from cairo/test/reference/caps-sub-paths.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.ps.ref.png
diff --git a/cairo/test/reference/caps-sub-paths.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/caps-sub-paths.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.rgb24.ref.png
diff --git a/cairo/test/reference/caps-sub-paths.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/caps-sub-paths.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.traps.argb32.ref.png
diff --git a/cairo/test/reference/caps-sub-paths.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/caps-sub-paths.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.traps.rgb24.ref.png
diff --git a/cairo/test/reference/caps-tails-curve.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-tails-curve.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/caps-tails-curve.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-tails-curve.mask.argb32.ref.png
diff --git a/cairo/test/reference/caps-tails-curve.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-tails-curve.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/caps-tails-curve.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-tails-curve.mask.rgb24.ref.png
diff --git a/cairo/test/reference/caps-tails-curve.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-tails-curve.ps.ref.png
similarity index 100%
rename from cairo/test/reference/caps-tails-curve.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-tails-curve.ps.ref.png
diff --git a/cairo/test/reference/caps-tails-curve.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-tails-curve.ref.png
similarity index 100%
rename from cairo/test/reference/caps-tails-curve.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-tails-curve.ref.png
diff --git a/cairo/test/reference/caps-tails-curve.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-tails-curve.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/caps-tails-curve.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-tails-curve.traps.argb32.ref.png
diff --git a/cairo/test/reference/caps-tails-curve.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-tails-curve.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/caps-tails-curve.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-tails-curve.traps.rgb24.ref.png
diff --git a/cairo/test/reference/caps-tails-curve.xcb.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps-tails-curve.xcb.ref.png
similarity index 100%
rename from cairo/test/reference/caps-tails-curve.xcb.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps-tails-curve.xcb.ref.png
diff --git a/cairo/test/reference/caps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/caps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps.argb32.ref.png
diff --git a/cairo/test/reference/caps.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/caps.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps.base.argb32.ref.png
diff --git a/cairo/test/reference/caps.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/caps.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps.base.rgb24.ref.png
diff --git a/cairo/test/reference/caps.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps.image16.ref.png
similarity index 100%
rename from cairo/test/reference/caps.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps.image16.ref.png
diff --git a/cairo/test/reference/caps.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps.ps.ref.png
similarity index 100%
rename from cairo/test/reference/caps.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps.ps.ref.png
diff --git a/cairo/test/reference/caps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/caps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps.rgb24.ref.png
diff --git a/cairo/test/reference/caps.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/caps.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps.traps.argb32.ref.png
diff --git a/cairo/test/reference/caps.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/caps.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/caps.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/caps.traps.rgb24.ref.png
diff --git a/cairo/test/reference/checkerboard.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/checkerboard.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/checkerboard.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/checkerboard.base.argb32.ref.png
diff --git a/cairo/test/reference/checkerboard.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/checkerboard.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/checkerboard.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/checkerboard.base.rgb24.ref.png
diff --git a/cairo/test/reference/checkerboard.ref.png b/io2d/src/3rd-party/cairo/test/reference/checkerboard.ref.png
similarity index 100%
rename from cairo/test/reference/checkerboard.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/checkerboard.ref.png
diff --git a/cairo/test/reference/clear-source.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clear-source.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clear-source.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clear-source.argb32.ref.png
diff --git a/cairo/test/reference/clear-source.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clear-source.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clear-source.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clear-source.base.argb32.ref.png
diff --git a/cairo/test/reference/clear-source.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clear-source.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clear-source.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clear-source.base.rgb24.ref.png
diff --git a/cairo/test/reference/clear-source.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/clear-source.image16.ref.png
similarity index 100%
rename from cairo/test/reference/clear-source.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clear-source.image16.ref.png
diff --git a/cairo/test/reference/clear-source.pdf.xfail.png b/io2d/src/3rd-party/cairo/test/reference/clear-source.pdf.xfail.png
similarity index 100%
rename from cairo/test/reference/clear-source.pdf.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/clear-source.pdf.xfail.png
diff --git a/cairo/test/reference/clear-source.ps.xfail.png b/io2d/src/3rd-party/cairo/test/reference/clear-source.ps.xfail.png
similarity index 100%
rename from cairo/test/reference/clear-source.ps.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/clear-source.ps.xfail.png
diff --git a/cairo/test/reference/clear-source.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clear-source.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clear-source.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clear-source.rgb24.ref.png
diff --git a/cairo/test/reference/clear-source.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clear-source.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clear-source.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clear-source.traps.argb32.ref.png
diff --git a/cairo/test/reference/clear-source.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clear-source.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clear-source.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clear-source.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clear.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clear.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clear.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clear.argb32.ref.png
diff --git a/cairo/test/reference/clear.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clear.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clear.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clear.base.argb32.ref.png
diff --git a/cairo/test/reference/clear.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clear.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clear.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clear.base.rgb24.ref.png
diff --git a/cairo/test/reference/clear.pdf.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clear.pdf.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clear.pdf.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clear.pdf.argb32.ref.png
diff --git a/cairo/test/reference/clear.ps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clear.ps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clear.ps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clear.ps.argb32.ref.png
diff --git a/cairo/test/reference/clear.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clear.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clear.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clear.quartz.argb32.ref.png
diff --git a/cairo/test/reference/clear.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clear.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clear.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clear.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/clear.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clear.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clear.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clear.rgb24.ref.png
diff --git a/cairo/test/reference/clear.svg12.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/clear.svg12.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/clear.svg12.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/clear.svg12.argb32.xfail.png
diff --git a/cairo/test/reference/clear.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/clear.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/clear.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/clear.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/clear.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clear.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clear.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clear.traps.argb32.ref.png
diff --git a/cairo/test/reference/clear.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clear.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clear.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clear.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-all.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-all.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-all.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-all.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-all.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-all.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-all.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-all.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-all.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-all.ref.png
similarity index 100%
rename from cairo/test/reference/clip-all.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-all.ref.png
diff --git a/cairo/test/reference/clip-complex-bug61492.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-complex-bug61492.ref.png
similarity index 100%
rename from cairo/test/reference/clip-complex-bug61492.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-complex-bug61492.ref.png
diff --git a/cairo/test/reference/clip-complex-shape-eo-aa.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-complex-shape-eo-aa.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-complex-shape-eo-aa.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-complex-shape-eo-aa.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-complex-shape-eo-aa.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-complex-shape-eo-aa.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-complex-shape-eo-aa.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-complex-shape-eo-aa.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-complex-shape-eo-aa.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-complex-shape-eo-aa.ref.png
similarity index 100%
rename from cairo/test/reference/clip-complex-shape-eo-aa.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-complex-shape-eo-aa.ref.png
diff --git a/cairo/test/reference/clip-complex-shape-eo-mono.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-complex-shape-eo-mono.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-complex-shape-eo-mono.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-complex-shape-eo-mono.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-complex-shape-eo-mono.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-complex-shape-eo-mono.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-complex-shape-eo-mono.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-complex-shape-eo-mono.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-complex-shape-eo-mono.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-complex-shape-eo-mono.ref.png
similarity index 100%
rename from cairo/test/reference/clip-complex-shape-eo-mono.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-complex-shape-eo-mono.ref.png
diff --git a/cairo/test/reference/clip-contexts.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-contexts.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-contexts.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-contexts.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-contexts.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-contexts.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-contexts.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-contexts.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-contexts.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-contexts.ref.png
similarity index 100%
rename from cairo/test/reference/clip-contexts.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-contexts.ref.png
diff --git a/cairo/test/reference/clip-device-offset.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-device-offset.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-device-offset.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-device-offset.argb32.ref.png
diff --git a/cairo/test/reference/clip-device-offset.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-device-offset.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-device-offset.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-device-offset.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-device-offset.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-device-offset.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-device-offset.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-device-offset.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-device-offset.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-device-offset.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-device-offset.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-device-offset.rgb24.ref.png
diff --git a/cairo/test/reference/clip-disjoint-hatching.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-disjoint-hatching.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-disjoint-hatching.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-disjoint-hatching.argb32.ref.png
diff --git a/cairo/test/reference/clip-disjoint-hatching.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-disjoint-hatching.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-disjoint-hatching.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-disjoint-hatching.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-disjoint-hatching.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-disjoint-hatching.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-disjoint-hatching.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-disjoint-hatching.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-disjoint-hatching.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-disjoint-hatching.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-disjoint-hatching.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-disjoint-hatching.mask.argb32.ref.png
diff --git a/cairo/test/reference/clip-disjoint-hatching.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-disjoint-hatching.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-disjoint-hatching.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-disjoint-hatching.mask.rgb24.ref.png
diff --git a/cairo/test/reference/clip-disjoint-hatching.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-disjoint-hatching.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-disjoint-hatching.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-disjoint-hatching.rgb24.ref.png
diff --git a/cairo/test/reference/clip-disjoint-hatching.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-disjoint-hatching.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-disjoint-hatching.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-disjoint-hatching.traps.argb32.ref.png
diff --git a/cairo/test/reference/clip-disjoint-hatching.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-disjoint-hatching.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-disjoint-hatching.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-disjoint-hatching.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-disjoint-quad.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-disjoint-quad.ref.png
similarity index 100%
rename from cairo/test/reference/clip-disjoint-quad.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-disjoint-quad.ref.png
diff --git a/cairo/test/reference/clip-disjoint-quad.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-disjoint-quad.traps.ref.png
similarity index 100%
rename from cairo/test/reference/clip-disjoint-quad.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-disjoint-quad.traps.ref.png
diff --git a/cairo/test/reference/clip-disjoint.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-disjoint.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-disjoint.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-disjoint.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-disjoint.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-disjoint.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-disjoint.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-disjoint.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-disjoint.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-disjoint.image16.ref.png
similarity index 100%
rename from cairo/test/reference/clip-disjoint.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-disjoint.image16.ref.png
diff --git a/cairo/test/reference/clip-disjoint.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-disjoint.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-disjoint.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-disjoint.mask.argb32.ref.png
diff --git a/cairo/test/reference/clip-disjoint.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-disjoint.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-disjoint.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-disjoint.mask.rgb24.ref.png
diff --git a/cairo/test/reference/clip-disjoint.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-disjoint.ps.ref.png
similarity index 100%
rename from cairo/test/reference/clip-disjoint.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-disjoint.ps.ref.png
diff --git a/cairo/test/reference/clip-disjoint.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-disjoint.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/clip-disjoint.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-disjoint.quartz.ref.png
diff --git a/cairo/test/reference/clip-disjoint.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-disjoint.ref.png
similarity index 100%
rename from cairo/test/reference/clip-disjoint.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-disjoint.ref.png
diff --git a/cairo/test/reference/clip-disjoint.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-disjoint.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-disjoint.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-disjoint.traps.argb32.ref.png
diff --git a/cairo/test/reference/clip-disjoint.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-disjoint.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-disjoint.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-disjoint.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-empty-group.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-empty-group.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-empty-group.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-empty-group.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-empty-group.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-empty-group.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-empty-group.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-empty-group.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-empty-group.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-empty-group.ref.png
similarity index 100%
rename from cairo/test/reference/clip-empty-group.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-empty-group.ref.png
diff --git a/cairo/test/reference/clip-empty-save.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-empty-save.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-empty-save.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-empty-save.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-empty-save.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-empty-save.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-empty-save.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-empty-save.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-empty-save.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-empty-save.ref.png
similarity index 100%
rename from cairo/test/reference/clip-empty-save.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-empty-save.ref.png
diff --git a/cairo/test/reference/clip-empty.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-empty.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-empty.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-empty.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-empty.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-empty.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-empty.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-empty.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-empty.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-empty.ref.png
similarity index 100%
rename from cairo/test/reference/clip-empty.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-empty.ref.png
diff --git a/cairo/test/reference/clip-fill-eo-unbounded.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-eo-unbounded.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill-eo-unbounded.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-eo-unbounded.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill-eo-unbounded.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-eo-unbounded.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill-eo-unbounded.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.image16.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-eo-unbounded.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.image16.ref.png
diff --git a/cairo/test/reference/clip-fill-eo-unbounded.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-eo-unbounded.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.mask.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill-eo-unbounded.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-eo-unbounded.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.mask.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill-eo-unbounded.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-eo-unbounded.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.quartz.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill-eo-unbounded.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-eo-unbounded.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill-eo-unbounded.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-eo-unbounded.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill-eo-unbounded.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/clip-fill-eo-unbounded.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/clip-fill-eo-unbounded.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-eo-unbounded.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.traps.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill-eo-unbounded.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-eo-unbounded.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill-eo-unbounded.xlib-fallback.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.xlib-fallback.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-eo-unbounded.xlib-fallback.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-eo-unbounded.xlib-fallback.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill-no-op.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-no-op.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-no-op.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-no-op.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill-no-op.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-no-op.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-no-op.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-no-op.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill-no-op.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-no-op.image16.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-no-op.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-no-op.image16.ref.png
diff --git a/cairo/test/reference/clip-fill-no-op.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-no-op.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-no-op.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-no-op.ref.png
diff --git a/cairo/test/reference/clip-fill-nz-unbounded.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-nz-unbounded.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill-nz-unbounded.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-nz-unbounded.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill-nz-unbounded.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-nz-unbounded.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill-nz-unbounded.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.image16.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-nz-unbounded.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.image16.ref.png
diff --git a/cairo/test/reference/clip-fill-nz-unbounded.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-nz-unbounded.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.mask.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill-nz-unbounded.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-nz-unbounded.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.mask.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill-nz-unbounded.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-nz-unbounded.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.quartz.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill-nz-unbounded.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-nz-unbounded.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill-nz-unbounded.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-nz-unbounded.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill-nz-unbounded.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/clip-fill-nz-unbounded.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/clip-fill-nz-unbounded.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-nz-unbounded.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.traps.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill-nz-unbounded.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-nz-unbounded.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill-nz-unbounded.xlib-fallback.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.xlib-fallback.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-nz-unbounded.xlib-fallback.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-nz-unbounded.xlib-fallback.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill-rule-pixel-aligned.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-rule-pixel-aligned.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-rule-pixel-aligned.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-rule-pixel-aligned.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill-rule-pixel-aligned.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-rule-pixel-aligned.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-rule-pixel-aligned.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-rule-pixel-aligned.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill-rule-pixel-aligned.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-rule-pixel-aligned.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-rule-pixel-aligned.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-rule-pixel-aligned.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill-rule-pixel-aligned.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-rule-pixel-aligned.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-rule-pixel-aligned.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-rule-pixel-aligned.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill-rule.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-rule.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill-rule.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-rule.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill-rule.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-rule.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill-rule.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.image16.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-rule.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.image16.ref.png
diff --git a/cairo/test/reference/clip-fill-rule.pdf.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.pdf.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-rule.pdf.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.pdf.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill-rule.ps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.ps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-rule.ps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.ps.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill-rule.ps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.ps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-rule.ps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.ps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill-rule.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-rule.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill-rule.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-rule.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill-rule.test-paginated.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.test-paginated.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-rule.test-paginated.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.test-paginated.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill-rule.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-rule.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.traps.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill-rule.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill-rule.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill.image16.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill.image16.ref.png
diff --git a/cairo/test/reference/clip-fill.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill.mask.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill.mask.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill.ps.xfail.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill.ps.xfail.png
similarity index 100%
rename from cairo/test/reference/clip-fill.ps.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill.ps.xfail.png
diff --git a/cairo/test/reference/clip-fill.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill.quartz.ref.png
diff --git a/cairo/test/reference/clip-fill.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill.traps.argb32.ref.png
diff --git a/cairo/test/reference/clip-fill.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-fill.xlib-fallback.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-fill.xlib-fallback.ref.png
similarity index 100%
rename from cairo/test/reference/clip-fill.xlib-fallback.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-fill.xlib-fallback.ref.png
diff --git a/cairo/test/reference/clip-group-shapes-aligned-rectangles.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-aligned-rectangles.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-group-shapes-aligned-rectangles.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-aligned-rectangles.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-group-shapes-aligned-rectangles.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-aligned-rectangles.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-group-shapes-aligned-rectangles.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-aligned-rectangles.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-group-shapes-aligned-rectangles.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-aligned-rectangles.ref.png
similarity index 100%
rename from cairo/test/reference/clip-group-shapes-aligned-rectangles.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-aligned-rectangles.ref.png
diff --git a/cairo/test/reference/clip-group-shapes-circles.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-circles.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-group-shapes-circles.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-circles.argb32.ref.png
diff --git a/cairo/test/reference/clip-group-shapes-circles.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-circles.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-group-shapes-circles.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-circles.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-group-shapes-circles.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-circles.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-group-shapes-circles.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-circles.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-group-shapes-circles.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-circles.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-group-shapes-circles.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-circles.mask.argb32.ref.png
diff --git a/cairo/test/reference/clip-group-shapes-circles.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-circles.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-group-shapes-circles.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-circles.mask.rgb24.ref.png
diff --git a/cairo/test/reference/clip-group-shapes-circles.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-circles.ps.ref.png
similarity index 100%
rename from cairo/test/reference/clip-group-shapes-circles.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-circles.ps.ref.png
diff --git a/cairo/test/reference/clip-group-shapes-circles.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-circles.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/clip-group-shapes-circles.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-circles.quartz.ref.png
diff --git a/cairo/test/reference/clip-group-shapes-circles.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-circles.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-group-shapes-circles.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-circles.rgb24.ref.png
diff --git a/cairo/test/reference/clip-group-shapes-circles.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-circles.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-group-shapes-circles.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-circles.traps.argb32.ref.png
diff --git a/cairo/test/reference/clip-group-shapes-circles.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-circles.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-group-shapes-circles.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-circles.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-group-shapes-unaligned-rectangles.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-unaligned-rectangles.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-group-shapes-unaligned-rectangles.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-unaligned-rectangles.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-group-shapes-unaligned-rectangles.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-unaligned-rectangles.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-group-shapes-unaligned-rectangles.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-unaligned-rectangles.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-group-shapes-unaligned-rectangles.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-unaligned-rectangles.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-group-shapes-unaligned-rectangles.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-unaligned-rectangles.mask.argb32.ref.png
diff --git a/cairo/test/reference/clip-group-shapes-unaligned-rectangles.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-unaligned-rectangles.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-group-shapes-unaligned-rectangles.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-unaligned-rectangles.mask.rgb24.ref.png
diff --git a/cairo/test/reference/clip-group-shapes-unaligned-rectangles.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-unaligned-rectangles.ref.png
similarity index 100%
rename from cairo/test/reference/clip-group-shapes-unaligned-rectangles.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-unaligned-rectangles.ref.png
diff --git a/cairo/test/reference/clip-group-shapes-unaligned-rectangles.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-unaligned-rectangles.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-group-shapes-unaligned-rectangles.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-unaligned-rectangles.traps.argb32.ref.png
diff --git a/cairo/test/reference/clip-group-shapes-unaligned-rectangles.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-unaligned-rectangles.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-group-shapes-unaligned-rectangles.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-group-shapes-unaligned-rectangles.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-image.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-image.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-image.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-image.argb32.ref.png
diff --git a/cairo/test/reference/clip-image.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-image.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-image.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-image.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-image.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-image.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-image.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-image.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-image.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-image.image16.ref.png
similarity index 100%
rename from cairo/test/reference/clip-image.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-image.image16.ref.png
diff --git a/cairo/test/reference/clip-image.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-image.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-image.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-image.mask.argb32.ref.png
diff --git a/cairo/test/reference/clip-image.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-image.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-image.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-image.mask.rgb24.ref.png
diff --git a/cairo/test/reference/clip-image.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-image.ps.ref.png
similarity index 100%
rename from cairo/test/reference/clip-image.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-image.ps.ref.png
diff --git a/cairo/test/reference/clip-image.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-image.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-image.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-image.rgb24.ref.png
diff --git a/cairo/test/reference/clip-image.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-image.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-image.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-image.traps.argb32.ref.png
diff --git a/cairo/test/reference/clip-image.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-image.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-image.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-image.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-intersect.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-intersect.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-intersect.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-intersect.argb32.ref.png
diff --git a/cairo/test/reference/clip-intersect.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-intersect.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-intersect.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-intersect.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-intersect.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-intersect.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-intersect.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-intersect.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-intersect.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-intersect.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-intersect.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-intersect.rgb24.ref.png
diff --git a/cairo/test/reference/clip-intersect.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-intersect.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-intersect.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-intersect.traps.argb32.ref.png
diff --git a/cairo/test/reference/clip-intersect.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-intersect.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-intersect.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-intersect.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-mixed-antialias.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-mixed-antialias.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-mixed-antialias.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-mixed-antialias.argb32.ref.png
diff --git a/cairo/test/reference/clip-mixed-antialias.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-mixed-antialias.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-mixed-antialias.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-mixed-antialias.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-mixed-antialias.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-mixed-antialias.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-mixed-antialias.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-mixed-antialias.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-mixed-antialias.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-mixed-antialias.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-mixed-antialias.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-mixed-antialias.rgb24.ref.png
diff --git a/cairo/test/reference/clip-mixed-antialias.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-mixed-antialias.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-mixed-antialias.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-mixed-antialias.traps.argb32.ref.png
diff --git a/cairo/test/reference/clip-mixed-antialias.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-mixed-antialias.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-mixed-antialias.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-mixed-antialias.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-nesting.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-nesting.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-nesting.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-nesting.argb32.ref.png
diff --git a/cairo/test/reference/clip-nesting.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-nesting.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-nesting.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-nesting.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-nesting.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-nesting.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-nesting.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-nesting.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-nesting.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-nesting.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-nesting.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-nesting.mask.rgb24.ref.png
diff --git a/cairo/test/reference/clip-nesting.pdf.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-nesting.pdf.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-nesting.pdf.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-nesting.pdf.argb32.ref.png
diff --git a/cairo/test/reference/clip-nesting.ps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-nesting.ps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-nesting.ps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-nesting.ps.argb32.ref.png
diff --git a/cairo/test/reference/clip-nesting.ps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-nesting.ps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-nesting.ps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-nesting.ps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-nesting.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-nesting.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-nesting.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-nesting.quartz.argb32.ref.png
diff --git a/cairo/test/reference/clip-nesting.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-nesting.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-nesting.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-nesting.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/clip-nesting.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-nesting.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-nesting.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-nesting.rgb24.ref.png
diff --git a/cairo/test/reference/clip-nesting.test-paginated.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-nesting.test-paginated.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-nesting.test-paginated.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-nesting.test-paginated.rgb24.ref.png
diff --git a/cairo/test/reference/clip-nesting.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-nesting.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-nesting.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-nesting.traps.argb32.ref.png
diff --git a/cairo/test/reference/clip-nesting.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-nesting.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-nesting.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-nesting.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-operator.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-operator.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.argb32.ref.png
diff --git a/cairo/test/reference/clip-operator.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-operator.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-operator.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-operator.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-operator.gl.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.gl.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-operator.gl.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.gl.argb32.ref.png
diff --git a/cairo/test/reference/clip-operator.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.image16.ref.png
similarity index 100%
rename from cairo/test/reference/clip-operator.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.image16.ref.png
diff --git a/cairo/test/reference/clip-operator.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-operator.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.mask.argb32.ref.png
diff --git a/cairo/test/reference/clip-operator.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-operator.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.mask.rgb24.ref.png
diff --git a/cairo/test/reference/clip-operator.pdf.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.pdf.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-operator.pdf.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.pdf.argb32.ref.png
diff --git a/cairo/test/reference/clip-operator.pdf.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.pdf.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-operator.pdf.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.pdf.rgb24.ref.png
diff --git a/cairo/test/reference/clip-operator.ps2.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.ps2.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-operator.ps2.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.ps2.rgb24.ref.png
diff --git a/cairo/test/reference/clip-operator.ps3.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.ps3.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-operator.ps3.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.ps3.argb32.ref.png
diff --git a/cairo/test/reference/clip-operator.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/clip-operator.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.ps3.ref.png
diff --git a/cairo/test/reference/clip-operator.ps3.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.ps3.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-operator.ps3.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.ps3.rgb24.ref.png
diff --git a/cairo/test/reference/clip-operator.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-operator.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.quartz.argb32.ref.png
diff --git a/cairo/test/reference/clip-operator.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-operator.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/clip-operator.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-operator.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.rgb24.ref.png
diff --git a/cairo/test/reference/clip-operator.svg12.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.svg12.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/clip-operator.svg12.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.svg12.argb32.xfail.png
diff --git a/cairo/test/reference/clip-operator.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/clip-operator.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/clip-operator.test-paginated.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.test-paginated.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-operator.test-paginated.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.test-paginated.argb32.ref.png
diff --git a/cairo/test/reference/clip-operator.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-operator.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.traps.argb32.ref.png
diff --git a/cairo/test/reference/clip-operator.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-operator.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-operator.xlib-fallback.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-operator.xlib-fallback.ref.png
similarity index 100%
rename from cairo/test/reference/clip-operator.xlib-fallback.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-operator.xlib-fallback.ref.png
diff --git a/cairo/test/reference/clip-polygons.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-polygons.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-polygons.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-polygons.argb32.ref.png
diff --git a/cairo/test/reference/clip-polygons.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-polygons.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-polygons.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-polygons.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-polygons.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-polygons.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-polygons.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-polygons.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-polygons.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-polygons.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-polygons.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-polygons.mask.argb32.ref.png
diff --git a/cairo/test/reference/clip-polygons.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-polygons.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-polygons.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-polygons.mask.rgb24.ref.png
diff --git a/cairo/test/reference/clip-polygons.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-polygons.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-polygons.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-polygons.rgb24.ref.png
diff --git a/cairo/test/reference/clip-polygons.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-polygons.traps.ref.png
similarity index 100%
rename from cairo/test/reference/clip-polygons.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-polygons.traps.ref.png
diff --git a/cairo/test/reference/clip-push-group.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-push-group.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-push-group.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-push-group.argb32.ref.png
diff --git a/cairo/test/reference/clip-push-group.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-push-group.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-push-group.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-push-group.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-push-group.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-push-group.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-push-group.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-push-group.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-push-group.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-push-group.image16.ref.png
similarity index 100%
rename from cairo/test/reference/clip-push-group.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-push-group.image16.ref.png
diff --git a/cairo/test/reference/clip-push-group.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-push-group.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/clip-push-group.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-push-group.pdf.ref.png
diff --git a/cairo/test/reference/clip-push-group.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-push-group.ps.ref.png
similarity index 100%
rename from cairo/test/reference/clip-push-group.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-push-group.ps.ref.png
diff --git a/cairo/test/reference/clip-push-group.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-push-group.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/clip-push-group.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-push-group.quartz.ref.png
diff --git a/cairo/test/reference/clip-push-group.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-push-group.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-push-group.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-push-group.rgb24.ref.png
diff --git a/cairo/test/reference/clip-push-group.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-push-group.svg.ref.png
similarity index 100%
rename from cairo/test/reference/clip-push-group.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-push-group.svg.ref.png
diff --git a/cairo/test/reference/clip-push-group.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-push-group.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-push-group.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-push-group.traps.argb32.ref.png
diff --git a/cairo/test/reference/clip-push-group.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-push-group.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-push-group.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-push-group.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-rectilinear.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-rectilinear.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-rectilinear.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-rectilinear.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-rectilinear.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-rectilinear.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-rectilinear.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-rectilinear.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-rectilinear.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-rectilinear.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-rectilinear.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-rectilinear.mask.argb32.ref.png
diff --git a/cairo/test/reference/clip-rectilinear.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-rectilinear.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-rectilinear.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-rectilinear.mask.rgb24.ref.png
diff --git a/cairo/test/reference/clip-rectilinear.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-rectilinear.ref.png
similarity index 100%
rename from cairo/test/reference/clip-rectilinear.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-rectilinear.ref.png
diff --git a/cairo/test/reference/clip-rectilinear.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-rectilinear.traps.ref.png
similarity index 100%
rename from cairo/test/reference/clip-rectilinear.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-rectilinear.traps.ref.png
diff --git a/cairo/test/reference/clip-rotate-image-surface-paint.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-rotate-image-surface-paint.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-rotate-image-surface-paint.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-rotate-image-surface-paint.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-rotate-image-surface-paint.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-rotate-image-surface-paint.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-rotate-image-surface-paint.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-rotate-image-surface-paint.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-rotate-image-surface-paint.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-rotate-image-surface-paint.ref.png
similarity index 100%
rename from cairo/test/reference/clip-rotate-image-surface-paint.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-rotate-image-surface-paint.ref.png
diff --git a/cairo/test/reference/clip-shape.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-shape.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-shape.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-shape.argb32.ref.png
diff --git a/cairo/test/reference/clip-shape.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-shape.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-shape.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-shape.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-shape.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-shape.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-shape.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-shape.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-shape.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-shape.image16.ref.png
similarity index 100%
rename from cairo/test/reference/clip-shape.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-shape.image16.ref.png
diff --git a/cairo/test/reference/clip-shape.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-shape.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-shape.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-shape.mask.argb32.ref.png
diff --git a/cairo/test/reference/clip-shape.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-shape.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-shape.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-shape.mask.rgb24.ref.png
diff --git a/cairo/test/reference/clip-shape.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-shape.ps.ref.png
similarity index 100%
rename from cairo/test/reference/clip-shape.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-shape.ps.ref.png
diff --git a/cairo/test/reference/clip-shape.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-shape.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/clip-shape.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-shape.quartz.ref.png
diff --git a/cairo/test/reference/clip-shape.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-shape.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-shape.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-shape.rgb24.ref.png
diff --git a/cairo/test/reference/clip-shape.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-shape.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-shape.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-shape.traps.argb32.ref.png
diff --git a/cairo/test/reference/clip-shape.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-shape.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-shape.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-shape.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-shape.xlib-fallback.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-shape.xlib-fallback.ref.png
similarity index 100%
rename from cairo/test/reference/clip-shape.xlib-fallback.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-shape.xlib-fallback.ref.png
diff --git a/cairo/test/reference/clip-stroke-no-op.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke-no-op.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke-no-op.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke-no-op.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-stroke-no-op.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke-no-op.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke-no-op.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke-no-op.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-stroke-no-op.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke-no-op.image16.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke-no-op.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke-no-op.image16.ref.png
diff --git a/cairo/test/reference/clip-stroke-no-op.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke-no-op.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke-no-op.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke-no-op.ref.png
diff --git a/cairo/test/reference/clip-stroke-unbounded.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke-unbounded.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.argb32.ref.png
diff --git a/cairo/test/reference/clip-stroke-unbounded.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke-unbounded.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-stroke-unbounded.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke-unbounded.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-stroke-unbounded.image16.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.image16.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke-unbounded.image16.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.image16.rgb24.ref.png
diff --git a/cairo/test/reference/clip-stroke-unbounded.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke-unbounded.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.mask.argb32.ref.png
diff --git a/cairo/test/reference/clip-stroke-unbounded.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke-unbounded.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.mask.rgb24.ref.png
diff --git a/cairo/test/reference/clip-stroke-unbounded.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke-unbounded.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.quartz.argb32.ref.png
diff --git a/cairo/test/reference/clip-stroke-unbounded.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke-unbounded.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/clip-stroke-unbounded.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke-unbounded.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.rgb24.ref.png
diff --git a/cairo/test/reference/clip-stroke-unbounded.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/clip-stroke-unbounded.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/clip-stroke-unbounded.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke-unbounded.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.traps.argb32.ref.png
diff --git a/cairo/test/reference/clip-stroke-unbounded.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke-unbounded.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-stroke-unbounded.xlib-fallback.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.xlib-fallback.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke-unbounded.xlib-fallback.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke-unbounded.xlib-fallback.rgb24.ref.png
diff --git a/cairo/test/reference/clip-stroke.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-stroke.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-stroke.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke.image16.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke.image16.ref.png
diff --git a/cairo/test/reference/clip-stroke.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke.mask.argb32.ref.png
diff --git a/cairo/test/reference/clip-stroke.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke.mask.rgb24.ref.png
diff --git a/cairo/test/reference/clip-stroke.ps.xfail.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke.ps.xfail.png
similarity index 100%
rename from cairo/test/reference/clip-stroke.ps.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke.ps.xfail.png
diff --git a/cairo/test/reference/clip-stroke.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke.quartz.ref.png
diff --git a/cairo/test/reference/clip-stroke.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke.ref.png
diff --git a/cairo/test/reference/clip-stroke.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke.traps.argb32.ref.png
diff --git a/cairo/test/reference/clip-stroke.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-stroke.xlib-fallback.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-stroke.xlib-fallback.ref.png
similarity index 100%
rename from cairo/test/reference/clip-stroke.xlib-fallback.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-stroke.xlib-fallback.ref.png
diff --git a/cairo/test/reference/clip-text.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-text.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-text.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-text.argb32.ref.png
diff --git a/cairo/test/reference/clip-text.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-text.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-text.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-text.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-text.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-text.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-text.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-text.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-text.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-text.image16.ref.png
similarity index 100%
rename from cairo/test/reference/clip-text.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-text.image16.ref.png
diff --git a/cairo/test/reference/clip-text.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-text.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-text.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-text.mask.argb32.ref.png
diff --git a/cairo/test/reference/clip-text.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-text.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-text.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-text.mask.rgb24.ref.png
diff --git a/cairo/test/reference/clip-text.ps.xfail.png b/io2d/src/3rd-party/cairo/test/reference/clip-text.ps.xfail.png
similarity index 100%
rename from cairo/test/reference/clip-text.ps.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-text.ps.xfail.png
diff --git a/cairo/test/reference/clip-text.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-text.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/clip-text.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-text.quartz.ref.png
diff --git a/cairo/test/reference/clip-text.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-text.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-text.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-text.rgb24.ref.png
diff --git a/cairo/test/reference/clip-text.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-text.svg.ref.png
similarity index 100%
rename from cairo/test/reference/clip-text.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-text.svg.ref.png
diff --git a/cairo/test/reference/clip-text.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-text.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-text.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-text.traps.argb32.ref.png
diff --git a/cairo/test/reference/clip-text.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-text.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-text.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-text.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-twice-rectangle.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-twice-rectangle.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-twice-rectangle.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-twice-rectangle.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-twice-rectangle.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-twice-rectangle.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-twice-rectangle.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-twice-rectangle.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-twice-rectangle.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-twice-rectangle.ref.png
similarity index 100%
rename from cairo/test/reference/clip-twice-rectangle.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-twice-rectangle.ref.png
diff --git a/cairo/test/reference/clip-twice.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-twice.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-twice.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-twice.argb32.ref.png
diff --git a/cairo/test/reference/clip-twice.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-twice.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-twice.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-twice.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-twice.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-twice.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-twice.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-twice.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-twice.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-twice.image16.ref.png
similarity index 100%
rename from cairo/test/reference/clip-twice.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-twice.image16.ref.png
diff --git a/cairo/test/reference/clip-twice.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-twice.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-twice.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-twice.mask.argb32.ref.png
diff --git a/cairo/test/reference/clip-twice.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-twice.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-twice.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-twice.mask.rgb24.ref.png
diff --git a/cairo/test/reference/clip-twice.pdf.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-twice.pdf.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-twice.pdf.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-twice.pdf.argb32.ref.png
diff --git a/cairo/test/reference/clip-twice.ps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-twice.ps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-twice.ps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-twice.ps.argb32.ref.png
diff --git a/cairo/test/reference/clip-twice.ps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-twice.ps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-twice.ps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-twice.ps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-twice.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-twice.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-twice.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-twice.quartz.argb32.ref.png
diff --git a/cairo/test/reference/clip-twice.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-twice.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-twice.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-twice.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/clip-twice.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-twice.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-twice.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-twice.rgb24.ref.png
diff --git a/cairo/test/reference/clip-twice.test-paginated.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-twice.test-paginated.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-twice.test-paginated.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-twice.test-paginated.argb32.ref.png
diff --git a/cairo/test/reference/clip-twice.test-paginated.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-twice.test-paginated.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-twice.test-paginated.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-twice.test-paginated.rgb24.ref.png
diff --git a/cairo/test/reference/clip-twice.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-twice.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-twice.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-twice.traps.argb32.ref.png
diff --git a/cairo/test/reference/clip-twice.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-twice.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-twice.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-twice.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clip-unbounded.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-unbounded.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-unbounded.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-unbounded.argb32.ref.png
diff --git a/cairo/test/reference/clip-unbounded.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-unbounded.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-unbounded.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-unbounded.base.argb32.ref.png
diff --git a/cairo/test/reference/clip-unbounded.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-unbounded.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-unbounded.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-unbounded.base.rgb24.ref.png
diff --git a/cairo/test/reference/clip-unbounded.pdf.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/clip-unbounded.pdf.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/clip-unbounded.pdf.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-unbounded.pdf.argb32.xfail.png
diff --git a/cairo/test/reference/clip-unbounded.pdf.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/clip-unbounded.pdf.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/clip-unbounded.pdf.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-unbounded.pdf.rgb24.xfail.png
diff --git a/cairo/test/reference/clip-unbounded.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-unbounded.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-unbounded.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-unbounded.rgb24.ref.png
diff --git a/cairo/test/reference/clip-unbounded.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/clip-unbounded.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/clip-unbounded.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-unbounded.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/clip-xlib-fallback.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-xlib-fallback.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-xlib-fallback.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-xlib-fallback.rgb24.ref.png
diff --git a/cairo/test/reference/clip-xlib-window.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-xlib-window.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-xlib-window.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-xlib-window.rgb24.ref.png
diff --git a/cairo/test/reference/clip-xlib.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-xlib.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clip-xlib.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-xlib.argb32.ref.png
diff --git a/cairo/test/reference/clip-xlib.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clip-xlib.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clip-xlib.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clip-xlib.rgb24.ref.png
diff --git a/cairo/test/reference/clipped-group.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clipped-group.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clipped-group.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clipped-group.argb32.ref.png
diff --git a/cairo/test/reference/clipped-group.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clipped-group.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clipped-group.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clipped-group.base.argb32.ref.png
diff --git a/cairo/test/reference/clipped-group.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clipped-group.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clipped-group.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clipped-group.base.rgb24.ref.png
diff --git a/cairo/test/reference/clipped-group.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/clipped-group.image16.ref.png
similarity index 100%
rename from cairo/test/reference/clipped-group.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clipped-group.image16.ref.png
diff --git a/cairo/test/reference/clipped-group.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clipped-group.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clipped-group.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clipped-group.mask.argb32.ref.png
diff --git a/cairo/test/reference/clipped-group.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clipped-group.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clipped-group.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clipped-group.mask.rgb24.ref.png
diff --git a/cairo/test/reference/clipped-group.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/clipped-group.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/clipped-group.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clipped-group.pdf.ref.png
diff --git a/cairo/test/reference/clipped-group.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/clipped-group.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/clipped-group.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clipped-group.ps2.ref.png
diff --git a/cairo/test/reference/clipped-group.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/clipped-group.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/clipped-group.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clipped-group.ps3.ref.png
diff --git a/cairo/test/reference/clipped-group.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/clipped-group.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/clipped-group.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clipped-group.quartz.ref.png
diff --git a/cairo/test/reference/clipped-group.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clipped-group.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clipped-group.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clipped-group.rgb24.ref.png
diff --git a/cairo/test/reference/clipped-group.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/clipped-group.svg.ref.png
similarity index 100%
rename from cairo/test/reference/clipped-group.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clipped-group.svg.ref.png
diff --git a/cairo/test/reference/clipped-group.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clipped-group.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clipped-group.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clipped-group.traps.argb32.ref.png
diff --git a/cairo/test/reference/clipped-group.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clipped-group.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clipped-group.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clipped-group.traps.rgb24.ref.png
diff --git a/cairo/test/reference/clipped-group.xlib-fallback.ref.png b/io2d/src/3rd-party/cairo/test/reference/clipped-group.xlib-fallback.ref.png
similarity index 100%
rename from cairo/test/reference/clipped-group.xlib-fallback.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clipped-group.xlib-fallback.ref.png
diff --git a/cairo/test/reference/clipped-surface.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/clipped-surface.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/clipped-surface.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clipped-surface.base.argb32.ref.png
diff --git a/cairo/test/reference/clipped-surface.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/clipped-surface.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/clipped-surface.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clipped-surface.base.rgb24.ref.png
diff --git a/cairo/test/reference/clipped-surface.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/clipped-surface.image16.ref.png
similarity index 100%
rename from cairo/test/reference/clipped-surface.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clipped-surface.image16.ref.png
diff --git a/cairo/test/reference/clipped-surface.ref.png b/io2d/src/3rd-party/cairo/test/reference/clipped-surface.ref.png
similarity index 100%
rename from cairo/test/reference/clipped-surface.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clipped-surface.ref.png
diff --git a/cairo/test/reference/clipped-trapezoids.ref.png b/io2d/src/3rd-party/cairo/test/reference/clipped-trapezoids.ref.png
similarity index 100%
rename from cairo/test/reference/clipped-trapezoids.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/clipped-trapezoids.ref.png
diff --git a/cairo/test/reference/close-path-current-point.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/close-path-current-point.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/close-path-current-point.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/close-path-current-point.base.argb32.ref.png
diff --git a/cairo/test/reference/close-path-current-point.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/close-path-current-point.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/close-path-current-point.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/close-path-current-point.base.rgb24.ref.png
diff --git a/cairo/test/reference/close-path-current-point.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/close-path-current-point.image16.ref.png
similarity index 100%
rename from cairo/test/reference/close-path-current-point.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/close-path-current-point.image16.ref.png
diff --git a/cairo/test/reference/close-path-current-point.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/close-path-current-point.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/close-path-current-point.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/close-path-current-point.mask.argb32.ref.png
diff --git a/cairo/test/reference/close-path-current-point.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/close-path-current-point.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/close-path-current-point.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/close-path-current-point.mask.rgb24.ref.png
diff --git a/cairo/test/reference/close-path-current-point.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/close-path-current-point.ps.ref.png
similarity index 100%
rename from cairo/test/reference/close-path-current-point.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/close-path-current-point.ps.ref.png
diff --git a/cairo/test/reference/close-path-current-point.ref.png b/io2d/src/3rd-party/cairo/test/reference/close-path-current-point.ref.png
similarity index 100%
rename from cairo/test/reference/close-path-current-point.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/close-path-current-point.ref.png
diff --git a/cairo/test/reference/close-path-current-point.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/close-path-current-point.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/close-path-current-point.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/close-path-current-point.traps.argb32.ref.png
diff --git a/cairo/test/reference/close-path-current-point.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/close-path-current-point.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/close-path-current-point.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/close-path-current-point.traps.rgb24.ref.png
diff --git a/cairo/test/reference/close-path.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/close-path.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/close-path.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/close-path.argb32.ref.png
diff --git a/cairo/test/reference/close-path.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/close-path.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/close-path.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/close-path.base.argb32.ref.png
diff --git a/cairo/test/reference/close-path.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/close-path.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/close-path.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/close-path.base.rgb24.ref.png
diff --git a/cairo/test/reference/close-path.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/close-path.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/close-path.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/close-path.ps2.ref.png
diff --git a/cairo/test/reference/close-path.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/close-path.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/close-path.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/close-path.ps3.ref.png
diff --git a/cairo/test/reference/close-path.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/close-path.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/close-path.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/close-path.rgb24.ref.png
diff --git a/cairo/test/reference/close-path.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/close-path.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/close-path.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/close-path.traps.argb32.ref.png
diff --git a/cairo/test/reference/close-path.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/close-path.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/close-path.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/close-path.traps.rgb24.ref.png
diff --git a/cairo/test/reference/composite-integer-translate-over-repeat.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over-repeat.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/composite-integer-translate-over-repeat.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over-repeat.base.argb32.ref.png
diff --git a/cairo/test/reference/composite-integer-translate-over-repeat.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over-repeat.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/composite-integer-translate-over-repeat.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over-repeat.base.rgb24.ref.png
diff --git a/cairo/test/reference/composite-integer-translate-over-repeat.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over-repeat.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/composite-integer-translate-over-repeat.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over-repeat.ps2.ref.png
diff --git a/cairo/test/reference/composite-integer-translate-over-repeat.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over-repeat.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/composite-integer-translate-over-repeat.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over-repeat.ps3.ref.png
diff --git a/cairo/test/reference/composite-integer-translate-over-repeat.ref.png b/io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over-repeat.ref.png
similarity index 100%
rename from cairo/test/reference/composite-integer-translate-over-repeat.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over-repeat.ref.png
diff --git a/cairo/test/reference/composite-integer-translate-over.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/composite-integer-translate-over.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over.base.argb32.ref.png
diff --git a/cairo/test/reference/composite-integer-translate-over.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/composite-integer-translate-over.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over.base.rgb24.ref.png
diff --git a/cairo/test/reference/composite-integer-translate-over.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over.image16.ref.png
similarity index 100%
rename from cairo/test/reference/composite-integer-translate-over.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over.image16.ref.png
diff --git a/cairo/test/reference/composite-integer-translate-over.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/composite-integer-translate-over.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over.ps2.ref.png
diff --git a/cairo/test/reference/composite-integer-translate-over.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/composite-integer-translate-over.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over.ps3.ref.png
diff --git a/cairo/test/reference/composite-integer-translate-over.ref.png b/io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over.ref.png
similarity index 100%
rename from cairo/test/reference/composite-integer-translate-over.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-over.ref.png
diff --git a/cairo/test/reference/composite-integer-translate-source.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-source.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/composite-integer-translate-source.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-source.base.argb32.ref.png
diff --git a/cairo/test/reference/composite-integer-translate-source.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-source.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/composite-integer-translate-source.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-source.base.rgb24.ref.png
diff --git a/cairo/test/reference/composite-integer-translate-source.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-source.image16.ref.png
similarity index 100%
rename from cairo/test/reference/composite-integer-translate-source.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-source.image16.ref.png
diff --git a/cairo/test/reference/composite-integer-translate-source.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-source.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/composite-integer-translate-source.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-source.ps2.ref.png
diff --git a/cairo/test/reference/composite-integer-translate-source.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-source.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/composite-integer-translate-source.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-source.ps3.ref.png
diff --git a/cairo/test/reference/composite-integer-translate-source.ref.png b/io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-source.ref.png
similarity index 100%
rename from cairo/test/reference/composite-integer-translate-source.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-source.ref.png
diff --git a/cairo/test/reference/composite-integer-translate-source.svg12.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-source.svg12.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/composite-integer-translate-source.svg12.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-source.svg12.argb32.xfail.png
diff --git a/cairo/test/reference/composite-integer-translate-source.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-source.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/composite-integer-translate-source.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/composite-integer-translate-source.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/copy-disjoint.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/copy-disjoint.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/copy-disjoint.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/copy-disjoint.base.argb32.ref.png
diff --git a/cairo/test/reference/copy-disjoint.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/copy-disjoint.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/copy-disjoint.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/copy-disjoint.base.rgb24.ref.png
diff --git a/cairo/test/reference/copy-disjoint.ref.png b/io2d/src/3rd-party/cairo/test/reference/copy-disjoint.ref.png
similarity index 100%
rename from cairo/test/reference/copy-disjoint.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/copy-disjoint.ref.png
diff --git a/cairo/test/reference/copy-path.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/copy-path.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/copy-path.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/copy-path.argb32.ref.png
diff --git a/cairo/test/reference/copy-path.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/copy-path.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/copy-path.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/copy-path.base.argb32.ref.png
diff --git a/cairo/test/reference/copy-path.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/copy-path.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/copy-path.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/copy-path.base.rgb24.ref.png
diff --git a/cairo/test/reference/copy-path.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/copy-path.image16.ref.png
similarity index 100%
rename from cairo/test/reference/copy-path.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/copy-path.image16.ref.png
diff --git a/cairo/test/reference/copy-path.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/copy-path.ps.ref.png
similarity index 100%
rename from cairo/test/reference/copy-path.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/copy-path.ps.ref.png
diff --git a/cairo/test/reference/copy-path.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/copy-path.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/copy-path.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/copy-path.rgb24.ref.png
diff --git a/cairo/test/reference/copy-path.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/copy-path.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/copy-path.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/copy-path.traps.argb32.ref.png
diff --git a/cairo/test/reference/copy-path.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/copy-path.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/copy-path.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/copy-path.traps.rgb24.ref.png
diff --git a/cairo/test/reference/coverage-column-triangles.ref.png b/io2d/src/3rd-party/cairo/test/reference/coverage-column-triangles.ref.png
similarity index 100%
rename from cairo/test/reference/coverage-column-triangles.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/coverage-column-triangles.ref.png
diff --git a/cairo/test/reference/coverage-column-triangles.xlib.xfail.png b/io2d/src/3rd-party/cairo/test/reference/coverage-column-triangles.xlib.xfail.png
similarity index 100%
rename from cairo/test/reference/coverage-column-triangles.xlib.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/coverage-column-triangles.xlib.xfail.png
diff --git a/cairo/test/reference/coverage-intersecting-quads.ref.png b/io2d/src/3rd-party/cairo/test/reference/coverage-intersecting-quads.ref.png
similarity index 100%
rename from cairo/test/reference/coverage-intersecting-quads.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/coverage-intersecting-quads.ref.png
diff --git a/cairo/test/reference/coverage-intersecting-quads.xlib.xfail.png b/io2d/src/3rd-party/cairo/test/reference/coverage-intersecting-quads.xlib.xfail.png
similarity index 100%
rename from cairo/test/reference/coverage-intersecting-quads.xlib.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/coverage-intersecting-quads.xlib.xfail.png
diff --git a/cairo/test/reference/coverage-intersecting-triangles.ref.png b/io2d/src/3rd-party/cairo/test/reference/coverage-intersecting-triangles.ref.png
similarity index 100%
rename from cairo/test/reference/coverage-intersecting-triangles.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/coverage-intersecting-triangles.ref.png
diff --git a/cairo/test/reference/coverage-intersecting-triangles.xlib.xfail.png b/io2d/src/3rd-party/cairo/test/reference/coverage-intersecting-triangles.xlib.xfail.png
similarity index 100%
rename from cairo/test/reference/coverage-intersecting-triangles.xlib.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/coverage-intersecting-triangles.xlib.xfail.png
diff --git a/cairo/test/reference/coverage-rectangles.ref.png b/io2d/src/3rd-party/cairo/test/reference/coverage-rectangles.ref.png
similarity index 100%
rename from cairo/test/reference/coverage-rectangles.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/coverage-rectangles.ref.png
diff --git a/cairo/test/reference/coverage-rectangles.xlib.xfail.png b/io2d/src/3rd-party/cairo/test/reference/coverage-rectangles.xlib.xfail.png
similarity index 100%
rename from cairo/test/reference/coverage-rectangles.xlib.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/coverage-rectangles.xlib.xfail.png
diff --git a/cairo/test/reference/coverage-row-triangles.ref.png b/io2d/src/3rd-party/cairo/test/reference/coverage-row-triangles.ref.png
similarity index 100%
rename from cairo/test/reference/coverage-row-triangles.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/coverage-row-triangles.ref.png
diff --git a/cairo/test/reference/coverage-row-triangles.xlib.xfail.png b/io2d/src/3rd-party/cairo/test/reference/coverage-row-triangles.xlib.xfail.png
similarity index 100%
rename from cairo/test/reference/coverage-row-triangles.xlib.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/coverage-row-triangles.xlib.xfail.png
diff --git a/cairo/test/reference/coverage-triangles.ref.png b/io2d/src/3rd-party/cairo/test/reference/coverage-triangles.ref.png
similarity index 100%
rename from cairo/test/reference/coverage-triangles.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/coverage-triangles.ref.png
diff --git a/cairo/test/reference/coverage-triangles.xlib.xfail.png b/io2d/src/3rd-party/cairo/test/reference/coverage-triangles.xlib.xfail.png
similarity index 100%
rename from cairo/test/reference/coverage-triangles.xlib.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/coverage-triangles.xlib.xfail.png
diff --git a/cairo/test/reference/create-from-png-stream.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/create-from-png-stream.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/create-from-png-stream.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/create-from-png-stream.base.argb32.ref.png
diff --git a/cairo/test/reference/create-from-png-stream.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/create-from-png-stream.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/create-from-png-stream.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/create-from-png-stream.base.rgb24.ref.png
diff --git a/cairo/test/reference/create-from-png-stream.ref.png b/io2d/src/3rd-party/cairo/test/reference/create-from-png-stream.ref.png
similarity index 100%
rename from cairo/test/reference/create-from-png-stream.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/create-from-png-stream.ref.png
diff --git a/cairo/test/reference/create-from-png.alpha.ref.png b/io2d/src/3rd-party/cairo/test/reference/create-from-png.alpha.ref.png
similarity index 100%
rename from cairo/test/reference/create-from-png.alpha.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/create-from-png.alpha.ref.png
diff --git a/cairo/test/reference/create-from-png.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/create-from-png.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/create-from-png.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/create-from-png.argb32.ref.png
diff --git a/cairo/test/reference/create-from-png.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/create-from-png.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/create-from-png.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/create-from-png.base.argb32.ref.png
diff --git a/cairo/test/reference/create-from-png.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/create-from-png.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/create-from-png.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/create-from-png.base.rgb24.ref.png
diff --git a/cairo/test/reference/create-from-png.gray-alpha.ref.png b/io2d/src/3rd-party/cairo/test/reference/create-from-png.gray-alpha.ref.png
similarity index 100%
rename from cairo/test/reference/create-from-png.gray-alpha.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/create-from-png.gray-alpha.ref.png
diff --git a/cairo/test/reference/create-from-png.gray.ref.png b/io2d/src/3rd-party/cairo/test/reference/create-from-png.gray.ref.png
similarity index 100%
rename from cairo/test/reference/create-from-png.gray.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/create-from-png.gray.ref.png
diff --git a/cairo/test/reference/create-from-png.indexed-alpha.ref.png b/io2d/src/3rd-party/cairo/test/reference/create-from-png.indexed-alpha.ref.png
similarity index 100%
rename from cairo/test/reference/create-from-png.indexed-alpha.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/create-from-png.indexed-alpha.ref.png
diff --git a/cairo/test/reference/create-from-png.indexed.ref.png b/io2d/src/3rd-party/cairo/test/reference/create-from-png.indexed.ref.png
similarity index 100%
rename from cairo/test/reference/create-from-png.indexed.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/create-from-png.indexed.ref.png
diff --git a/cairo/test/reference/create-from-png.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/create-from-png.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/create-from-png.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/create-from-png.mask.argb32.ref.png
diff --git a/cairo/test/reference/create-from-png.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/create-from-png.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/create-from-png.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/create-from-png.mask.rgb24.ref.png
diff --git a/cairo/test/reference/create-from-png.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/create-from-png.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/create-from-png.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/create-from-png.rgb24.ref.png
diff --git a/cairo/test/reference/create-from-png.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/create-from-png.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/create-from-png.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/create-from-png.traps.argb32.ref.png
diff --git a/cairo/test/reference/create-from-png.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/create-from-png.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/create-from-png.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/create-from-png.traps.rgb24.ref.png
diff --git a/cairo/test/reference/culled-glyphs.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/culled-glyphs.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/culled-glyphs.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/culled-glyphs.argb32.ref.png
diff --git a/cairo/test/reference/culled-glyphs.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/culled-glyphs.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/culled-glyphs.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/culled-glyphs.base.argb32.ref.png
diff --git a/cairo/test/reference/culled-glyphs.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/culled-glyphs.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/culled-glyphs.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/culled-glyphs.base.rgb24.ref.png
diff --git a/cairo/test/reference/culled-glyphs.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/culled-glyphs.image16.ref.png
similarity index 100%
rename from cairo/test/reference/culled-glyphs.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/culled-glyphs.image16.ref.png
diff --git a/cairo/test/reference/culled-glyphs.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/culled-glyphs.ps.ref.png
similarity index 100%
rename from cairo/test/reference/culled-glyphs.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/culled-glyphs.ps.ref.png
diff --git a/cairo/test/reference/culled-glyphs.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/culled-glyphs.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/culled-glyphs.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/culled-glyphs.quartz.ref.png
diff --git a/cairo/test/reference/culled-glyphs.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/culled-glyphs.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/culled-glyphs.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/culled-glyphs.rgb24.ref.png
diff --git a/cairo/test/reference/curve-to-as-line-to.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/curve-to-as-line-to.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/curve-to-as-line-to.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/curve-to-as-line-to.base.argb32.ref.png
diff --git a/cairo/test/reference/curve-to-as-line-to.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/curve-to-as-line-to.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/curve-to-as-line-to.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/curve-to-as-line-to.base.rgb24.ref.png
diff --git a/cairo/test/reference/curve-to-as-line-to.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/curve-to-as-line-to.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/curve-to-as-line-to.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/curve-to-as-line-to.mask.argb32.ref.png
diff --git a/cairo/test/reference/curve-to-as-line-to.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/curve-to-as-line-to.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/curve-to-as-line-to.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/curve-to-as-line-to.mask.rgb24.ref.png
diff --git a/cairo/test/reference/curve-to-as-line-to.ps.xfail.png b/io2d/src/3rd-party/cairo/test/reference/curve-to-as-line-to.ps.xfail.png
similarity index 100%
rename from cairo/test/reference/curve-to-as-line-to.ps.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/curve-to-as-line-to.ps.xfail.png
diff --git a/cairo/test/reference/curve-to-as-line-to.ref.png b/io2d/src/3rd-party/cairo/test/reference/curve-to-as-line-to.ref.png
similarity index 100%
rename from cairo/test/reference/curve-to-as-line-to.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/curve-to-as-line-to.ref.png
diff --git a/cairo/test/reference/curve-to-as-line-to.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/curve-to-as-line-to.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/curve-to-as-line-to.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/curve-to-as-line-to.traps.argb32.ref.png
diff --git a/cairo/test/reference/curve-to-as-line-to.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/curve-to-as-line-to.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/curve-to-as-line-to.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/curve-to-as-line-to.traps.rgb24.ref.png
diff --git a/cairo/test/reference/dash-caps-joins.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/dash-caps-joins.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.base.argb32.ref.png
diff --git a/cairo/test/reference/dash-caps-joins.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-caps-joins.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.base.rgb24.ref.png
diff --git a/cairo/test/reference/dash-caps-joins.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.image16.ref.png
similarity index 100%
rename from cairo/test/reference/dash-caps-joins.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.image16.ref.png
diff --git a/cairo/test/reference/dash-caps-joins.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/dash-caps-joins.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.mask.argb32.ref.png
diff --git a/cairo/test/reference/dash-caps-joins.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-caps-joins.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.mask.rgb24.ref.png
diff --git a/cairo/test/reference/dash-caps-joins.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.ps.ref.png
similarity index 100%
rename from cairo/test/reference/dash-caps-joins.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.ps.ref.png
diff --git a/cairo/test/reference/dash-caps-joins.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/dash-caps-joins.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.quartz.xfail.png
diff --git a/cairo/test/reference/dash-caps-joins.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.ref.png
similarity index 100%
rename from cairo/test/reference/dash-caps-joins.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.ref.png
diff --git a/cairo/test/reference/dash-caps-joins.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/dash-caps-joins.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.traps.argb32.ref.png
diff --git a/cairo/test/reference/dash-caps-joins.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-caps-joins.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.traps.rgb24.ref.png
diff --git a/cairo/test/reference/dash-curve.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-curve.image16.ref.png
similarity index 100%
rename from cairo/test/reference/dash-curve.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-curve.image16.ref.png
diff --git a/cairo/test/reference/dash-curve.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-curve.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/dash-curve.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-curve.mask.argb32.ref.png
diff --git a/cairo/test/reference/dash-curve.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-curve.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-curve.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-curve.mask.rgb24.ref.png
diff --git a/cairo/test/reference/dash-curve.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-curve.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/dash-curve.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-curve.ps2.ref.png
diff --git a/cairo/test/reference/dash-curve.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-curve.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/dash-curve.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-curve.ps3.ref.png
diff --git a/cairo/test/reference/dash-curve.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/dash-curve.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/dash-curve.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-curve.quartz.xfail.png
diff --git a/cairo/test/reference/dash-curve.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-curve.ref.png
similarity index 100%
rename from cairo/test/reference/dash-curve.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-curve.ref.png
diff --git a/cairo/test/reference/dash-curve.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-curve.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/dash-curve.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-curve.traps.argb32.ref.png
diff --git a/cairo/test/reference/dash-curve.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-curve.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-curve.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-curve.traps.rgb24.ref.png
diff --git a/cairo/test/reference/dash-infinite-loop.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-infinite-loop.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/dash-infinite-loop.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-infinite-loop.argb32.ref.png
diff --git a/cairo/test/reference/dash-infinite-loop.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-infinite-loop.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/dash-infinite-loop.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-infinite-loop.base.argb32.ref.png
diff --git a/cairo/test/reference/dash-infinite-loop.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-infinite-loop.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-infinite-loop.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-infinite-loop.base.rgb24.ref.png
diff --git a/cairo/test/reference/dash-infinite-loop.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-infinite-loop.ps.ref.png
similarity index 100%
rename from cairo/test/reference/dash-infinite-loop.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-infinite-loop.ps.ref.png
diff --git a/cairo/test/reference/dash-infinite-loop.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-infinite-loop.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-infinite-loop.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-infinite-loop.rgb24.ref.png
diff --git a/cairo/test/reference/dash-infinite-loop.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-infinite-loop.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/dash-infinite-loop.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-infinite-loop.traps.argb32.ref.png
diff --git a/cairo/test/reference/dash-infinite-loop.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-infinite-loop.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-infinite-loop.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-infinite-loop.traps.rgb24.ref.png
diff --git a/cairo/test/reference/dash-no-dash.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-no-dash.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/dash-no-dash.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-no-dash.base.argb32.ref.png
diff --git a/cairo/test/reference/dash-no-dash.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-no-dash.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-no-dash.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-no-dash.base.rgb24.ref.png
diff --git a/cairo/test/reference/dash-no-dash.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-no-dash.ref.png
similarity index 100%
rename from cairo/test/reference/dash-no-dash.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-no-dash.ref.png
diff --git a/cairo/test/reference/dash-offset-negative.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-offset-negative.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/dash-offset-negative.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-offset-negative.argb32.ref.png
diff --git a/cairo/test/reference/dash-offset-negative.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-offset-negative.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/dash-offset-negative.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-offset-negative.base.argb32.ref.png
diff --git a/cairo/test/reference/dash-offset-negative.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-offset-negative.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-offset-negative.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-offset-negative.base.rgb24.ref.png
diff --git a/cairo/test/reference/dash-offset-negative.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-offset-negative.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/dash-offset-negative.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-offset-negative.pdf.ref.png
diff --git a/cairo/test/reference/dash-offset-negative.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-offset-negative.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-offset-negative.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-offset-negative.rgb24.ref.png
diff --git a/cairo/test/reference/dash-offset-negative.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-offset-negative.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/dash-offset-negative.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-offset-negative.traps.argb32.ref.png
diff --git a/cairo/test/reference/dash-offset-negative.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-offset-negative.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-offset-negative.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-offset-negative.traps.rgb24.ref.png
diff --git a/cairo/test/reference/dash-offset.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-offset.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/dash-offset.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-offset.base.argb32.ref.png
diff --git a/cairo/test/reference/dash-offset.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-offset.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-offset.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-offset.base.rgb24.ref.png
diff --git a/cairo/test/reference/dash-offset.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-offset.ref.png
similarity index 100%
rename from cairo/test/reference/dash-offset.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-offset.ref.png
diff --git a/cairo/test/reference/dash-scale.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-scale.image16.ref.png
similarity index 100%
rename from cairo/test/reference/dash-scale.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-scale.image16.ref.png
diff --git a/cairo/test/reference/dash-scale.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-scale.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/dash-scale.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-scale.mask.argb32.ref.png
diff --git a/cairo/test/reference/dash-scale.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-scale.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-scale.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-scale.mask.rgb24.ref.png
diff --git a/cairo/test/reference/dash-scale.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-scale.ps.ref.png
similarity index 100%
rename from cairo/test/reference/dash-scale.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-scale.ps.ref.png
diff --git a/cairo/test/reference/dash-scale.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-scale.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/dash-scale.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-scale.quartz.ref.png
diff --git a/cairo/test/reference/dash-scale.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-scale.ref.png
similarity index 100%
rename from cairo/test/reference/dash-scale.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-scale.ref.png
diff --git a/cairo/test/reference/dash-scale.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-scale.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/dash-scale.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-scale.traps.argb32.ref.png
diff --git a/cairo/test/reference/dash-scale.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-scale.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-scale.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-scale.traps.rgb24.ref.png
diff --git a/cairo/test/reference/dash-state.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-state.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/dash-state.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-state.argb32.ref.png
diff --git a/cairo/test/reference/dash-state.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-state.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/dash-state.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-state.base.argb32.ref.png
diff --git a/cairo/test/reference/dash-state.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-state.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-state.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-state.base.rgb24.ref.png
diff --git a/cairo/test/reference/dash-state.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-state.image16.ref.png
similarity index 100%
rename from cairo/test/reference/dash-state.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-state.image16.ref.png
diff --git a/cairo/test/reference/dash-state.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-state.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/dash-state.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-state.ps2.ref.png
diff --git a/cairo/test/reference/dash-state.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-state.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/dash-state.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-state.ps3.ref.png
diff --git a/cairo/test/reference/dash-state.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/dash-state.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/dash-state.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-state.quartz.xfail.png
diff --git a/cairo/test/reference/dash-state.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-state.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-state.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-state.rgb24.ref.png
diff --git a/cairo/test/reference/dash-state.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-state.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/dash-state.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-state.traps.argb32.ref.png
diff --git a/cairo/test/reference/dash-state.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-state.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-state.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-state.traps.rgb24.ref.png
diff --git a/cairo/test/reference/dash-zero-length.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-zero-length.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/dash-zero-length.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-zero-length.argb32.ref.png
diff --git a/cairo/test/reference/dash-zero-length.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-zero-length.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/dash-zero-length.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-zero-length.base.argb32.ref.png
diff --git a/cairo/test/reference/dash-zero-length.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-zero-length.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-zero-length.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-zero-length.base.rgb24.ref.png
diff --git a/cairo/test/reference/dash-zero-length.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-zero-length.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-zero-length.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-zero-length.mask.rgb24.ref.png
diff --git a/cairo/test/reference/dash-zero-length.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-zero-length.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/dash-zero-length.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-zero-length.ps2.ref.png
diff --git a/cairo/test/reference/dash-zero-length.ps2.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-zero-length.ps2.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-zero-length.ps2.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-zero-length.ps2.rgb24.ref.png
diff --git a/cairo/test/reference/dash-zero-length.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-zero-length.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/dash-zero-length.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-zero-length.ps3.ref.png
diff --git a/cairo/test/reference/dash-zero-length.ps3.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-zero-length.ps3.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-zero-length.ps3.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-zero-length.ps3.rgb24.ref.png
diff --git a/cairo/test/reference/dash-zero-length.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-zero-length.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-zero-length.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-zero-length.rgb24.ref.png
diff --git a/cairo/test/reference/dash-zero-length.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-zero-length.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/dash-zero-length.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-zero-length.traps.argb32.ref.png
diff --git a/cairo/test/reference/dash-zero-length.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/dash-zero-length.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/dash-zero-length.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/dash-zero-length.traps.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-arc.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-arc.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-arc.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-arc.base.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-arc.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-arc.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-arc.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-arc.base.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-arc.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-arc.image16.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-arc.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-arc.image16.ref.png
diff --git a/cairo/test/reference/degenerate-arc.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-arc.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-arc.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-arc.mask.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-arc.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-arc.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-arc.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-arc.mask.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-arc.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-arc.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-arc.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-arc.ps2.ref.png
diff --git a/cairo/test/reference/degenerate-arc.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-arc.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-arc.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-arc.ps3.ref.png
diff --git a/cairo/test/reference/degenerate-arc.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-arc.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-arc.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-arc.quartz.ref.png
diff --git a/cairo/test/reference/degenerate-arc.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-arc.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-arc.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-arc.ref.png
diff --git a/cairo/test/reference/degenerate-arc.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-arc.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-arc.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-arc.traps.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-arc.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-arc.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-arc.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-arc.traps.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-arcs.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-arcs.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-arcs.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-arcs.base.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-arcs.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-arcs.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-arcs.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-arcs.base.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-arcs.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-arcs.image16.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-arcs.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-arcs.image16.ref.png
diff --git a/cairo/test/reference/degenerate-arcs.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-arcs.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-arcs.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-arcs.ref.png
diff --git a/cairo/test/reference/degenerate-curve-to.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-curve-to.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.base.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-curve-to.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-curve-to.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.base.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-curve-to.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.image16.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-curve-to.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.image16.ref.png
diff --git a/cairo/test/reference/degenerate-curve-to.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-curve-to.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.mask.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-curve-to.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-curve-to.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.mask.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-curve-to.ps.xfail.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.ps.xfail.png
similarity index 100%
rename from cairo/test/reference/degenerate-curve-to.ps.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.ps.xfail.png
diff --git a/cairo/test/reference/degenerate-curve-to.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-curve-to.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.quartz.ref.png
diff --git a/cairo/test/reference/degenerate-curve-to.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-curve-to.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.ref.png
diff --git a/cairo/test/reference/degenerate-curve-to.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-curve-to.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.traps.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-curve-to.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-curve-to.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.traps.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-dash.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-dash.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-dash.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-dash.base.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-dash.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-dash.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-dash.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-dash.base.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-dash.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-dash.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-dash.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-dash.mask.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-dash.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-dash.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-dash.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-dash.mask.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-dash.ps.xfail.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-dash.ps.xfail.png
similarity index 100%
rename from cairo/test/reference/degenerate-dash.ps.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-dash.ps.xfail.png
diff --git a/cairo/test/reference/degenerate-dash.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-dash.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/degenerate-dash.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-dash.quartz.xfail.png
diff --git a/cairo/test/reference/degenerate-dash.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-dash.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-dash.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-dash.ref.png
diff --git a/cairo/test/reference/degenerate-dash.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-dash.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-dash.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-dash.traps.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-dash.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-dash.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-dash.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-dash.traps.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-linear-gradient.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-linear-gradient.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-linear-gradient.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-linear-gradient.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-linear-gradient.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-linear-gradient.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-linear-gradient.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-linear-gradient.base.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-linear-gradient.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-linear-gradient.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-linear-gradient.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-linear-gradient.base.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-linear-gradient.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-linear-gradient.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-linear-gradient.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-linear-gradient.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-path.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-path.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-path.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-path.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-path.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-path.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-path.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-path.base.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-path.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-path.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-path.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-path.base.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-path.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-path.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-path.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-path.mask.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-path.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-path.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-path.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-path.mask.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-path.ps.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-path.ps.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/degenerate-path.ps.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-path.ps.argb32.xfail.png
diff --git a/cairo/test/reference/degenerate-path.ps.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-path.ps.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/degenerate-path.ps.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-path.ps.rgb24.xfail.png
diff --git a/cairo/test/reference/degenerate-path.quartz.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-path.quartz.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/degenerate-path.quartz.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-path.quartz.argb32.xfail.png
diff --git a/cairo/test/reference/degenerate-path.quartz.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-path.quartz.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/degenerate-path.quartz.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-path.quartz.rgb24.xfail.png
diff --git a/cairo/test/reference/degenerate-path.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-path.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-path.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-path.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-path.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-path.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-path.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-path.traps.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-path.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-path.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-path.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-path.traps.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-pen.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-pen.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-pen.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-pen.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-pen.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-pen.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-pen.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-pen.base.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-pen.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-pen.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-pen.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-pen.base.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-pen.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-pen.image16.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-pen.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-pen.image16.ref.png
diff --git a/cairo/test/reference/degenerate-pen.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-pen.ps.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-pen.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-pen.ps.ref.png
diff --git a/cairo/test/reference/degenerate-pen.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-pen.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-pen.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-pen.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-pen.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-pen.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-pen.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-pen.traps.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-pen.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-pen.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-pen.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-pen.traps.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-radial-gradient.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-radial-gradient.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-radial-gradient.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-radial-gradient.base.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-radial-gradient.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-radial-gradient.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-radial-gradient.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-radial-gradient.base.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-radial-gradient.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-radial-gradient.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-radial-gradient.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-radial-gradient.ref.png
diff --git a/cairo/test/reference/degenerate-rel-curve-to.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-rel-curve-to.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-rel-curve-to.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-rel-curve-to.base.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-rel-curve-to.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-rel-curve-to.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-rel-curve-to.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-rel-curve-to.base.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-rel-curve-to.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-rel-curve-to.image16.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-rel-curve-to.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-rel-curve-to.image16.ref.png
diff --git a/cairo/test/reference/degenerate-rel-curve-to.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-rel-curve-to.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-rel-curve-to.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-rel-curve-to.mask.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-rel-curve-to.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-rel-curve-to.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-rel-curve-to.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-rel-curve-to.mask.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-rel-curve-to.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-rel-curve-to.ps.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-rel-curve-to.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-rel-curve-to.ps.ref.png
diff --git a/cairo/test/reference/degenerate-rel-curve-to.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-rel-curve-to.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-rel-curve-to.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-rel-curve-to.quartz.ref.png
diff --git a/cairo/test/reference/degenerate-rel-curve-to.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-rel-curve-to.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-rel-curve-to.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-rel-curve-to.ref.png
diff --git a/cairo/test/reference/degenerate-rel-curve-to.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-rel-curve-to.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-rel-curve-to.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-rel-curve-to.traps.argb32.ref.png
diff --git a/cairo/test/reference/degenerate-rel-curve-to.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-rel-curve-to.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-rel-curve-to.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-rel-curve-to.traps.rgb24.ref.png
diff --git a/cairo/test/reference/degenerate-solid-dash.ref.png b/io2d/src/3rd-party/cairo/test/reference/degenerate-solid-dash.ref.png
similarity index 100%
rename from cairo/test/reference/degenerate-solid-dash.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/degenerate-solid-dash.ref.png
diff --git a/cairo/test/reference/device-offset-fractional.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/device-offset-fractional.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/device-offset-fractional.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/device-offset-fractional.base.argb32.ref.png
diff --git a/cairo/test/reference/device-offset-fractional.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/device-offset-fractional.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/device-offset-fractional.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/device-offset-fractional.base.rgb24.ref.png
diff --git a/cairo/test/reference/device-offset-fractional.gl.xfail.png b/io2d/src/3rd-party/cairo/test/reference/device-offset-fractional.gl.xfail.png
similarity index 100%
rename from cairo/test/reference/device-offset-fractional.gl.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/device-offset-fractional.gl.xfail.png
diff --git a/cairo/test/reference/device-offset-fractional.pdf.xfail.png b/io2d/src/3rd-party/cairo/test/reference/device-offset-fractional.pdf.xfail.png
similarity index 100%
rename from cairo/test/reference/device-offset-fractional.pdf.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/device-offset-fractional.pdf.xfail.png
diff --git a/cairo/test/reference/device-offset-fractional.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/device-offset-fractional.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/device-offset-fractional.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/device-offset-fractional.ps2.ref.png
diff --git a/cairo/test/reference/device-offset-fractional.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/device-offset-fractional.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/device-offset-fractional.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/device-offset-fractional.ps3.ref.png
diff --git a/cairo/test/reference/device-offset-fractional.ref.png b/io2d/src/3rd-party/cairo/test/reference/device-offset-fractional.ref.png
similarity index 100%
rename from cairo/test/reference/device-offset-fractional.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/device-offset-fractional.ref.png
diff --git a/cairo/test/reference/device-offset-positive.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/device-offset-positive.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/device-offset-positive.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/device-offset-positive.argb32.ref.png
diff --git a/cairo/test/reference/device-offset-positive.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/device-offset-positive.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/device-offset-positive.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/device-offset-positive.base.argb32.ref.png
diff --git a/cairo/test/reference/device-offset-positive.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/device-offset-positive.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/device-offset-positive.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/device-offset-positive.base.rgb24.ref.png
diff --git a/cairo/test/reference/device-offset-positive.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/device-offset-positive.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/device-offset-positive.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/device-offset-positive.rgb24.ref.png
diff --git a/cairo/test/reference/device-offset-scale.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/device-offset-scale.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/device-offset-scale.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/device-offset-scale.base.argb32.ref.png
diff --git a/cairo/test/reference/device-offset-scale.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/device-offset-scale.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/device-offset-scale.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/device-offset-scale.base.rgb24.ref.png
diff --git a/cairo/test/reference/device-offset-scale.ref.png b/io2d/src/3rd-party/cairo/test/reference/device-offset-scale.ref.png
similarity index 100%
rename from cairo/test/reference/device-offset-scale.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/device-offset-scale.ref.png
diff --git a/cairo/test/reference/device-offset-scale.svg.xfail.png b/io2d/src/3rd-party/cairo/test/reference/device-offset-scale.svg.xfail.png
similarity index 100%
rename from cairo/test/reference/device-offset-scale.svg.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/device-offset-scale.svg.xfail.png
diff --git a/cairo/test/reference/device-offset.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/device-offset.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/device-offset.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/device-offset.argb32.ref.png
diff --git a/cairo/test/reference/device-offset.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/device-offset.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/device-offset.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/device-offset.base.argb32.ref.png
diff --git a/cairo/test/reference/device-offset.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/device-offset.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/device-offset.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/device-offset.base.rgb24.ref.png
diff --git a/cairo/test/reference/device-offset.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/device-offset.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/device-offset.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/device-offset.rgb24.ref.png
diff --git a/cairo/test/reference/drunkard-tails.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/drunkard-tails.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/drunkard-tails.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/drunkard-tails.base.argb32.ref.png
diff --git a/cairo/test/reference/drunkard-tails.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/drunkard-tails.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/drunkard-tails.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/drunkard-tails.base.rgb24.ref.png
diff --git a/cairo/test/reference/drunkard-tails.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/drunkard-tails.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/drunkard-tails.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/drunkard-tails.mask.argb32.ref.png
diff --git a/cairo/test/reference/drunkard-tails.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/drunkard-tails.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/drunkard-tails.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/drunkard-tails.mask.rgb24.ref.png
diff --git a/cairo/test/reference/drunkard-tails.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/drunkard-tails.ps.ref.png
similarity index 100%
rename from cairo/test/reference/drunkard-tails.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/drunkard-tails.ps.ref.png
diff --git a/cairo/test/reference/drunkard-tails.ref.png b/io2d/src/3rd-party/cairo/test/reference/drunkard-tails.ref.png
similarity index 100%
rename from cairo/test/reference/drunkard-tails.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/drunkard-tails.ref.png
diff --git a/cairo/test/reference/drunkard-tails.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/drunkard-tails.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/drunkard-tails.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/drunkard-tails.traps.argb32.ref.png
diff --git a/cairo/test/reference/drunkard-tails.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/drunkard-tails.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/drunkard-tails.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/drunkard-tails.traps.rgb24.ref.png
diff --git a/cairo/test/reference/extend-pad-border.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-pad-border.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extend-pad-border.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-pad-border.argb32.ref.png
diff --git a/cairo/test/reference/extend-pad-border.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-pad-border.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extend-pad-border.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-pad-border.base.argb32.ref.png
diff --git a/cairo/test/reference/extend-pad-border.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-pad-border.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extend-pad-border.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-pad-border.base.rgb24.ref.png
diff --git a/cairo/test/reference/extend-pad-border.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-pad-border.image16.ref.png
similarity index 100%
rename from cairo/test/reference/extend-pad-border.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-pad-border.image16.ref.png
diff --git a/cairo/test/reference/extend-pad-border.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-pad-border.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/extend-pad-border.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-pad-border.pdf.ref.png
diff --git a/cairo/test/reference/extend-pad-border.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-pad-border.ps.ref.png
similarity index 100%
rename from cairo/test/reference/extend-pad-border.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-pad-border.ps.ref.png
diff --git a/cairo/test/reference/extend-pad-border.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-pad-border.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/extend-pad-border.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-pad-border.quartz.ref.png
diff --git a/cairo/test/reference/extend-pad-border.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-pad-border.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extend-pad-border.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-pad-border.rgb24.ref.png
diff --git a/cairo/test/reference/extend-pad-border.svg.xfail.png b/io2d/src/3rd-party/cairo/test/reference/extend-pad-border.svg.xfail.png
similarity index 100%
rename from cairo/test/reference/extend-pad-border.svg.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-pad-border.svg.xfail.png
diff --git a/cairo/test/reference/extend-pad-similar.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-pad-similar.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extend-pad-similar.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-pad-similar.base.argb32.ref.png
diff --git a/cairo/test/reference/extend-pad-similar.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-pad-similar.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extend-pad-similar.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-pad-similar.base.rgb24.ref.png
diff --git a/cairo/test/reference/extend-pad-similar.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/extend-pad-similar.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/extend-pad-similar.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-pad-similar.quartz.xfail.png
diff --git a/cairo/test/reference/extend-pad-similar.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-pad-similar.ref.png
similarity index 100%
rename from cairo/test/reference/extend-pad-similar.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-pad-similar.ref.png
diff --git a/cairo/test/reference/extend-pad-similar.svg.xfail.png b/io2d/src/3rd-party/cairo/test/reference/extend-pad-similar.svg.xfail.png
similarity index 100%
rename from cairo/test/reference/extend-pad-similar.svg.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-pad-similar.svg.xfail.png
diff --git a/cairo/test/reference/extend-pad.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-pad.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extend-pad.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-pad.base.argb32.ref.png
diff --git a/cairo/test/reference/extend-pad.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-pad.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extend-pad.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-pad.base.rgb24.ref.png
diff --git a/cairo/test/reference/extend-pad.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-pad.ps.ref.png
similarity index 100%
rename from cairo/test/reference/extend-pad.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-pad.ps.ref.png
diff --git a/cairo/test/reference/extend-pad.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/extend-pad.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/extend-pad.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-pad.quartz.xfail.png
diff --git a/cairo/test/reference/extend-pad.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-pad.ref.png
similarity index 100%
rename from cairo/test/reference/extend-pad.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-pad.ref.png
diff --git a/cairo/test/reference/extend-pad.svg.xfail.png b/io2d/src/3rd-party/cairo/test/reference/extend-pad.svg.xfail.png
similarity index 100%
rename from cairo/test/reference/extend-pad.svg.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-pad.svg.xfail.png
diff --git a/cairo/test/reference/extend-reflect-similar.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-reflect-similar.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extend-reflect-similar.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-reflect-similar.base.argb32.ref.png
diff --git a/cairo/test/reference/extend-reflect-similar.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-reflect-similar.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extend-reflect-similar.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-reflect-similar.base.rgb24.ref.png
diff --git a/cairo/test/reference/extend-reflect-similar.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-reflect-similar.image16.ref.png
similarity index 100%
rename from cairo/test/reference/extend-reflect-similar.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-reflect-similar.image16.ref.png
diff --git a/cairo/test/reference/extend-reflect-similar.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-reflect-similar.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/extend-reflect-similar.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-reflect-similar.ps2.ref.png
diff --git a/cairo/test/reference/extend-reflect-similar.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-reflect-similar.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/extend-reflect-similar.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-reflect-similar.ps3.ref.png
diff --git a/cairo/test/reference/extend-reflect-similar.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-reflect-similar.ref.png
similarity index 100%
rename from cairo/test/reference/extend-reflect-similar.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-reflect-similar.ref.png
diff --git a/cairo/test/reference/extend-reflect.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-reflect.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extend-reflect.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-reflect.base.argb32.ref.png
diff --git a/cairo/test/reference/extend-reflect.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-reflect.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extend-reflect.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-reflect.base.rgb24.ref.png
diff --git a/cairo/test/reference/extend-reflect.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-reflect.image16.ref.png
similarity index 100%
rename from cairo/test/reference/extend-reflect.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-reflect.image16.ref.png
diff --git a/cairo/test/reference/extend-reflect.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-reflect.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/extend-reflect.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-reflect.ps2.ref.png
diff --git a/cairo/test/reference/extend-reflect.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-reflect.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/extend-reflect.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-reflect.ps3.ref.png
diff --git a/cairo/test/reference/extend-reflect.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-reflect.ref.png
similarity index 100%
rename from cairo/test/reference/extend-reflect.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-reflect.ref.png
diff --git a/cairo/test/reference/extend-repeat-similar.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-repeat-similar.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extend-repeat-similar.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-repeat-similar.base.argb32.ref.png
diff --git a/cairo/test/reference/extend-repeat-similar.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-repeat-similar.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extend-repeat-similar.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-repeat-similar.base.rgb24.ref.png
diff --git a/cairo/test/reference/extend-repeat-similar.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-repeat-similar.image16.ref.png
similarity index 100%
rename from cairo/test/reference/extend-repeat-similar.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-repeat-similar.image16.ref.png
diff --git a/cairo/test/reference/extend-repeat-similar.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-repeat-similar.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/extend-repeat-similar.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-repeat-similar.ps2.ref.png
diff --git a/cairo/test/reference/extend-repeat-similar.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-repeat-similar.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/extend-repeat-similar.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-repeat-similar.ps3.ref.png
diff --git a/cairo/test/reference/extend-repeat-similar.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-repeat-similar.ref.png
similarity index 100%
rename from cairo/test/reference/extend-repeat-similar.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-repeat-similar.ref.png
diff --git a/cairo/test/reference/extend-repeat.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-repeat.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extend-repeat.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-repeat.base.argb32.ref.png
diff --git a/cairo/test/reference/extend-repeat.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-repeat.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extend-repeat.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-repeat.base.rgb24.ref.png
diff --git a/cairo/test/reference/extend-repeat.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-repeat.image16.ref.png
similarity index 100%
rename from cairo/test/reference/extend-repeat.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-repeat.image16.ref.png
diff --git a/cairo/test/reference/extend-repeat.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-repeat.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/extend-repeat.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-repeat.ps2.ref.png
diff --git a/cairo/test/reference/extend-repeat.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-repeat.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/extend-repeat.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-repeat.ps3.ref.png
diff --git a/cairo/test/reference/extend-repeat.ref.png b/io2d/src/3rd-party/cairo/test/reference/extend-repeat.ref.png
similarity index 100%
rename from cairo/test/reference/extend-repeat.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extend-repeat.ref.png
diff --git a/cairo/test/reference/extended-blend-alpha-mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha-mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-alpha-mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha-mask.argb32.ref.png
diff --git a/cairo/test/reference/extended-blend-alpha-mask.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha-mask.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-alpha-mask.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha-mask.base.argb32.ref.png
diff --git a/cairo/test/reference/extended-blend-alpha-mask.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha-mask.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-alpha-mask.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha-mask.base.rgb24.ref.png
diff --git a/cairo/test/reference/extended-blend-alpha-mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha-mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-alpha-mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha-mask.rgb24.ref.png
diff --git a/cairo/test/reference/extended-blend-alpha.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-alpha.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha.argb32.ref.png
diff --git a/cairo/test/reference/extended-blend-alpha.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-alpha.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha.base.argb32.ref.png
diff --git a/cairo/test/reference/extended-blend-alpha.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-alpha.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha.base.rgb24.ref.png
diff --git a/cairo/test/reference/extended-blend-alpha.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha.image16.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-alpha.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha.image16.ref.png
diff --git a/cairo/test/reference/extended-blend-alpha.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-alpha.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha.quartz.argb32.ref.png
diff --git a/cairo/test/reference/extended-blend-alpha.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-alpha.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/extended-blend-alpha.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-alpha.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha.rgb24.ref.png
diff --git a/cairo/test/reference/extended-blend-alpha.svg12.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha.svg12.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/extended-blend-alpha.svg12.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha.svg12.argb32.xfail.png
diff --git a/cairo/test/reference/extended-blend-alpha.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/extended-blend-alpha.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-alpha.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/extended-blend-mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-mask.argb32.ref.png
diff --git a/cairo/test/reference/extended-blend-mask.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-mask.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-mask.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-mask.base.argb32.ref.png
diff --git a/cairo/test/reference/extended-blend-mask.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-mask.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-mask.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-mask.base.rgb24.ref.png
diff --git a/cairo/test/reference/extended-blend-mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-mask.rgb24.ref.png
diff --git a/cairo/test/reference/extended-blend-solid-alpha.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-solid-alpha.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-solid-alpha.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-solid-alpha.argb32.ref.png
diff --git a/cairo/test/reference/extended-blend-solid-alpha.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-solid-alpha.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-solid-alpha.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-solid-alpha.base.argb32.ref.png
diff --git a/cairo/test/reference/extended-blend-solid-alpha.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-solid-alpha.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-solid-alpha.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-solid-alpha.base.rgb24.ref.png
diff --git a/cairo/test/reference/extended-blend-solid-alpha.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-solid-alpha.image16.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-solid-alpha.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-solid-alpha.image16.ref.png
diff --git a/cairo/test/reference/extended-blend-solid-alpha.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-solid-alpha.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-solid-alpha.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-solid-alpha.rgb24.ref.png
diff --git a/cairo/test/reference/extended-blend-solid.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-solid.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-solid.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-solid.argb32.ref.png
diff --git a/cairo/test/reference/extended-blend-solid.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-solid.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-solid.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-solid.base.argb32.ref.png
diff --git a/cairo/test/reference/extended-blend-solid.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-solid.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-solid.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-solid.base.rgb24.ref.png
diff --git a/cairo/test/reference/extended-blend-solid.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-solid.image16.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-solid.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-solid.image16.ref.png
diff --git a/cairo/test/reference/extended-blend-solid.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend-solid.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend-solid.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend-solid.rgb24.ref.png
diff --git a/cairo/test/reference/extended-blend.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend.argb32.ref.png
diff --git a/cairo/test/reference/extended-blend.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend.base.argb32.ref.png
diff --git a/cairo/test/reference/extended-blend.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend.base.rgb24.ref.png
diff --git a/cairo/test/reference/extended-blend.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend.image16.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend.image16.ref.png
diff --git a/cairo/test/reference/extended-blend.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend.quartz.argb32.ref.png
diff --git a/cairo/test/reference/extended-blend.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/extended-blend.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/extended-blend.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend.rgb24.ref.png
diff --git a/cairo/test/reference/extended-blend.svg12.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend.svg12.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/extended-blend.svg12.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend.svg12.argb32.xfail.png
diff --git a/cairo/test/reference/extended-blend.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/extended-blend.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/extended-blend.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/extended-blend.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/fallback-resolution.ppi144x144.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi144x144.ps.ref.png
similarity index 100%
rename from cairo/test/reference/fallback-resolution.ppi144x144.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi144x144.ps.ref.png
diff --git a/cairo/test/reference/fallback-resolution.ppi144x144.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi144x144.ref.png
similarity index 100%
rename from cairo/test/reference/fallback-resolution.ppi144x144.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi144x144.ref.png
diff --git a/cairo/test/reference/fallback-resolution.ppi144x72.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi144x72.ps.ref.png
similarity index 100%
rename from cairo/test/reference/fallback-resolution.ppi144x72.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi144x72.ps.ref.png
diff --git a/cairo/test/reference/fallback-resolution.ppi144x72.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi144x72.ref.png
similarity index 100%
rename from cairo/test/reference/fallback-resolution.ppi144x72.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi144x72.ref.png
diff --git a/cairo/test/reference/fallback-resolution.ppi288x288.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi288x288.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/fallback-resolution.ppi288x288.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi288x288.pdf.ref.png
diff --git a/cairo/test/reference/fallback-resolution.ppi288x288.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi288x288.ps.ref.png
similarity index 100%
rename from cairo/test/reference/fallback-resolution.ppi288x288.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi288x288.ps.ref.png
diff --git a/cairo/test/reference/fallback-resolution.ppi288x288.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi288x288.svg.ref.png
similarity index 100%
rename from cairo/test/reference/fallback-resolution.ppi288x288.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi288x288.svg.ref.png
diff --git a/cairo/test/reference/fallback-resolution.ppi288x72.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi288x72.ps.ref.png
similarity index 100%
rename from cairo/test/reference/fallback-resolution.ppi288x72.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi288x72.ps.ref.png
diff --git a/cairo/test/reference/fallback-resolution.ppi288x72.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi288x72.ref.png
similarity index 100%
rename from cairo/test/reference/fallback-resolution.ppi288x72.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi288x72.ref.png
diff --git a/cairo/test/reference/fallback-resolution.ppi576x576.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi576x576.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/fallback-resolution.ppi576x576.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi576x576.pdf.ref.png
diff --git a/cairo/test/reference/fallback-resolution.ppi576x576.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi576x576.ps.ref.png
similarity index 100%
rename from cairo/test/reference/fallback-resolution.ppi576x576.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi576x576.ps.ref.png
diff --git a/cairo/test/reference/fallback-resolution.ppi576x576.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi576x576.svg.ref.png
similarity index 100%
rename from cairo/test/reference/fallback-resolution.ppi576x576.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi576x576.svg.ref.png
diff --git a/cairo/test/reference/fallback-resolution.ppi576x72.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi576x72.ps.ref.png
similarity index 100%
rename from cairo/test/reference/fallback-resolution.ppi576x72.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi576x72.ps.ref.png
diff --git a/cairo/test/reference/fallback-resolution.ppi576x72.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi576x72.ref.png
similarity index 100%
rename from cairo/test/reference/fallback-resolution.ppi576x72.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi576x72.ref.png
diff --git a/cairo/test/reference/fallback-resolution.ppi72x144.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi72x144.ps.ref.png
similarity index 100%
rename from cairo/test/reference/fallback-resolution.ppi72x144.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi72x144.ps.ref.png
diff --git a/cairo/test/reference/fallback-resolution.ppi72x144.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi72x144.ref.png
similarity index 100%
rename from cairo/test/reference/fallback-resolution.ppi72x144.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi72x144.ref.png
diff --git a/cairo/test/reference/fallback-resolution.ppi72x288.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi72x288.ps.ref.png
similarity index 100%
rename from cairo/test/reference/fallback-resolution.ppi72x288.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi72x288.ps.ref.png
diff --git a/cairo/test/reference/fallback-resolution.ppi72x288.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi72x288.ref.png
similarity index 100%
rename from cairo/test/reference/fallback-resolution.ppi72x288.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi72x288.ref.png
diff --git a/cairo/test/reference/fallback-resolution.ppi72x576.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi72x576.ps.ref.png
similarity index 100%
rename from cairo/test/reference/fallback-resolution.ppi72x576.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi72x576.ps.ref.png
diff --git a/cairo/test/reference/fallback-resolution.ppi72x576.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi72x576.ref.png
similarity index 100%
rename from cairo/test/reference/fallback-resolution.ppi72x576.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi72x576.ref.png
diff --git a/cairo/test/reference/fallback-resolution.ppi72x72.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi72x72.ref.png
similarity index 100%
rename from cairo/test/reference/fallback-resolution.ppi72x72.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback-resolution.ppi72x72.ref.png
diff --git a/cairo/test/reference/fallback.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fallback.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback.argb32.ref.png
diff --git a/cairo/test/reference/fallback.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fallback.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback.base.argb32.ref.png
diff --git a/cairo/test/reference/fallback.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fallback.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback.base.rgb24.ref.png
diff --git a/cairo/test/reference/fallback.image16.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback.image16.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fallback.image16.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback.image16.rgb24.ref.png
diff --git a/cairo/test/reference/fallback.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fallback.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback.mask.argb32.ref.png
diff --git a/cairo/test/reference/fallback.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fallback.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback.mask.rgb24.ref.png
diff --git a/cairo/test/reference/fallback.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fallback.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback.rgb24.ref.png
diff --git a/cairo/test/reference/fallback.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fallback.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback.traps.argb32.ref.png
diff --git a/cairo/test/reference/fallback.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fallback.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fallback.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fallback.traps.rgb24.ref.png
diff --git a/cairo/test/reference/fill-alpha-pattern.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-alpha-pattern.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-alpha-pattern.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-alpha-pattern.argb32.ref.png
diff --git a/cairo/test/reference/fill-alpha-pattern.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-alpha-pattern.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-alpha-pattern.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-alpha-pattern.base.argb32.ref.png
diff --git a/cairo/test/reference/fill-alpha-pattern.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-alpha-pattern.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-alpha-pattern.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-alpha-pattern.base.rgb24.ref.png
diff --git a/cairo/test/reference/fill-alpha-pattern.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-alpha-pattern.image16.ref.png
similarity index 100%
rename from cairo/test/reference/fill-alpha-pattern.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-alpha-pattern.image16.ref.png
diff --git a/cairo/test/reference/fill-alpha-pattern.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-alpha-pattern.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/fill-alpha-pattern.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-alpha-pattern.pdf.ref.png
diff --git a/cairo/test/reference/fill-alpha-pattern.ps3.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-alpha-pattern.ps3.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-alpha-pattern.ps3.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-alpha-pattern.ps3.argb32.ref.png
diff --git a/cairo/test/reference/fill-alpha-pattern.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-alpha-pattern.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/fill-alpha-pattern.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-alpha-pattern.quartz.ref.png
diff --git a/cairo/test/reference/fill-alpha-pattern.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-alpha-pattern.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-alpha-pattern.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-alpha-pattern.rgb24.ref.png
diff --git a/cairo/test/reference/fill-alpha-pattern.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-alpha-pattern.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-alpha-pattern.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-alpha-pattern.traps.argb32.ref.png
diff --git a/cairo/test/reference/fill-alpha-pattern.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-alpha-pattern.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-alpha-pattern.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-alpha-pattern.traps.rgb24.ref.png
diff --git a/cairo/test/reference/fill-alpha.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-alpha.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-alpha.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-alpha.argb32.ref.png
diff --git a/cairo/test/reference/fill-alpha.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-alpha.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-alpha.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-alpha.base.argb32.ref.png
diff --git a/cairo/test/reference/fill-alpha.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-alpha.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-alpha.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-alpha.base.rgb24.ref.png
diff --git a/cairo/test/reference/fill-alpha.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-alpha.image16.ref.png
similarity index 100%
rename from cairo/test/reference/fill-alpha.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-alpha.image16.ref.png
diff --git a/cairo/test/reference/fill-alpha.ps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-alpha.ps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-alpha.ps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-alpha.ps.argb32.ref.png
diff --git a/cairo/test/reference/fill-alpha.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-alpha.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/fill-alpha.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-alpha.quartz.ref.png
diff --git a/cairo/test/reference/fill-alpha.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-alpha.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-alpha.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-alpha.rgb24.ref.png
diff --git a/cairo/test/reference/fill-alpha.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-alpha.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-alpha.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-alpha.traps.argb32.ref.png
diff --git a/cairo/test/reference/fill-alpha.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-alpha.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-alpha.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-alpha.traps.rgb24.ref.png
diff --git a/cairo/test/reference/fill-and-stroke-alpha-add.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha-add.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke-alpha-add.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha-add.argb32.ref.png
diff --git a/cairo/test/reference/fill-and-stroke-alpha-add.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha-add.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke-alpha-add.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha-add.base.argb32.ref.png
diff --git a/cairo/test/reference/fill-and-stroke-alpha-add.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha-add.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke-alpha-add.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha-add.base.rgb24.ref.png
diff --git a/cairo/test/reference/fill-and-stroke-alpha-add.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha-add.image16.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke-alpha-add.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha-add.image16.ref.png
diff --git a/cairo/test/reference/fill-and-stroke-alpha-add.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha-add.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke-alpha-add.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha-add.quartz.ref.png
diff --git a/cairo/test/reference/fill-and-stroke-alpha-add.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha-add.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke-alpha-add.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha-add.rgb24.ref.png
diff --git a/cairo/test/reference/fill-and-stroke-alpha-add.svg12.xfail.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha-add.svg12.xfail.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke-alpha-add.svg12.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha-add.svg12.xfail.png
diff --git a/cairo/test/reference/fill-and-stroke-alpha-add.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha-add.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke-alpha-add.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha-add.traps.argb32.ref.png
diff --git a/cairo/test/reference/fill-and-stroke-alpha-add.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha-add.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke-alpha-add.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha-add.traps.rgb24.ref.png
diff --git a/cairo/test/reference/fill-and-stroke-alpha.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke-alpha.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha.argb32.ref.png
diff --git a/cairo/test/reference/fill-and-stroke-alpha.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke-alpha.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha.base.argb32.ref.png
diff --git a/cairo/test/reference/fill-and-stroke-alpha.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke-alpha.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha.base.rgb24.ref.png
diff --git a/cairo/test/reference/fill-and-stroke-alpha.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha.image16.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke-alpha.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha.image16.ref.png
diff --git a/cairo/test/reference/fill-and-stroke-alpha.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke-alpha.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha.rgb24.ref.png
diff --git a/cairo/test/reference/fill-and-stroke-alpha.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke-alpha.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha.traps.argb32.ref.png
diff --git a/cairo/test/reference/fill-and-stroke-alpha.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke-alpha.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke-alpha.traps.rgb24.ref.png
diff --git a/cairo/test/reference/fill-and-stroke.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.argb32.ref.png
diff --git a/cairo/test/reference/fill-and-stroke.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.base.argb32.ref.png
diff --git a/cairo/test/reference/fill-and-stroke.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.base.rgb24.ref.png
diff --git a/cairo/test/reference/fill-and-stroke.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.image16.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.image16.ref.png
diff --git a/cairo/test/reference/fill-and-stroke.ps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.ps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke.ps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.ps.argb32.ref.png
diff --git a/cairo/test/reference/fill-and-stroke.ps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.ps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke.ps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.ps.rgb24.ref.png
diff --git a/cairo/test/reference/fill-and-stroke.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.quartz.argb32.ref.png
diff --git a/cairo/test/reference/fill-and-stroke.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/fill-and-stroke.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.rgb24.ref.png
diff --git a/cairo/test/reference/fill-and-stroke.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.traps.argb32.ref.png
diff --git a/cairo/test/reference/fill-and-stroke.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-and-stroke.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-and-stroke.traps.rgb24.ref.png
diff --git a/cairo/test/reference/fill-degenerate-sort-order.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-degenerate-sort-order.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.argb32.ref.png
diff --git a/cairo/test/reference/fill-degenerate-sort-order.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-degenerate-sort-order.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.base.argb32.ref.png
diff --git a/cairo/test/reference/fill-degenerate-sort-order.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-degenerate-sort-order.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.base.rgb24.ref.png
diff --git a/cairo/test/reference/fill-degenerate-sort-order.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.image16.ref.png
similarity index 100%
rename from cairo/test/reference/fill-degenerate-sort-order.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.image16.ref.png
diff --git a/cairo/test/reference/fill-degenerate-sort-order.ps.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.ps.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/fill-degenerate-sort-order.ps.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.ps.argb32.xfail.png
diff --git a/cairo/test/reference/fill-degenerate-sort-order.ps.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.ps.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/fill-degenerate-sort-order.ps.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.ps.rgb24.xfail.png
diff --git a/cairo/test/reference/fill-degenerate-sort-order.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-degenerate-sort-order.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.quartz.argb32.ref.png
diff --git a/cairo/test/reference/fill-degenerate-sort-order.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-degenerate-sort-order.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/fill-degenerate-sort-order.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-degenerate-sort-order.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.rgb24.ref.png
diff --git a/cairo/test/reference/fill-degenerate-sort-order.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-degenerate-sort-order.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.traps.argb32.ref.png
diff --git a/cairo/test/reference/fill-degenerate-sort-order.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-degenerate-sort-order.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-degenerate-sort-order.traps.rgb24.ref.png
diff --git a/cairo/test/reference/fill-disjoint.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-disjoint.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-disjoint.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-disjoint.base.argb32.ref.png
diff --git a/cairo/test/reference/fill-disjoint.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-disjoint.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-disjoint.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-disjoint.base.rgb24.ref.png
diff --git a/cairo/test/reference/fill-disjoint.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-disjoint.ref.png
similarity index 100%
rename from cairo/test/reference/fill-disjoint.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-disjoint.ref.png
diff --git a/cairo/test/reference/fill-empty.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-empty.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-empty.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-empty.argb32.ref.png
diff --git a/cairo/test/reference/fill-empty.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-empty.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-empty.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-empty.base.argb32.ref.png
diff --git a/cairo/test/reference/fill-empty.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-empty.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-empty.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-empty.base.rgb24.ref.png
diff --git a/cairo/test/reference/fill-empty.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-empty.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-empty.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-empty.rgb24.ref.png
diff --git a/cairo/test/reference/fill-empty.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/fill-empty.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/fill-empty.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-empty.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/fill-image.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-image.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-image.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-image.argb32.ref.png
diff --git a/cairo/test/reference/fill-image.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-image.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-image.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-image.base.argb32.ref.png
diff --git a/cairo/test/reference/fill-image.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-image.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-image.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-image.base.rgb24.ref.png
diff --git a/cairo/test/reference/fill-image.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-image.image16.ref.png
similarity index 100%
rename from cairo/test/reference/fill-image.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-image.image16.ref.png
diff --git a/cairo/test/reference/fill-image.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-image.ps.ref.png
similarity index 100%
rename from cairo/test/reference/fill-image.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-image.ps.ref.png
diff --git a/cairo/test/reference/fill-image.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-image.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/fill-image.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-image.quartz.ref.png
diff --git a/cairo/test/reference/fill-image.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-image.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-image.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-image.rgb24.ref.png
diff --git a/cairo/test/reference/fill-image.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-image.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-image.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-image.traps.argb32.ref.png
diff --git a/cairo/test/reference/fill-image.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-image.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-image.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-image.traps.rgb24.ref.png
diff --git a/cairo/test/reference/fill-missed-stop.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-missed-stop.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.argb32.ref.png
diff --git a/cairo/test/reference/fill-missed-stop.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-missed-stop.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.base.argb32.ref.png
diff --git a/cairo/test/reference/fill-missed-stop.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-missed-stop.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.base.rgb24.ref.png
diff --git a/cairo/test/reference/fill-missed-stop.pdf.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.pdf.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-missed-stop.pdf.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.pdf.argb32.ref.png
diff --git a/cairo/test/reference/fill-missed-stop.ps2.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.ps2.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-missed-stop.ps2.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.ps2.argb32.ref.png
diff --git a/cairo/test/reference/fill-missed-stop.ps2.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.ps2.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-missed-stop.ps2.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.ps2.rgb24.ref.png
diff --git a/cairo/test/reference/fill-missed-stop.ps3.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.ps3.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-missed-stop.ps3.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.ps3.argb32.ref.png
diff --git a/cairo/test/reference/fill-missed-stop.ps3.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.ps3.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-missed-stop.ps3.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.ps3.rgb24.ref.png
diff --git a/cairo/test/reference/fill-missed-stop.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-missed-stop.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.rgb24.ref.png
diff --git a/cairo/test/reference/fill-missed-stop.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-missed-stop.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.traps.argb32.ref.png
diff --git a/cairo/test/reference/fill-missed-stop.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-missed-stop.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-missed-stop.traps.rgb24.ref.png
diff --git a/cairo/test/reference/fill-rule.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-rule.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-rule.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-rule.argb32.ref.png
diff --git a/cairo/test/reference/fill-rule.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-rule.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-rule.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-rule.base.argb32.ref.png
diff --git a/cairo/test/reference/fill-rule.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-rule.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-rule.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-rule.base.rgb24.ref.png
diff --git a/cairo/test/reference/fill-rule.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-rule.image16.ref.png
similarity index 100%
rename from cairo/test/reference/fill-rule.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-rule.image16.ref.png
diff --git a/cairo/test/reference/fill-rule.ps2.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-rule.ps2.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-rule.ps2.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-rule.ps2.argb32.ref.png
diff --git a/cairo/test/reference/fill-rule.ps2.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-rule.ps2.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-rule.ps2.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-rule.ps2.rgb24.ref.png
diff --git a/cairo/test/reference/fill-rule.ps3.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-rule.ps3.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-rule.ps3.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-rule.ps3.argb32.ref.png
diff --git a/cairo/test/reference/fill-rule.ps3.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-rule.ps3.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-rule.ps3.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-rule.ps3.rgb24.ref.png
diff --git a/cairo/test/reference/fill-rule.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-rule.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-rule.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-rule.quartz.argb32.ref.png
diff --git a/cairo/test/reference/fill-rule.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-rule.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-rule.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-rule.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/fill-rule.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-rule.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-rule.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-rule.rgb24.ref.png
diff --git a/cairo/test/reference/fill-rule.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-rule.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-rule.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-rule.traps.argb32.ref.png
diff --git a/cairo/test/reference/fill-rule.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-rule.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-rule.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-rule.traps.rgb24.ref.png
diff --git a/cairo/test/reference/fill-xlib-fallback.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-xlib-fallback.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-xlib-fallback.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-xlib-fallback.rgb24.ref.png
diff --git a/cairo/test/reference/fill-xlib-window.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-xlib-window.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-xlib-window.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-xlib-window.rgb24.ref.png
diff --git a/cairo/test/reference/fill-xlib.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-xlib.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/fill-xlib.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-xlib.argb32.ref.png
diff --git a/cairo/test/reference/fill-xlib.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/fill-xlib.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/fill-xlib.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/fill-xlib.rgb24.ref.png
diff --git a/cairo/test/reference/filter-bilinear-extents.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/filter-bilinear-extents.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/filter-bilinear-extents.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-bilinear-extents.argb32.ref.png
diff --git a/cairo/test/reference/filter-bilinear-extents.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/filter-bilinear-extents.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/filter-bilinear-extents.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-bilinear-extents.base.argb32.ref.png
diff --git a/cairo/test/reference/filter-bilinear-extents.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/filter-bilinear-extents.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/filter-bilinear-extents.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-bilinear-extents.base.rgb24.ref.png
diff --git a/cairo/test/reference/filter-bilinear-extents.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/filter-bilinear-extents.image16.ref.png
similarity index 100%
rename from cairo/test/reference/filter-bilinear-extents.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-bilinear-extents.image16.ref.png
diff --git a/cairo/test/reference/filter-bilinear-extents.pdf.xfail.png b/io2d/src/3rd-party/cairo/test/reference/filter-bilinear-extents.pdf.xfail.png
similarity index 100%
rename from cairo/test/reference/filter-bilinear-extents.pdf.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-bilinear-extents.pdf.xfail.png
diff --git a/cairo/test/reference/filter-bilinear-extents.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/filter-bilinear-extents.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/filter-bilinear-extents.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-bilinear-extents.ps2.ref.png
diff --git a/cairo/test/reference/filter-bilinear-extents.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/filter-bilinear-extents.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/filter-bilinear-extents.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-bilinear-extents.ps3.ref.png
diff --git a/cairo/test/reference/filter-bilinear-extents.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/filter-bilinear-extents.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/filter-bilinear-extents.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-bilinear-extents.quartz.xfail.png
diff --git a/cairo/test/reference/filter-bilinear-extents.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/filter-bilinear-extents.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/filter-bilinear-extents.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-bilinear-extents.rgb24.ref.png
diff --git a/cairo/test/reference/filter-nearest-offset.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/filter-nearest-offset.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/filter-nearest-offset.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-nearest-offset.base.argb32.ref.png
diff --git a/cairo/test/reference/filter-nearest-offset.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/filter-nearest-offset.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/filter-nearest-offset.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-nearest-offset.base.rgb24.ref.png
diff --git a/cairo/test/reference/filter-nearest-offset.gl.xfail.png b/io2d/src/3rd-party/cairo/test/reference/filter-nearest-offset.gl.xfail.png
similarity index 100%
rename from cairo/test/reference/filter-nearest-offset.gl.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-nearest-offset.gl.xfail.png
diff --git a/cairo/test/reference/filter-nearest-offset.pdf.xfail.png b/io2d/src/3rd-party/cairo/test/reference/filter-nearest-offset.pdf.xfail.png
similarity index 100%
rename from cairo/test/reference/filter-nearest-offset.pdf.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-nearest-offset.pdf.xfail.png
diff --git a/cairo/test/reference/filter-nearest-offset.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/filter-nearest-offset.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/filter-nearest-offset.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-nearest-offset.ps2.ref.png
diff --git a/cairo/test/reference/filter-nearest-offset.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/filter-nearest-offset.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/filter-nearest-offset.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-nearest-offset.ps3.ref.png
diff --git a/cairo/test/reference/filter-nearest-offset.ref.png b/io2d/src/3rd-party/cairo/test/reference/filter-nearest-offset.ref.png
similarity index 100%
rename from cairo/test/reference/filter-nearest-offset.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-nearest-offset.ref.png
diff --git a/cairo/test/reference/filter-nearest-offset.svg.xfail.png b/io2d/src/3rd-party/cairo/test/reference/filter-nearest-offset.svg.xfail.png
similarity index 100%
rename from cairo/test/reference/filter-nearest-offset.svg.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-nearest-offset.svg.xfail.png
diff --git a/cairo/test/reference/filter-nearest-transformed.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/filter-nearest-transformed.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/filter-nearest-transformed.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-nearest-transformed.base.argb32.ref.png
diff --git a/cairo/test/reference/filter-nearest-transformed.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/filter-nearest-transformed.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/filter-nearest-transformed.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-nearest-transformed.base.rgb24.ref.png
diff --git a/cairo/test/reference/filter-nearest-transformed.gl.xfail.png b/io2d/src/3rd-party/cairo/test/reference/filter-nearest-transformed.gl.xfail.png
similarity index 100%
rename from cairo/test/reference/filter-nearest-transformed.gl.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-nearest-transformed.gl.xfail.png
diff --git a/cairo/test/reference/filter-nearest-transformed.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/filter-nearest-transformed.image16.ref.png
similarity index 100%
rename from cairo/test/reference/filter-nearest-transformed.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-nearest-transformed.image16.ref.png
diff --git a/cairo/test/reference/filter-nearest-transformed.pdf.xfail.png b/io2d/src/3rd-party/cairo/test/reference/filter-nearest-transformed.pdf.xfail.png
similarity index 100%
rename from cairo/test/reference/filter-nearest-transformed.pdf.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-nearest-transformed.pdf.xfail.png
diff --git a/cairo/test/reference/filter-nearest-transformed.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/filter-nearest-transformed.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/filter-nearest-transformed.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-nearest-transformed.quartz.xfail.png
diff --git a/cairo/test/reference/filter-nearest-transformed.ref.png b/io2d/src/3rd-party/cairo/test/reference/filter-nearest-transformed.ref.png
similarity index 100%
rename from cairo/test/reference/filter-nearest-transformed.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-nearest-transformed.ref.png
diff --git a/cairo/test/reference/filter-nearest-transformed.svg.xfail.png b/io2d/src/3rd-party/cairo/test/reference/filter-nearest-transformed.svg.xfail.png
similarity index 100%
rename from cairo/test/reference/filter-nearest-transformed.svg.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/filter-nearest-transformed.svg.xfail.png
diff --git a/cairo/test/reference/finer-grained-fallbacks.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/finer-grained-fallbacks.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.argb32.ref.png
diff --git a/cairo/test/reference/finer-grained-fallbacks.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/finer-grained-fallbacks.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.base.argb32.ref.png
diff --git a/cairo/test/reference/finer-grained-fallbacks.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/finer-grained-fallbacks.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.base.rgb24.ref.png
diff --git a/cairo/test/reference/finer-grained-fallbacks.gl.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.gl.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/finer-grained-fallbacks.gl.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.gl.argb32.ref.png
diff --git a/cairo/test/reference/finer-grained-fallbacks.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.image16.ref.png
similarity index 100%
rename from cairo/test/reference/finer-grained-fallbacks.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.image16.ref.png
diff --git a/cairo/test/reference/finer-grained-fallbacks.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/finer-grained-fallbacks.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.mask.argb32.ref.png
diff --git a/cairo/test/reference/finer-grained-fallbacks.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/finer-grained-fallbacks.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.mask.rgb24.ref.png
diff --git a/cairo/test/reference/finer-grained-fallbacks.ps2.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.ps2.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/finer-grained-fallbacks.ps2.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.ps2.argb32.ref.png
diff --git a/cairo/test/reference/finer-grained-fallbacks.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/finer-grained-fallbacks.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.ps2.ref.png
diff --git a/cairo/test/reference/finer-grained-fallbacks.ps2.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.ps2.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/finer-grained-fallbacks.ps2.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.ps2.rgb24.ref.png
diff --git a/cairo/test/reference/finer-grained-fallbacks.ps3.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.ps3.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/finer-grained-fallbacks.ps3.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.ps3.argb32.ref.png
diff --git a/cairo/test/reference/finer-grained-fallbacks.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/finer-grained-fallbacks.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.ps3.ref.png
diff --git a/cairo/test/reference/finer-grained-fallbacks.ps3.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.ps3.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/finer-grained-fallbacks.ps3.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.ps3.rgb24.ref.png
diff --git a/cairo/test/reference/finer-grained-fallbacks.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/finer-grained-fallbacks.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.quartz.argb32.ref.png
diff --git a/cairo/test/reference/finer-grained-fallbacks.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/finer-grained-fallbacks.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/finer-grained-fallbacks.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/finer-grained-fallbacks.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.rgb24.ref.png
diff --git a/cairo/test/reference/finer-grained-fallbacks.svg12.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.svg12.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/finer-grained-fallbacks.svg12.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.svg12.argb32.ref.png
diff --git a/cairo/test/reference/finer-grained-fallbacks.svg12.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.svg12.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/finer-grained-fallbacks.svg12.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.svg12.rgb24.ref.png
diff --git a/cairo/test/reference/finer-grained-fallbacks.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/finer-grained-fallbacks.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.traps.argb32.ref.png
diff --git a/cairo/test/reference/finer-grained-fallbacks.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/finer-grained-fallbacks.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.traps.rgb24.ref.png
diff --git a/cairo/test/reference/finer-grained-fallbacks.xlib-fallback.ref.png b/io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.xlib-fallback.ref.png
similarity index 100%
rename from cairo/test/reference/finer-grained-fallbacks.xlib-fallback.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/finer-grained-fallbacks.xlib-fallback.ref.png
diff --git a/cairo/test/reference/font-matrix-translation.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/font-matrix-translation.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.argb32.ref.png
diff --git a/cairo/test/reference/font-matrix-translation.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/font-matrix-translation.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.base.argb32.ref.png
diff --git a/cairo/test/reference/font-matrix-translation.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/font-matrix-translation.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.base.rgb24.ref.png
diff --git a/cairo/test/reference/font-matrix-translation.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.image16.ref.png
similarity index 100%
rename from cairo/test/reference/font-matrix-translation.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.image16.ref.png
diff --git a/cairo/test/reference/font-matrix-translation.ps2.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.ps2.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/font-matrix-translation.ps2.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.ps2.argb32.ref.png
diff --git a/cairo/test/reference/font-matrix-translation.ps2.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.ps2.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/font-matrix-translation.ps2.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.ps2.rgb24.ref.png
diff --git a/cairo/test/reference/font-matrix-translation.ps3.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.ps3.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/font-matrix-translation.ps3.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.ps3.argb32.ref.png
diff --git a/cairo/test/reference/font-matrix-translation.ps3.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.ps3.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/font-matrix-translation.ps3.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.ps3.rgb24.ref.png
diff --git a/cairo/test/reference/font-matrix-translation.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/font-matrix-translation.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.quartz.ref.png
diff --git a/cairo/test/reference/font-matrix-translation.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/font-matrix-translation.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.rgb24.ref.png
diff --git a/cairo/test/reference/font-matrix-translation.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.svg.ref.png
similarity index 100%
rename from cairo/test/reference/font-matrix-translation.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.svg.ref.png
diff --git a/cairo/test/reference/font-matrix-translation.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.traps.ref.png
similarity index 100%
rename from cairo/test/reference/font-matrix-translation.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/font-matrix-translation.traps.ref.png
diff --git a/cairo/test/reference/ft-show-glyphs-positioning.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-positioning.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/ft-show-glyphs-positioning.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-positioning.argb32.ref.png
diff --git a/cairo/test/reference/ft-show-glyphs-positioning.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-positioning.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/ft-show-glyphs-positioning.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-positioning.base.argb32.ref.png
diff --git a/cairo/test/reference/ft-show-glyphs-positioning.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-positioning.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/ft-show-glyphs-positioning.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-positioning.base.rgb24.ref.png
diff --git a/cairo/test/reference/ft-show-glyphs-positioning.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-positioning.image16.ref.png
similarity index 100%
rename from cairo/test/reference/ft-show-glyphs-positioning.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-positioning.image16.ref.png
diff --git a/cairo/test/reference/ft-show-glyphs-positioning.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-positioning.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/ft-show-glyphs-positioning.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-positioning.pdf.ref.png
diff --git a/cairo/test/reference/ft-show-glyphs-positioning.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-positioning.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/ft-show-glyphs-positioning.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-positioning.ps2.ref.png
diff --git a/cairo/test/reference/ft-show-glyphs-positioning.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-positioning.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/ft-show-glyphs-positioning.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-positioning.ps3.ref.png
diff --git a/cairo/test/reference/ft-show-glyphs-positioning.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-positioning.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/ft-show-glyphs-positioning.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-positioning.rgb24.ref.png
diff --git a/cairo/test/reference/ft-show-glyphs-positioning.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-positioning.svg.ref.png
similarity index 100%
rename from cairo/test/reference/ft-show-glyphs-positioning.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-positioning.svg.ref.png
diff --git a/cairo/test/reference/ft-show-glyphs-positioning.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-positioning.traps.ref.png
similarity index 100%
rename from cairo/test/reference/ft-show-glyphs-positioning.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-positioning.traps.ref.png
diff --git a/cairo/test/reference/ft-show-glyphs-table.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-table.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/ft-show-glyphs-table.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-table.argb32.ref.png
diff --git a/cairo/test/reference/ft-show-glyphs-table.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-table.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/ft-show-glyphs-table.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-table.base.argb32.ref.png
diff --git a/cairo/test/reference/ft-show-glyphs-table.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-table.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/ft-show-glyphs-table.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-table.base.rgb24.ref.png
diff --git a/cairo/test/reference/ft-show-glyphs-table.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-table.image16.ref.png
similarity index 100%
rename from cairo/test/reference/ft-show-glyphs-table.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-table.image16.ref.png
diff --git a/cairo/test/reference/ft-show-glyphs-table.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-table.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/ft-show-glyphs-table.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-table.ps2.ref.png
diff --git a/cairo/test/reference/ft-show-glyphs-table.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-table.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/ft-show-glyphs-table.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-table.ps3.ref.png
diff --git a/cairo/test/reference/ft-show-glyphs-table.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-table.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/ft-show-glyphs-table.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-table.quartz.xfail.png
diff --git a/cairo/test/reference/ft-show-glyphs-table.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-table.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/ft-show-glyphs-table.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-table.rgb24.ref.png
diff --git a/cairo/test/reference/ft-show-glyphs-table.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-table.svg.ref.png
similarity index 100%
rename from cairo/test/reference/ft-show-glyphs-table.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-table.svg.ref.png
diff --git a/cairo/test/reference/ft-show-glyphs-table.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-table.traps.ref.png
similarity index 100%
rename from cairo/test/reference/ft-show-glyphs-table.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-show-glyphs-table.traps.ref.png
diff --git a/cairo/test/reference/ft-text-antialias-none.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-antialias-none.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-antialias-none.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-antialias-none.base.argb32.ref.png
diff --git a/cairo/test/reference/ft-text-antialias-none.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-antialias-none.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-antialias-none.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-antialias-none.base.rgb24.ref.png
diff --git a/cairo/test/reference/ft-text-antialias-none.ps2.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-antialias-none.ps2.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-antialias-none.ps2.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-antialias-none.ps2.argb32.ref.png
diff --git a/cairo/test/reference/ft-text-antialias-none.ps3.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-antialias-none.ps3.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-antialias-none.ps3.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-antialias-none.ps3.argb32.ref.png
diff --git a/cairo/test/reference/ft-text-antialias-none.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-antialias-none.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-antialias-none.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-antialias-none.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type1.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type1.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.argb32.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type1.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type1.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.base.argb32.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type1.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type1.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.base.rgb24.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type1.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.image16.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type1.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.image16.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type1.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type1.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.pdf.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type1.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.ps.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type1.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.ps.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type1.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type1.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.quartz.xfail.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type1.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type1.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.rgb24.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type1.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.svg.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type1.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.svg.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type1.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type1.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.traps.argb32.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type1.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type1.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.traps.rgb24.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type1.xfail.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.xfail.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type1.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type1.xfail.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type3.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type3.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.base.argb32.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type3.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type3.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.base.rgb24.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type3.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.image16.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type3.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.image16.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type3.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type3.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.mask.argb32.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type3.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type3.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.mask.rgb24.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type3.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type3.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.pdf.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type3.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.ps.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type3.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.ps.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type3.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type3.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.quartz.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type3.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type3.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.svg.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type3.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.svg.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type3.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type3.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.traps.argb32.ref.png
diff --git a/cairo/test/reference/ft-text-vertical-layout-type3.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/ft-text-vertical-layout-type3.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ft-text-vertical-layout-type3.traps.rgb24.ref.png
diff --git a/cairo/test/reference/get-group-target.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/get-group-target.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/get-group-target.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/get-group-target.base.argb32.ref.png
diff --git a/cairo/test/reference/get-group-target.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/get-group-target.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/get-group-target.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/get-group-target.base.rgb24.ref.png
diff --git a/cairo/test/reference/get-group-target.ref.png b/io2d/src/3rd-party/cairo/test/reference/get-group-target.ref.png
similarity index 100%
rename from cairo/test/reference/get-group-target.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/get-group-target.ref.png
diff --git a/cairo/test/reference/gl-surface-source.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/gl-surface-source.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/gl-surface-source.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gl-surface-source.argb32.ref.png
diff --git a/cairo/test/reference/gl-surface-source.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/gl-surface-source.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/gl-surface-source.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gl-surface-source.base.argb32.ref.png
diff --git a/cairo/test/reference/gl-surface-source.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/gl-surface-source.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/gl-surface-source.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gl-surface-source.base.rgb24.ref.png
diff --git a/cairo/test/reference/gl-surface-source.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/gl-surface-source.image16.ref.png
similarity index 100%
rename from cairo/test/reference/gl-surface-source.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gl-surface-source.image16.ref.png
diff --git a/cairo/test/reference/gl-surface-source.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/gl-surface-source.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/gl-surface-source.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gl-surface-source.rgb24.ref.png
diff --git a/cairo/test/reference/glyph-cache-pressure.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/glyph-cache-pressure.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/glyph-cache-pressure.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/glyph-cache-pressure.argb32.ref.png
diff --git a/cairo/test/reference/glyph-cache-pressure.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/glyph-cache-pressure.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/glyph-cache-pressure.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/glyph-cache-pressure.base.argb32.ref.png
diff --git a/cairo/test/reference/glyph-cache-pressure.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/glyph-cache-pressure.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/glyph-cache-pressure.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/glyph-cache-pressure.base.rgb24.ref.png
diff --git a/cairo/test/reference/glyph-cache-pressure.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/glyph-cache-pressure.image16.ref.png
similarity index 100%
rename from cairo/test/reference/glyph-cache-pressure.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/glyph-cache-pressure.image16.ref.png
diff --git a/cairo/test/reference/glyph-cache-pressure.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/glyph-cache-pressure.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/glyph-cache-pressure.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/glyph-cache-pressure.ps2.ref.png
diff --git a/cairo/test/reference/glyph-cache-pressure.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/glyph-cache-pressure.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/glyph-cache-pressure.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/glyph-cache-pressure.ps3.ref.png
diff --git a/cairo/test/reference/glyph-cache-pressure.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/glyph-cache-pressure.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/glyph-cache-pressure.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/glyph-cache-pressure.quartz.ref.png
diff --git a/cairo/test/reference/glyph-cache-pressure.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/glyph-cache-pressure.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/glyph-cache-pressure.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/glyph-cache-pressure.rgb24.ref.png
diff --git a/cairo/test/reference/glyph-cache-pressure.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/glyph-cache-pressure.traps.ref.png
similarity index 100%
rename from cairo/test/reference/glyph-cache-pressure.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/glyph-cache-pressure.traps.ref.png
diff --git a/cairo/test/reference/gradient-alpha.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-alpha.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-alpha.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-alpha.argb32.ref.png
diff --git a/cairo/test/reference/gradient-alpha.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-alpha.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-alpha.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-alpha.base.argb32.ref.png
diff --git a/cairo/test/reference/gradient-alpha.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-alpha.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-alpha.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-alpha.base.rgb24.ref.png
diff --git a/cairo/test/reference/gradient-alpha.ps2.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-alpha.ps2.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-alpha.ps2.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-alpha.ps2.argb32.ref.png
diff --git a/cairo/test/reference/gradient-alpha.ps2.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-alpha.ps2.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-alpha.ps2.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-alpha.ps2.rgb24.ref.png
diff --git a/cairo/test/reference/gradient-alpha.ps3.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-alpha.ps3.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-alpha.ps3.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-alpha.ps3.argb32.ref.png
diff --git a/cairo/test/reference/gradient-alpha.ps3.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-alpha.ps3.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-alpha.ps3.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-alpha.ps3.rgb24.ref.png
diff --git a/cairo/test/reference/gradient-alpha.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-alpha.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-alpha.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-alpha.rgb24.ref.png
diff --git a/cairo/test/reference/gradient-constant-alpha.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-constant-alpha.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-constant-alpha.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-constant-alpha.argb32.ref.png
diff --git a/cairo/test/reference/gradient-constant-alpha.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-constant-alpha.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-constant-alpha.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-constant-alpha.base.argb32.ref.png
diff --git a/cairo/test/reference/gradient-constant-alpha.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-constant-alpha.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-constant-alpha.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-constant-alpha.base.rgb24.ref.png
diff --git a/cairo/test/reference/gradient-constant-alpha.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-constant-alpha.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-constant-alpha.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-constant-alpha.ps3.ref.png
diff --git a/cairo/test/reference/gradient-constant-alpha.ps3.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-constant-alpha.ps3.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-constant-alpha.ps3.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-constant-alpha.ps3.rgb24.ref.png
diff --git a/cairo/test/reference/gradient-constant-alpha.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-constant-alpha.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-constant-alpha.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-constant-alpha.quartz.argb32.ref.png
diff --git a/cairo/test/reference/gradient-constant-alpha.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-constant-alpha.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-constant-alpha.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-constant-alpha.rgb24.ref.png
diff --git a/cairo/test/reference/gradient-zero-stops-mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-zero-stops-mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-zero-stops-mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-zero-stops-mask.argb32.ref.png
diff --git a/cairo/test/reference/gradient-zero-stops-mask.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-zero-stops-mask.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-zero-stops-mask.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-zero-stops-mask.base.argb32.ref.png
diff --git a/cairo/test/reference/gradient-zero-stops-mask.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-zero-stops-mask.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-zero-stops-mask.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-zero-stops-mask.base.rgb24.ref.png
diff --git a/cairo/test/reference/gradient-zero-stops-mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-zero-stops-mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-zero-stops-mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-zero-stops-mask.rgb24.ref.png
diff --git a/cairo/test/reference/gradient-zero-stops.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-zero-stops.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-zero-stops.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-zero-stops.argb32.ref.png
diff --git a/cairo/test/reference/gradient-zero-stops.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-zero-stops.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-zero-stops.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-zero-stops.base.argb32.ref.png
diff --git a/cairo/test/reference/gradient-zero-stops.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-zero-stops.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-zero-stops.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-zero-stops.base.rgb24.ref.png
diff --git a/cairo/test/reference/gradient-zero-stops.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/gradient-zero-stops.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/gradient-zero-stops.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/gradient-zero-stops.rgb24.ref.png
diff --git a/cairo/test/reference/group-clip.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/group-clip.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/group-clip.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/group-clip.base.argb32.ref.png
diff --git a/cairo/test/reference/group-clip.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/group-clip.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/group-clip.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/group-clip.base.rgb24.ref.png
diff --git a/cairo/test/reference/group-clip.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/group-clip.image16.ref.png
similarity index 100%
rename from cairo/test/reference/group-clip.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/group-clip.image16.ref.png
diff --git a/cairo/test/reference/group-clip.ref.png b/io2d/src/3rd-party/cairo/test/reference/group-clip.ref.png
similarity index 100%
rename from cairo/test/reference/group-clip.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/group-clip.ref.png
diff --git a/cairo/test/reference/group-paint.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/group-paint.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/group-paint.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/group-paint.base.argb32.ref.png
diff --git a/cairo/test/reference/group-paint.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/group-paint.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/group-paint.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/group-paint.base.rgb24.ref.png
diff --git a/cairo/test/reference/group-paint.ref.png b/io2d/src/3rd-party/cairo/test/reference/group-paint.ref.png
similarity index 100%
rename from cairo/test/reference/group-paint.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/group-paint.ref.png
diff --git a/cairo/test/reference/group-unaligned.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/group-unaligned.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/group-unaligned.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/group-unaligned.argb32.ref.png
diff --git a/cairo/test/reference/group-unaligned.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/group-unaligned.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/group-unaligned.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/group-unaligned.base.argb32.ref.png
diff --git a/cairo/test/reference/group-unaligned.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/group-unaligned.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/group-unaligned.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/group-unaligned.base.rgb24.ref.png
diff --git a/cairo/test/reference/group-unaligned.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/group-unaligned.image16.ref.png
similarity index 100%
rename from cairo/test/reference/group-unaligned.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/group-unaligned.image16.ref.png
diff --git a/cairo/test/reference/group-unaligned.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/group-unaligned.ps.ref.png
similarity index 100%
rename from cairo/test/reference/group-unaligned.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/group-unaligned.ps.ref.png
diff --git a/cairo/test/reference/group-unaligned.ps.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/group-unaligned.ps.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/group-unaligned.ps.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/group-unaligned.ps.rgb24.xfail.png
diff --git a/cairo/test/reference/group-unaligned.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/group-unaligned.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/group-unaligned.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/group-unaligned.quartz.ref.png
diff --git a/cairo/test/reference/group-unaligned.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/group-unaligned.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/group-unaligned.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/group-unaligned.rgb24.ref.png
diff --git a/cairo/test/reference/group-unaligned.svg.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/group-unaligned.svg.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/group-unaligned.svg.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/group-unaligned.svg.argb32.xfail.png
diff --git a/cairo/test/reference/group-unaligned.svg.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/group-unaligned.svg.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/group-unaligned.svg.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/group-unaligned.svg.rgb24.xfail.png
diff --git a/cairo/test/reference/group-unaligned.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/group-unaligned.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/group-unaligned.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/group-unaligned.traps.argb32.ref.png
diff --git a/cairo/test/reference/group-unaligned.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/group-unaligned.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/group-unaligned.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/group-unaligned.traps.rgb24.ref.png
diff --git a/cairo/test/reference/group-unaligned.xlib-fallback.ref.png b/io2d/src/3rd-party/cairo/test/reference/group-unaligned.xlib-fallback.ref.png
similarity index 100%
rename from cairo/test/reference/group-unaligned.xlib-fallback.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/group-unaligned.xlib-fallback.ref.png
diff --git a/cairo/test/reference/halo-transform.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/halo-transform.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/halo-transform.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/halo-transform.argb32.ref.png
diff --git a/cairo/test/reference/halo-transform.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/halo-transform.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/halo-transform.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/halo-transform.base.argb32.ref.png
diff --git a/cairo/test/reference/halo-transform.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/halo-transform.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/halo-transform.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/halo-transform.base.rgb24.ref.png
diff --git a/cairo/test/reference/halo-transform.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/halo-transform.image16.ref.png
similarity index 100%
rename from cairo/test/reference/halo-transform.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/halo-transform.image16.ref.png
diff --git a/cairo/test/reference/halo-transform.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/halo-transform.ps.ref.png
similarity index 100%
rename from cairo/test/reference/halo-transform.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/halo-transform.ps.ref.png
diff --git a/cairo/test/reference/halo-transform.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/halo-transform.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/halo-transform.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/halo-transform.quartz.ref.png
diff --git a/cairo/test/reference/halo-transform.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/halo-transform.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/halo-transform.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/halo-transform.rgb24.ref.png
diff --git a/cairo/test/reference/halo-transform.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/halo-transform.traps.ref.png
similarity index 100%
rename from cairo/test/reference/halo-transform.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/halo-transform.traps.ref.png
diff --git a/cairo/test/reference/halo.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/halo.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/halo.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/halo.base.argb32.ref.png
diff --git a/cairo/test/reference/halo.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/halo.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/halo.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/halo.base.rgb24.ref.png
diff --git a/cairo/test/reference/halo.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/halo.image16.ref.png
similarity index 100%
rename from cairo/test/reference/halo.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/halo.image16.ref.png
diff --git a/cairo/test/reference/halo.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/halo.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/halo.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/halo.mask.argb32.ref.png
diff --git a/cairo/test/reference/halo.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/halo.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/halo.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/halo.mask.rgb24.ref.png
diff --git a/cairo/test/reference/halo.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/halo.ps.ref.png
similarity index 100%
rename from cairo/test/reference/halo.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/halo.ps.ref.png
diff --git a/cairo/test/reference/halo.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/halo.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/halo.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/halo.quartz.ref.png
diff --git a/cairo/test/reference/halo.ref.png b/io2d/src/3rd-party/cairo/test/reference/halo.ref.png
similarity index 100%
rename from cairo/test/reference/halo.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/halo.ref.png
diff --git a/cairo/test/reference/halo.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/halo.traps.ref.png
similarity index 100%
rename from cairo/test/reference/halo.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/halo.traps.ref.png
diff --git a/cairo/test/reference/hatchings.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/hatchings.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/hatchings.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/hatchings.base.argb32.ref.png
diff --git a/cairo/test/reference/hatchings.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/hatchings.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/hatchings.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/hatchings.base.rgb24.ref.png
diff --git a/cairo/test/reference/hatchings.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/hatchings.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/hatchings.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/hatchings.mask.argb32.ref.png
diff --git a/cairo/test/reference/hatchings.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/hatchings.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/hatchings.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/hatchings.mask.rgb24.ref.png
diff --git a/cairo/test/reference/hatchings.ref.png b/io2d/src/3rd-party/cairo/test/reference/hatchings.ref.png
similarity index 100%
rename from cairo/test/reference/hatchings.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/hatchings.ref.png
diff --git a/cairo/test/reference/hatchings.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/hatchings.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/hatchings.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/hatchings.traps.argb32.ref.png
diff --git a/cairo/test/reference/hatchings.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/hatchings.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/hatchings.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/hatchings.traps.rgb24.ref.png
diff --git a/cairo/test/reference/horizontal-clip.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/horizontal-clip.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/horizontal-clip.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/horizontal-clip.argb32.ref.png
diff --git a/cairo/test/reference/horizontal-clip.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/horizontal-clip.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/horizontal-clip.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/horizontal-clip.base.argb32.ref.png
diff --git a/cairo/test/reference/horizontal-clip.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/horizontal-clip.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/horizontal-clip.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/horizontal-clip.base.rgb24.ref.png
diff --git a/cairo/test/reference/horizontal-clip.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/horizontal-clip.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/horizontal-clip.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/horizontal-clip.rgb24.ref.png
diff --git a/cairo/test/reference/huge-linear.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/huge-linear.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/huge-linear.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/huge-linear.argb32.ref.png
diff --git a/cairo/test/reference/huge-linear.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/huge-linear.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/huge-linear.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/huge-linear.base.argb32.ref.png
diff --git a/cairo/test/reference/huge-linear.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/huge-linear.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/huge-linear.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/huge-linear.base.rgb24.ref.png
diff --git a/cairo/test/reference/huge-linear.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/huge-linear.image16.ref.png
similarity index 100%
rename from cairo/test/reference/huge-linear.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/huge-linear.image16.ref.png
diff --git a/cairo/test/reference/huge-linear.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/huge-linear.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/huge-linear.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/huge-linear.pdf.ref.png
diff --git a/cairo/test/reference/huge-linear.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/huge-linear.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/huge-linear.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/huge-linear.ps3.ref.png
diff --git a/cairo/test/reference/huge-linear.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/huge-linear.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/huge-linear.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/huge-linear.quartz.ref.png
diff --git a/cairo/test/reference/huge-linear.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/huge-linear.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/huge-linear.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/huge-linear.rgb24.ref.png
diff --git a/cairo/test/reference/huge-radial.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/huge-radial.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/huge-radial.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/huge-radial.base.argb32.ref.png
diff --git a/cairo/test/reference/huge-radial.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/huge-radial.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/huge-radial.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/huge-radial.base.rgb24.ref.png
diff --git a/cairo/test/reference/huge-radial.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/huge-radial.image16.ref.png
similarity index 100%
rename from cairo/test/reference/huge-radial.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/huge-radial.image16.ref.png
diff --git a/cairo/test/reference/huge-radial.pdf.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/huge-radial.pdf.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/huge-radial.pdf.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/huge-radial.pdf.argb32.ref.png
diff --git a/cairo/test/reference/huge-radial.pdf.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/huge-radial.pdf.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/huge-radial.pdf.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/huge-radial.pdf.rgb24.ref.png
diff --git a/cairo/test/reference/huge-radial.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/huge-radial.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/huge-radial.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/huge-radial.ps3.ref.png
diff --git a/cairo/test/reference/huge-radial.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/huge-radial.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/huge-radial.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/huge-radial.quartz.ref.png
diff --git a/cairo/test/reference/huge-radial.ref.png b/io2d/src/3rd-party/cairo/test/reference/huge-radial.ref.png
similarity index 100%
rename from cairo/test/reference/huge-radial.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/huge-radial.ref.png
diff --git a/cairo/test/reference/image-bug-710072-aligned.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/image-bug-710072-aligned.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/image-bug-710072-aligned.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/image-bug-710072-aligned.base.argb32.ref.png
diff --git a/cairo/test/reference/image-bug-710072-aligned.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/image-bug-710072-aligned.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/image-bug-710072-aligned.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/image-bug-710072-aligned.base.rgb24.ref.png
diff --git a/cairo/test/reference/image-bug-710072-aligned.ref.png b/io2d/src/3rd-party/cairo/test/reference/image-bug-710072-aligned.ref.png
similarity index 100%
rename from cairo/test/reference/image-bug-710072-aligned.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/image-bug-710072-aligned.ref.png
diff --git a/cairo/test/reference/image-bug-710072-unaligned.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/image-bug-710072-unaligned.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/image-bug-710072-unaligned.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/image-bug-710072-unaligned.base.argb32.ref.png
diff --git a/cairo/test/reference/image-bug-710072-unaligned.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/image-bug-710072-unaligned.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/image-bug-710072-unaligned.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/image-bug-710072-unaligned.base.rgb24.ref.png
diff --git a/cairo/test/reference/image-bug-710072-unaligned.ref.png b/io2d/src/3rd-party/cairo/test/reference/image-bug-710072-unaligned.ref.png
similarity index 100%
rename from cairo/test/reference/image-bug-710072-unaligned.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/image-bug-710072-unaligned.ref.png
diff --git a/cairo/test/reference/image-bug-710072-unaligned.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/image-bug-710072-unaligned.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/image-bug-710072-unaligned.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/image-bug-710072-unaligned.traps.argb32.ref.png
diff --git a/cairo/test/reference/image-bug-710072-unaligned.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/image-bug-710072-unaligned.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/image-bug-710072-unaligned.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/image-bug-710072-unaligned.traps.rgb24.ref.png
diff --git a/cairo/test/reference/image-bug-710072-unaligned.xlib-fallback.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/image-bug-710072-unaligned.xlib-fallback.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/image-bug-710072-unaligned.xlib-fallback.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/image-bug-710072-unaligned.xlib-fallback.rgb24.ref.png
diff --git a/cairo/test/reference/image-bug-710072-unaligned.xlib-window.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/image-bug-710072-unaligned.xlib-window.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/image-bug-710072-unaligned.xlib-window.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/image-bug-710072-unaligned.xlib-window.rgb24.ref.png
diff --git a/cairo/test/reference/image-surface-source.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/image-surface-source.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/image-surface-source.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/image-surface-source.argb32.ref.png
diff --git a/cairo/test/reference/image-surface-source.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/image-surface-source.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/image-surface-source.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/image-surface-source.base.argb32.ref.png
diff --git a/cairo/test/reference/image-surface-source.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/image-surface-source.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/image-surface-source.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/image-surface-source.base.rgb24.ref.png
diff --git a/cairo/test/reference/image-surface-source.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/image-surface-source.image16.ref.png
similarity index 100%
rename from cairo/test/reference/image-surface-source.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/image-surface-source.image16.ref.png
diff --git a/cairo/test/reference/image-surface-source.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/image-surface-source.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/image-surface-source.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/image-surface-source.ps2.ref.png
diff --git a/cairo/test/reference/image-surface-source.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/image-surface-source.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/image-surface-source.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/image-surface-source.ps3.ref.png
diff --git a/cairo/test/reference/image-surface-source.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/image-surface-source.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/image-surface-source.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/image-surface-source.rgb24.ref.png
diff --git a/cairo/test/reference/image-surface-source.svg12.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/image-surface-source.svg12.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/image-surface-source.svg12.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/image-surface-source.svg12.argb32.xfail.png
diff --git a/cairo/test/reference/image-surface-source.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/image-surface-source.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/image-surface-source.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/image-surface-source.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/implicit-close.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/implicit-close.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/implicit-close.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/implicit-close.base.argb32.ref.png
diff --git a/cairo/test/reference/implicit-close.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/implicit-close.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/implicit-close.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/implicit-close.base.rgb24.ref.png
diff --git a/cairo/test/reference/implicit-close.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/implicit-close.ps.ref.png
similarity index 100%
rename from cairo/test/reference/implicit-close.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/implicit-close.ps.ref.png
diff --git a/cairo/test/reference/implicit-close.ref.png b/io2d/src/3rd-party/cairo/test/reference/implicit-close.ref.png
similarity index 100%
rename from cairo/test/reference/implicit-close.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/implicit-close.ref.png
diff --git a/cairo/test/reference/implicit-close.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/implicit-close.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/implicit-close.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/implicit-close.traps.argb32.ref.png
diff --git a/cairo/test/reference/implicit-close.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/implicit-close.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/implicit-close.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/implicit-close.traps.rgb24.ref.png
diff --git a/cairo/test/reference/infinite-join.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/infinite-join.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/infinite-join.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/infinite-join.argb32.ref.png
diff --git a/cairo/test/reference/infinite-join.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/infinite-join.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/infinite-join.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/infinite-join.base.argb32.ref.png
diff --git a/cairo/test/reference/infinite-join.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/infinite-join.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/infinite-join.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/infinite-join.base.rgb24.ref.png
diff --git a/cairo/test/reference/infinite-join.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/infinite-join.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/infinite-join.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/infinite-join.ps2.ref.png
diff --git a/cairo/test/reference/infinite-join.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/infinite-join.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/infinite-join.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/infinite-join.ps3.ref.png
diff --git a/cairo/test/reference/infinite-join.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/infinite-join.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/infinite-join.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/infinite-join.rgb24.ref.png
diff --git a/cairo/test/reference/infinite-join.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/infinite-join.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/infinite-join.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/infinite-join.traps.argb32.ref.png
diff --git a/cairo/test/reference/infinite-join.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/infinite-join.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/infinite-join.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/infinite-join.traps.rgb24.ref.png
diff --git a/cairo/test/reference/inverse-text.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/inverse-text.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/inverse-text.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/inverse-text.base.argb32.ref.png
diff --git a/cairo/test/reference/inverse-text.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/inverse-text.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/inverse-text.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/inverse-text.base.rgb24.ref.png
diff --git a/cairo/test/reference/inverse-text.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/inverse-text.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/inverse-text.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/inverse-text.mask.argb32.ref.png
diff --git a/cairo/test/reference/inverse-text.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/inverse-text.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/inverse-text.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/inverse-text.mask.rgb24.ref.png
diff --git a/cairo/test/reference/inverse-text.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/inverse-text.traps.ref.png
similarity index 100%
rename from cairo/test/reference/inverse-text.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/inverse-text.traps.ref.png
diff --git a/cairo/test/reference/inverted-clip.base.xfail.png b/io2d/src/3rd-party/cairo/test/reference/inverted-clip.base.xfail.png
similarity index 100%
rename from cairo/test/reference/inverted-clip.base.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/inverted-clip.base.xfail.png
diff --git a/cairo/test/reference/inverted-clip.traps.xfail.png b/io2d/src/3rd-party/cairo/test/reference/inverted-clip.traps.xfail.png
similarity index 100%
rename from cairo/test/reference/inverted-clip.traps.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/inverted-clip.traps.xfail.png
diff --git a/cairo/test/reference/inverted-clip.xfail.png b/io2d/src/3rd-party/cairo/test/reference/inverted-clip.xfail.png
similarity index 100%
rename from cairo/test/reference/inverted-clip.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/inverted-clip.xfail.png
diff --git a/cairo/test/reference/joins-loop.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins-loop.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/joins-loop.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins-loop.argb32.ref.png
diff --git a/cairo/test/reference/joins-loop.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins-loop.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/joins-loop.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins-loop.base.argb32.ref.png
diff --git a/cairo/test/reference/joins-loop.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins-loop.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/joins-loop.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins-loop.base.rgb24.ref.png
diff --git a/cairo/test/reference/joins-loop.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins-loop.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/joins-loop.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins-loop.rgb24.ref.png
diff --git a/cairo/test/reference/joins-loop.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins-loop.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/joins-loop.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins-loop.traps.argb32.ref.png
diff --git a/cairo/test/reference/joins-loop.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins-loop.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/joins-loop.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins-loop.traps.rgb24.ref.png
diff --git a/cairo/test/reference/joins-retrace.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins-retrace.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/joins-retrace.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins-retrace.base.argb32.ref.png
diff --git a/cairo/test/reference/joins-retrace.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins-retrace.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/joins-retrace.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins-retrace.base.rgb24.ref.png
diff --git a/cairo/test/reference/joins-retrace.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins-retrace.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/joins-retrace.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins-retrace.mask.argb32.ref.png
diff --git a/cairo/test/reference/joins-retrace.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins-retrace.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/joins-retrace.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins-retrace.mask.rgb24.ref.png
diff --git a/cairo/test/reference/joins-retrace.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins-retrace.ref.png
similarity index 100%
rename from cairo/test/reference/joins-retrace.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins-retrace.ref.png
diff --git a/cairo/test/reference/joins-retrace.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins-retrace.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/joins-retrace.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins-retrace.traps.argb32.ref.png
diff --git a/cairo/test/reference/joins-retrace.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins-retrace.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/joins-retrace.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins-retrace.traps.rgb24.ref.png
diff --git a/cairo/test/reference/joins-star.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins-star.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/joins-star.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins-star.argb32.ref.png
diff --git a/cairo/test/reference/joins-star.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins-star.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/joins-star.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins-star.base.argb32.ref.png
diff --git a/cairo/test/reference/joins-star.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins-star.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/joins-star.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins-star.base.rgb24.ref.png
diff --git a/cairo/test/reference/joins-star.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins-star.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/joins-star.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins-star.rgb24.ref.png
diff --git a/cairo/test/reference/joins-star.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins-star.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/joins-star.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins-star.traps.argb32.ref.png
diff --git a/cairo/test/reference/joins-star.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins-star.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/joins-star.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins-star.traps.rgb24.ref.png
diff --git a/cairo/test/reference/joins.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/joins.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins.base.argb32.ref.png
diff --git a/cairo/test/reference/joins.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/joins.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins.base.rgb24.ref.png
diff --git a/cairo/test/reference/joins.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins.image16.ref.png
similarity index 100%
rename from cairo/test/reference/joins.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins.image16.ref.png
diff --git a/cairo/test/reference/joins.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/joins.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins.mask.argb32.ref.png
diff --git a/cairo/test/reference/joins.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/joins.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins.mask.rgb24.ref.png
diff --git a/cairo/test/reference/joins.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins.ps.ref.png
similarity index 100%
rename from cairo/test/reference/joins.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins.ps.ref.png
diff --git a/cairo/test/reference/joins.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/joins.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins.quartz.ref.png
diff --git a/cairo/test/reference/joins.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins.ref.png
similarity index 100%
rename from cairo/test/reference/joins.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins.ref.png
diff --git a/cairo/test/reference/joins.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/joins.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins.traps.argb32.ref.png
diff --git a/cairo/test/reference/joins.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/joins.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/joins.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/joins.traps.rgb24.ref.png
diff --git a/cairo/test/reference/large-clip.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/large-clip.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/large-clip.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/large-clip.base.argb32.ref.png
diff --git a/cairo/test/reference/large-clip.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/large-clip.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/large-clip.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/large-clip.base.rgb24.ref.png
diff --git a/cairo/test/reference/large-clip.ref.png b/io2d/src/3rd-party/cairo/test/reference/large-clip.ref.png
similarity index 100%
rename from cairo/test/reference/large-clip.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/large-clip.ref.png
diff --git a/cairo/test/reference/large-font.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/large-font.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/large-font.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/large-font.base.argb32.ref.png
diff --git a/cairo/test/reference/large-font.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/large-font.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/large-font.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/large-font.base.rgb24.ref.png
diff --git a/cairo/test/reference/large-font.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/large-font.image16.ref.png
similarity index 100%
rename from cairo/test/reference/large-font.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/large-font.image16.ref.png
diff --git a/cairo/test/reference/large-font.ref.png b/io2d/src/3rd-party/cairo/test/reference/large-font.ref.png
similarity index 100%
rename from cairo/test/reference/large-font.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/large-font.ref.png
diff --git a/cairo/test/reference/large-source-roi.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/large-source-roi.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/large-source-roi.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/large-source-roi.base.argb32.ref.png
diff --git a/cairo/test/reference/large-source-roi.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/large-source-roi.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/large-source-roi.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/large-source-roi.base.rgb24.ref.png
diff --git a/cairo/test/reference/large-source-roi.ref.png b/io2d/src/3rd-party/cairo/test/reference/large-source-roi.ref.png
similarity index 100%
rename from cairo/test/reference/large-source-roi.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/large-source-roi.ref.png
diff --git a/cairo/test/reference/large-source.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/large-source.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/large-source.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/large-source.base.argb32.ref.png
diff --git a/cairo/test/reference/large-source.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/large-source.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/large-source.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/large-source.base.rgb24.ref.png
diff --git a/cairo/test/reference/large-source.ref.png b/io2d/src/3rd-party/cairo/test/reference/large-source.ref.png
similarity index 100%
rename from cairo/test/reference/large-source.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/large-source.ref.png
diff --git a/cairo/test/reference/large-twin-antialias-mixed.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/large-twin-antialias-mixed.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/large-twin-antialias-mixed.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/large-twin-antialias-mixed.argb32.ref.png
diff --git a/cairo/test/reference/large-twin-antialias-mixed.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/large-twin-antialias-mixed.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/large-twin-antialias-mixed.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/large-twin-antialias-mixed.base.argb32.ref.png
diff --git a/cairo/test/reference/large-twin-antialias-mixed.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/large-twin-antialias-mixed.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/large-twin-antialias-mixed.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/large-twin-antialias-mixed.base.rgb24.ref.png
diff --git a/cairo/test/reference/large-twin-antialias-mixed.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/large-twin-antialias-mixed.image16.ref.png
similarity index 100%
rename from cairo/test/reference/large-twin-antialias-mixed.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/large-twin-antialias-mixed.image16.ref.png
diff --git a/cairo/test/reference/large-twin-antialias-mixed.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/large-twin-antialias-mixed.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/large-twin-antialias-mixed.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/large-twin-antialias-mixed.rgb24.ref.png
diff --git a/cairo/test/reference/large-twin-antialias-mixed.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/large-twin-antialias-mixed.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/large-twin-antialias-mixed.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/large-twin-antialias-mixed.traps.argb32.ref.png
diff --git a/cairo/test/reference/large-twin-antialias-mixed.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/large-twin-antialias-mixed.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/large-twin-antialias-mixed.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/large-twin-antialias-mixed.traps.rgb24.ref.png
diff --git a/cairo/test/reference/leaky-dash.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dash.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dash.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dash.base.argb32.ref.png
diff --git a/cairo/test/reference/leaky-dash.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dash.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dash.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dash.base.rgb24.ref.png
diff --git a/cairo/test/reference/leaky-dash.ps2.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dash.ps2.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dash.ps2.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dash.ps2.argb32.ref.png
diff --git a/cairo/test/reference/leaky-dash.ps2.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dash.ps2.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dash.ps2.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dash.ps2.rgb24.ref.png
diff --git a/cairo/test/reference/leaky-dash.ps3.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dash.ps3.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dash.ps3.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dash.ps3.argb32.ref.png
diff --git a/cairo/test/reference/leaky-dash.ps3.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dash.ps3.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dash.ps3.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dash.ps3.rgb24.ref.png
diff --git a/cairo/test/reference/leaky-dash.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dash.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dash.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dash.quartz.ref.png
diff --git a/cairo/test/reference/leaky-dash.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dash.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dash.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dash.ref.png
diff --git a/cairo/test/reference/leaky-dashed-rectangle.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dashed-rectangle.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dashed-rectangle.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dashed-rectangle.base.argb32.ref.png
diff --git a/cairo/test/reference/leaky-dashed-rectangle.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dashed-rectangle.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dashed-rectangle.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dashed-rectangle.base.rgb24.ref.png
diff --git a/cairo/test/reference/leaky-dashed-rectangle.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dashed-rectangle.image16.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dashed-rectangle.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dashed-rectangle.image16.ref.png
diff --git a/cairo/test/reference/leaky-dashed-rectangle.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dashed-rectangle.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dashed-rectangle.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dashed-rectangle.pdf.ref.png
diff --git a/cairo/test/reference/leaky-dashed-rectangle.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dashed-rectangle.ps.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dashed-rectangle.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dashed-rectangle.ps.ref.png
diff --git a/cairo/test/reference/leaky-dashed-rectangle.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dashed-rectangle.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dashed-rectangle.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dashed-rectangle.quartz.ref.png
diff --git a/cairo/test/reference/leaky-dashed-rectangle.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dashed-rectangle.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dashed-rectangle.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dashed-rectangle.ref.png
diff --git a/cairo/test/reference/leaky-dashed-rectangle.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dashed-rectangle.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dashed-rectangle.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dashed-rectangle.traps.argb32.ref.png
diff --git a/cairo/test/reference/leaky-dashed-rectangle.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dashed-rectangle.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dashed-rectangle.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dashed-rectangle.traps.rgb24.ref.png
diff --git a/cairo/test/reference/leaky-dashed-stroke.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dashed-stroke.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dashed-stroke.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dashed-stroke.argb32.ref.png
diff --git a/cairo/test/reference/leaky-dashed-stroke.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dashed-stroke.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dashed-stroke.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dashed-stroke.base.argb32.ref.png
diff --git a/cairo/test/reference/leaky-dashed-stroke.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dashed-stroke.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dashed-stroke.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dashed-stroke.base.rgb24.ref.png
diff --git a/cairo/test/reference/leaky-dashed-stroke.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dashed-stroke.image16.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dashed-stroke.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dashed-stroke.image16.ref.png
diff --git a/cairo/test/reference/leaky-dashed-stroke.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dashed-stroke.ps.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dashed-stroke.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dashed-stroke.ps.ref.png
diff --git a/cairo/test/reference/leaky-dashed-stroke.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dashed-stroke.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dashed-stroke.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dashed-stroke.quartz.ref.png
diff --git a/cairo/test/reference/leaky-dashed-stroke.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dashed-stroke.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dashed-stroke.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dashed-stroke.rgb24.ref.png
diff --git a/cairo/test/reference/leaky-dashed-stroke.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dashed-stroke.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dashed-stroke.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dashed-stroke.traps.argb32.ref.png
diff --git a/cairo/test/reference/leaky-dashed-stroke.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-dashed-stroke.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-dashed-stroke.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-dashed-stroke.traps.rgb24.ref.png
diff --git a/cairo/test/reference/leaky-polygon.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-polygon.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-polygon.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-polygon.argb32.ref.png
diff --git a/cairo/test/reference/leaky-polygon.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-polygon.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-polygon.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-polygon.base.argb32.ref.png
diff --git a/cairo/test/reference/leaky-polygon.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-polygon.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-polygon.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-polygon.base.rgb24.ref.png
diff --git a/cairo/test/reference/leaky-polygon.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-polygon.image16.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-polygon.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-polygon.image16.ref.png
diff --git a/cairo/test/reference/leaky-polygon.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-polygon.ps.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-polygon.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-polygon.ps.ref.png
diff --git a/cairo/test/reference/leaky-polygon.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-polygon.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-polygon.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-polygon.rgb24.ref.png
diff --git a/cairo/test/reference/leaky-polygon.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-polygon.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-polygon.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-polygon.traps.argb32.ref.png
diff --git a/cairo/test/reference/leaky-polygon.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/leaky-polygon.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/leaky-polygon.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/leaky-polygon.traps.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap-dashed.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-dashed.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap-dashed.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-dashed.base.argb32.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap-dashed.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-dashed.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap-dashed.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-dashed.base.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap-dashed.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-dashed.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap-dashed.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-dashed.mask.argb32.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap-dashed.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-dashed.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap-dashed.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-dashed.mask.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap-dashed.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-dashed.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap-dashed.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-dashed.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap-dashed.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-dashed.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap-dashed.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-dashed.traps.argb32.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap-dashed.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-dashed.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap-dashed.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-dashed.traps.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap-flipped.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-flipped.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap-flipped.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-flipped.base.argb32.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap-flipped.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-flipped.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap-flipped.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-flipped.base.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap-flipped.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-flipped.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap-flipped.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-flipped.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap-flopped.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-flopped.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap-flopped.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-flopped.base.argb32.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap-flopped.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-flopped.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap-flopped.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-flopped.base.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap-flopped.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-flopped.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap-flopped.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-flopped.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap-offset.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-offset.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap-offset.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-offset.base.argb32.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap-offset.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-offset.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap-offset.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-offset.base.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap-offset.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-offset.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap-offset.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-offset.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap-rotated.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-rotated.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap-rotated.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-rotated.argb32.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap-rotated.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-rotated.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap-rotated.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-rotated.base.argb32.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap-rotated.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-rotated.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap-rotated.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-rotated.base.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap-rotated.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-rotated.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap-rotated.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-rotated.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap-rotated.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-rotated.traps.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap-rotated.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap-rotated.traps.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap.base.argb32.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap.base.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-large-overlap.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-large-overlap.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-large-overlap.ref.png
diff --git a/cairo/test/reference/line-width-overlap-dashed.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-dashed.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-dashed.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-dashed.base.argb32.ref.png
diff --git a/cairo/test/reference/line-width-overlap-dashed.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-dashed.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-dashed.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-dashed.base.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-overlap-dashed.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-dashed.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-dashed.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-dashed.mask.argb32.ref.png
diff --git a/cairo/test/reference/line-width-overlap-dashed.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-dashed.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-dashed.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-dashed.mask.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-overlap-dashed.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-dashed.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-dashed.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-dashed.ref.png
diff --git a/cairo/test/reference/line-width-overlap-dashed.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-dashed.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-dashed.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-dashed.traps.argb32.ref.png
diff --git a/cairo/test/reference/line-width-overlap-dashed.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-dashed.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-dashed.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-dashed.traps.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-overlap-flipped.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-flipped.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-flipped.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-flipped.base.argb32.ref.png
diff --git a/cairo/test/reference/line-width-overlap-flipped.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-flipped.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-flipped.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-flipped.base.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-overlap-flipped.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-flipped.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-flipped.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-flipped.ref.png
diff --git a/cairo/test/reference/line-width-overlap-flopped.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-flopped.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-flopped.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-flopped.base.argb32.ref.png
diff --git a/cairo/test/reference/line-width-overlap-flopped.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-flopped.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-flopped.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-flopped.base.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-overlap-flopped.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-flopped.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-flopped.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-flopped.ref.png
diff --git a/cairo/test/reference/line-width-overlap-offset.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-offset.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-offset.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-offset.base.argb32.ref.png
diff --git a/cairo/test/reference/line-width-overlap-offset.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-offset.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-offset.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-offset.base.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-overlap-offset.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-offset.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-offset.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-offset.ref.png
diff --git a/cairo/test/reference/line-width-overlap-offset.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-offset.traps.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-offset.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-offset.traps.ref.png
diff --git a/cairo/test/reference/line-width-overlap-rotated.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-rotated.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-rotated.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-rotated.argb32.ref.png
diff --git a/cairo/test/reference/line-width-overlap-rotated.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-rotated.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-rotated.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-rotated.base.argb32.ref.png
diff --git a/cairo/test/reference/line-width-overlap-rotated.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-rotated.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-rotated.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-rotated.base.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-overlap-rotated.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-rotated.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-rotated.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-rotated.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-overlap-rotated.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-rotated.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-rotated.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-rotated.traps.argb32.ref.png
diff --git a/cairo/test/reference/line-width-overlap-rotated.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap-rotated.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap-rotated.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap-rotated.traps.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-overlap.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap.base.argb32.ref.png
diff --git a/cairo/test/reference/line-width-overlap.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap.base.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-overlap.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-overlap.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-overlap.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-overlap.ref.png
diff --git a/cairo/test/reference/line-width-scale.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-scale.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-scale.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-scale.argb32.ref.png
diff --git a/cairo/test/reference/line-width-scale.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-scale.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-scale.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-scale.base.argb32.ref.png
diff --git a/cairo/test/reference/line-width-scale.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-scale.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-scale.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-scale.base.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-scale.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-scale.image16.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-scale.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-scale.image16.ref.png
diff --git a/cairo/test/reference/line-width-scale.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-scale.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-scale.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-scale.ps2.ref.png
diff --git a/cairo/test/reference/line-width-scale.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-scale.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-scale.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-scale.ps3.ref.png
diff --git a/cairo/test/reference/line-width-scale.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-scale.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-scale.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-scale.quartz.ref.png
diff --git a/cairo/test/reference/line-width-scale.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-scale.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-scale.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-scale.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-scale.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-scale.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-scale.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-scale.traps.argb32.ref.png
diff --git a/cairo/test/reference/line-width-scale.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-scale.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-scale.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-scale.traps.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-tolerance.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-tolerance.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-tolerance.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-tolerance.argb32.ref.png
diff --git a/cairo/test/reference/line-width-tolerance.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-tolerance.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-tolerance.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-tolerance.base.argb32.ref.png
diff --git a/cairo/test/reference/line-width-tolerance.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-tolerance.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-tolerance.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-tolerance.base.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-tolerance.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-tolerance.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-tolerance.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-tolerance.rgb24.ref.png
diff --git a/cairo/test/reference/line-width-tolerance.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-tolerance.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-tolerance.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-tolerance.traps.argb32.ref.png
diff --git a/cairo/test/reference/line-width-tolerance.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width-tolerance.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width-tolerance.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width-tolerance.traps.rgb24.ref.png
diff --git a/cairo/test/reference/line-width.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width.argb32.ref.png
diff --git a/cairo/test/reference/line-width.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width.base.argb32.ref.png
diff --git a/cairo/test/reference/line-width.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width.base.rgb24.ref.png
diff --git a/cairo/test/reference/line-width.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width.rgb24.ref.png
diff --git a/cairo/test/reference/line-width.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/line-width.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width.traps.argb32.ref.png
diff --git a/cairo/test/reference/line-width.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/line-width.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/line-width.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/line-width.traps.rgb24.ref.png
diff --git a/cairo/test/reference/linear-gradient-extend.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-extend.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-extend.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-extend.base.argb32.ref.png
diff --git a/cairo/test/reference/linear-gradient-extend.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-extend.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-extend.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-extend.base.rgb24.ref.png
diff --git a/cairo/test/reference/linear-gradient-extend.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-extend.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-extend.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-extend.ref.png
diff --git a/cairo/test/reference/linear-gradient-large.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-large.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-large.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-large.base.argb32.ref.png
diff --git a/cairo/test/reference/linear-gradient-large.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-large.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-large.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-large.base.rgb24.ref.png
diff --git a/cairo/test/reference/linear-gradient-large.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-large.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-large.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-large.quartz.ref.png
diff --git a/cairo/test/reference/linear-gradient-large.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-large.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-large.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-large.ref.png
diff --git a/cairo/test/reference/linear-gradient-one-stop.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-one-stop.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-one-stop.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-one-stop.argb32.ref.png
diff --git a/cairo/test/reference/linear-gradient-one-stop.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-one-stop.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-one-stop.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-one-stop.base.argb32.ref.png
diff --git a/cairo/test/reference/linear-gradient-one-stop.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-one-stop.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-one-stop.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-one-stop.base.rgb24.ref.png
diff --git a/cairo/test/reference/linear-gradient-one-stop.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-one-stop.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-one-stop.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-one-stop.rgb24.ref.png
diff --git a/cairo/test/reference/linear-gradient-reflect.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-reflect.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-reflect.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-reflect.argb32.ref.png
diff --git a/cairo/test/reference/linear-gradient-reflect.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-reflect.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-reflect.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-reflect.base.argb32.ref.png
diff --git a/cairo/test/reference/linear-gradient-reflect.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-reflect.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-reflect.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-reflect.base.rgb24.ref.png
diff --git a/cairo/test/reference/linear-gradient-reflect.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-reflect.image16.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-reflect.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-reflect.image16.ref.png
diff --git a/cairo/test/reference/linear-gradient-reflect.pdf.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-reflect.pdf.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-reflect.pdf.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-reflect.pdf.argb32.ref.png
diff --git a/cairo/test/reference/linear-gradient-reflect.pdf.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-reflect.pdf.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-reflect.pdf.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-reflect.pdf.rgb24.ref.png
diff --git a/cairo/test/reference/linear-gradient-reflect.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-reflect.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-reflect.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-reflect.ps3.ref.png
diff --git a/cairo/test/reference/linear-gradient-reflect.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-reflect.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-reflect.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-reflect.quartz.ref.png
diff --git a/cairo/test/reference/linear-gradient-reflect.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-reflect.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-reflect.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-reflect.rgb24.ref.png
diff --git a/cairo/test/reference/linear-gradient-subset.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-subset.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-subset.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-subset.argb32.ref.png
diff --git a/cairo/test/reference/linear-gradient-subset.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-subset.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-subset.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-subset.base.argb32.ref.png
diff --git a/cairo/test/reference/linear-gradient-subset.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-subset.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-subset.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-subset.base.rgb24.ref.png
diff --git a/cairo/test/reference/linear-gradient-subset.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-subset.image16.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-subset.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-subset.image16.ref.png
diff --git a/cairo/test/reference/linear-gradient-subset.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-subset.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-subset.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-subset.ps3.ref.png
diff --git a/cairo/test/reference/linear-gradient-subset.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-subset.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-subset.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-subset.quartz.ref.png
diff --git a/cairo/test/reference/linear-gradient-subset.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-subset.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-subset.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-subset.rgb24.ref.png
diff --git a/cairo/test/reference/linear-gradient-subset.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-subset.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-subset.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-subset.traps.argb32.ref.png
diff --git a/cairo/test/reference/linear-gradient-subset.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient-subset.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient-subset.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient-subset.traps.rgb24.ref.png
diff --git a/cairo/test/reference/linear-gradient.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient.argb32.ref.png
diff --git a/cairo/test/reference/linear-gradient.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient.base.argb32.ref.png
diff --git a/cairo/test/reference/linear-gradient.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient.base.rgb24.ref.png
diff --git a/cairo/test/reference/linear-gradient.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient.image16.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient.image16.ref.png
diff --git a/cairo/test/reference/linear-gradient.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient.ps3.ref.png
diff --git a/cairo/test/reference/linear-gradient.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient.quartz.ref.png
diff --git a/cairo/test/reference/linear-gradient.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient.rgb24.ref.png
diff --git a/cairo/test/reference/linear-gradient.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient.traps.argb32.ref.png
diff --git a/cairo/test/reference/linear-gradient.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-gradient.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/linear-gradient.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-gradient.traps.rgb24.ref.png
diff --git a/cairo/test/reference/linear-step-function.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-step-function.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/linear-step-function.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-step-function.base.argb32.ref.png
diff --git a/cairo/test/reference/linear-step-function.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-step-function.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/linear-step-function.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-step-function.base.rgb24.ref.png
diff --git a/cairo/test/reference/linear-step-function.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-step-function.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/linear-step-function.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-step-function.mask.argb32.ref.png
diff --git a/cairo/test/reference/linear-step-function.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-step-function.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/linear-step-function.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-step-function.mask.rgb24.ref.png
diff --git a/cairo/test/reference/linear-step-function.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-step-function.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/linear-step-function.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-step-function.traps.argb32.ref.png
diff --git a/cairo/test/reference/linear-step-function.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-step-function.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/linear-step-function.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-step-function.traps.rgb24.ref.png
diff --git a/cairo/test/reference/linear-step-function.xfail.png b/io2d/src/3rd-party/cairo/test/reference/linear-step-function.xfail.png
similarity index 100%
rename from cairo/test/reference/linear-step-function.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-step-function.xfail.png
diff --git a/cairo/test/reference/linear-uniform.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-uniform.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/linear-uniform.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-uniform.base.argb32.ref.png
diff --git a/cairo/test/reference/linear-uniform.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-uniform.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/linear-uniform.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-uniform.base.rgb24.ref.png
diff --git a/cairo/test/reference/linear-uniform.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-uniform.image16.ref.png
similarity index 100%
rename from cairo/test/reference/linear-uniform.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-uniform.image16.ref.png
diff --git a/cairo/test/reference/linear-uniform.ref.png b/io2d/src/3rd-party/cairo/test/reference/linear-uniform.ref.png
similarity index 100%
rename from cairo/test/reference/linear-uniform.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/linear-uniform.ref.png
diff --git a/cairo/test/reference/long-dashed-lines.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/long-dashed-lines.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/long-dashed-lines.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/long-dashed-lines.argb32.ref.png
diff --git a/cairo/test/reference/long-dashed-lines.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/long-dashed-lines.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/long-dashed-lines.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/long-dashed-lines.base.argb32.ref.png
diff --git a/cairo/test/reference/long-dashed-lines.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/long-dashed-lines.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/long-dashed-lines.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/long-dashed-lines.base.rgb24.ref.png
diff --git a/cairo/test/reference/long-dashed-lines.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/long-dashed-lines.image16.ref.png
similarity index 100%
rename from cairo/test/reference/long-dashed-lines.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/long-dashed-lines.image16.ref.png
diff --git a/cairo/test/reference/long-dashed-lines.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/long-dashed-lines.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/long-dashed-lines.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/long-dashed-lines.ps2.ref.png
diff --git a/cairo/test/reference/long-dashed-lines.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/long-dashed-lines.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/long-dashed-lines.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/long-dashed-lines.ps3.ref.png
diff --git a/cairo/test/reference/long-dashed-lines.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/long-dashed-lines.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/long-dashed-lines.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/long-dashed-lines.quartz.ref.png
diff --git a/cairo/test/reference/long-dashed-lines.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/long-dashed-lines.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/long-dashed-lines.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/long-dashed-lines.rgb24.ref.png
diff --git a/cairo/test/reference/long-dashed-lines.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/long-dashed-lines.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/long-dashed-lines.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/long-dashed-lines.traps.argb32.ref.png
diff --git a/cairo/test/reference/long-dashed-lines.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/long-dashed-lines.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/long-dashed-lines.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/long-dashed-lines.traps.rgb24.ref.png
diff --git a/cairo/test/reference/long-lines.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/long-lines.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/long-lines.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/long-lines.base.argb32.ref.png
diff --git a/cairo/test/reference/long-lines.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/long-lines.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/long-lines.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/long-lines.base.rgb24.ref.png
diff --git a/cairo/test/reference/long-lines.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/long-lines.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/long-lines.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/long-lines.mask.argb32.ref.png
diff --git a/cairo/test/reference/long-lines.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/long-lines.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/long-lines.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/long-lines.mask.rgb24.ref.png
diff --git a/cairo/test/reference/long-lines.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/long-lines.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/long-lines.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/long-lines.traps.argb32.ref.png
diff --git a/cairo/test/reference/long-lines.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/long-lines.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/long-lines.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/long-lines.traps.rgb24.ref.png
diff --git a/cairo/test/reference/map-all-to-image.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/map-all-to-image.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/map-all-to-image.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/map-all-to-image.base.argb32.ref.png
diff --git a/cairo/test/reference/map-all-to-image.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/map-all-to-image.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/map-all-to-image.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/map-all-to-image.base.rgb24.ref.png
diff --git a/cairo/test/reference/map-all-to-image.ref.png b/io2d/src/3rd-party/cairo/test/reference/map-all-to-image.ref.png
similarity index 100%
rename from cairo/test/reference/map-all-to-image.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/map-all-to-image.ref.png
diff --git a/cairo/test/reference/map-all-to-xlib-fallback.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/map-all-to-xlib-fallback.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/map-all-to-xlib-fallback.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/map-all-to-xlib-fallback.rgb24.ref.png
diff --git a/cairo/test/reference/map-all-to-xlib-window.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/map-all-to-xlib-window.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/map-all-to-xlib-window.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/map-all-to-xlib-window.rgb24.ref.png
diff --git a/cairo/test/reference/map-all-to-xlib.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/map-all-to-xlib.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/map-all-to-xlib.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/map-all-to-xlib.argb32.ref.png
diff --git a/cairo/test/reference/map-all-to-xlib.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/map-all-to-xlib.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/map-all-to-xlib.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/map-all-to-xlib.rgb24.ref.png
diff --git a/cairo/test/reference/map-bit-to-image.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/map-bit-to-image.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/map-bit-to-image.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/map-bit-to-image.base.argb32.ref.png
diff --git a/cairo/test/reference/map-bit-to-image.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/map-bit-to-image.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/map-bit-to-image.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/map-bit-to-image.base.rgb24.ref.png
diff --git a/cairo/test/reference/map-bit-to-image.ref.png b/io2d/src/3rd-party/cairo/test/reference/map-bit-to-image.ref.png
similarity index 100%
rename from cairo/test/reference/map-bit-to-image.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/map-bit-to-image.ref.png
diff --git a/cairo/test/reference/map-bit-to-xlib-fallback.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/map-bit-to-xlib-fallback.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/map-bit-to-xlib-fallback.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/map-bit-to-xlib-fallback.rgb24.ref.png
diff --git a/cairo/test/reference/map-bit-to-xlib-window.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/map-bit-to-xlib-window.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/map-bit-to-xlib-window.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/map-bit-to-xlib-window.rgb24.ref.png
diff --git a/cairo/test/reference/map-bit-to-xlib.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/map-bit-to-xlib.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/map-bit-to-xlib.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/map-bit-to-xlib.argb32.ref.png
diff --git a/cairo/test/reference/map-bit-to-xlib.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/map-bit-to-xlib.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/map-bit-to-xlib.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/map-bit-to-xlib.rgb24.ref.png
diff --git a/cairo/test/reference/map-to-image-fill.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/map-to-image-fill.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/map-to-image-fill.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/map-to-image-fill.base.argb32.ref.png
diff --git a/cairo/test/reference/map-to-image-fill.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/map-to-image-fill.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/map-to-image-fill.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/map-to-image-fill.base.rgb24.ref.png
diff --git a/cairo/test/reference/map-to-image-fill.ref.png b/io2d/src/3rd-party/cairo/test/reference/map-to-image-fill.ref.png
similarity index 100%
rename from cairo/test/reference/map-to-image-fill.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/map-to-image-fill.ref.png
diff --git a/cairo/test/reference/mask-alpha.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-alpha.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mask-alpha.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-alpha.argb32.ref.png
diff --git a/cairo/test/reference/mask-alpha.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-alpha.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mask-alpha.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-alpha.base.argb32.ref.png
diff --git a/cairo/test/reference/mask-alpha.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-alpha.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mask-alpha.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-alpha.base.rgb24.ref.png
diff --git a/cairo/test/reference/mask-alpha.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-alpha.image16.ref.png
similarity index 100%
rename from cairo/test/reference/mask-alpha.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-alpha.image16.ref.png
diff --git a/cairo/test/reference/mask-alpha.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-alpha.ps.ref.png
similarity index 100%
rename from cairo/test/reference/mask-alpha.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-alpha.ps.ref.png
diff --git a/cairo/test/reference/mask-alpha.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-alpha.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mask-alpha.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-alpha.quartz.argb32.ref.png
diff --git a/cairo/test/reference/mask-alpha.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-alpha.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mask-alpha.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-alpha.rgb24.ref.png
diff --git a/cairo/test/reference/mask-alpha.svg.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/mask-alpha.svg.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/mask-alpha.svg.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-alpha.svg.rgb24.xfail.png
diff --git a/cairo/test/reference/mask-alpha.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-alpha.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mask-alpha.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-alpha.traps.argb32.ref.png
diff --git a/cairo/test/reference/mask-alpha.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-alpha.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mask-alpha.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-alpha.traps.rgb24.ref.png
diff --git a/cairo/test/reference/mask-ctm.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-ctm.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mask-ctm.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-ctm.argb32.ref.png
diff --git a/cairo/test/reference/mask-ctm.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-ctm.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mask-ctm.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-ctm.base.argb32.ref.png
diff --git a/cairo/test/reference/mask-ctm.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-ctm.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mask-ctm.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-ctm.base.rgb24.ref.png
diff --git a/cairo/test/reference/mask-ctm.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-ctm.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mask-ctm.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-ctm.rgb24.ref.png
diff --git a/cairo/test/reference/mask-glyphs.gl.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-glyphs.gl.ref.png
similarity index 100%
rename from cairo/test/reference/mask-glyphs.gl.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-glyphs.gl.ref.png
diff --git a/cairo/test/reference/mask-glyphs.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-glyphs.image16.ref.png
similarity index 100%
rename from cairo/test/reference/mask-glyphs.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-glyphs.image16.ref.png
diff --git a/cairo/test/reference/mask-glyphs.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-glyphs.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/mask-glyphs.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-glyphs.pdf.ref.png
diff --git a/cairo/test/reference/mask-glyphs.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-glyphs.ref.png
similarity index 100%
rename from cairo/test/reference/mask-glyphs.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-glyphs.ref.png
diff --git a/cairo/test/reference/mask-glyphs.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-glyphs.svg.ref.png
similarity index 100%
rename from cairo/test/reference/mask-glyphs.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-glyphs.svg.ref.png
diff --git a/cairo/test/reference/mask-surface-ctm.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-surface-ctm.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mask-surface-ctm.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-surface-ctm.argb32.ref.png
diff --git a/cairo/test/reference/mask-surface-ctm.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-surface-ctm.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mask-surface-ctm.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-surface-ctm.base.argb32.ref.png
diff --git a/cairo/test/reference/mask-surface-ctm.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-surface-ctm.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mask-surface-ctm.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-surface-ctm.base.rgb24.ref.png
diff --git a/cairo/test/reference/mask-surface-ctm.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-surface-ctm.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mask-surface-ctm.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-surface-ctm.rgb24.ref.png
diff --git a/cairo/test/reference/mask-transformed-image.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-transformed-image.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mask-transformed-image.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-transformed-image.argb32.ref.png
diff --git a/cairo/test/reference/mask-transformed-image.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-transformed-image.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mask-transformed-image.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-transformed-image.base.argb32.ref.png
diff --git a/cairo/test/reference/mask-transformed-image.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-transformed-image.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mask-transformed-image.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-transformed-image.base.rgb24.ref.png
diff --git a/cairo/test/reference/mask-transformed-image.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-transformed-image.image16.ref.png
similarity index 100%
rename from cairo/test/reference/mask-transformed-image.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-transformed-image.image16.ref.png
diff --git a/cairo/test/reference/mask-transformed-image.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-transformed-image.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/mask-transformed-image.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-transformed-image.pdf.ref.png
diff --git a/cairo/test/reference/mask-transformed-image.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-transformed-image.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/mask-transformed-image.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-transformed-image.quartz.ref.png
diff --git a/cairo/test/reference/mask-transformed-image.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-transformed-image.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mask-transformed-image.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-transformed-image.rgb24.ref.png
diff --git a/cairo/test/reference/mask-transformed-similar.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-transformed-similar.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mask-transformed-similar.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-transformed-similar.argb32.ref.png
diff --git a/cairo/test/reference/mask-transformed-similar.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-transformed-similar.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mask-transformed-similar.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-transformed-similar.base.argb32.ref.png
diff --git a/cairo/test/reference/mask-transformed-similar.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-transformed-similar.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mask-transformed-similar.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-transformed-similar.base.rgb24.ref.png
diff --git a/cairo/test/reference/mask-transformed-similar.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-transformed-similar.image16.ref.png
similarity index 100%
rename from cairo/test/reference/mask-transformed-similar.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-transformed-similar.image16.ref.png
diff --git a/cairo/test/reference/mask-transformed-similar.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-transformed-similar.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/mask-transformed-similar.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-transformed-similar.pdf.ref.png
diff --git a/cairo/test/reference/mask-transformed-similar.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-transformed-similar.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/mask-transformed-similar.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-transformed-similar.quartz.ref.png
diff --git a/cairo/test/reference/mask-transformed-similar.recording.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-transformed-similar.recording.ref.png
similarity index 100%
rename from cairo/test/reference/mask-transformed-similar.recording.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-transformed-similar.recording.ref.png
diff --git a/cairo/test/reference/mask-transformed-similar.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-transformed-similar.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mask-transformed-similar.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-transformed-similar.rgb24.ref.png
diff --git a/cairo/test/reference/mask-transformed-similar.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-transformed-similar.svg.ref.png
similarity index 100%
rename from cairo/test/reference/mask-transformed-similar.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-transformed-similar.svg.ref.png
diff --git a/cairo/test/reference/mask-transformed-xlib-fallback.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-transformed-xlib-fallback.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mask-transformed-xlib-fallback.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-transformed-xlib-fallback.rgb24.ref.png
diff --git a/cairo/test/reference/mask-transformed-xlib-window.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-transformed-xlib-window.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mask-transformed-xlib-window.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-transformed-xlib-window.rgb24.ref.png
diff --git a/cairo/test/reference/mask-transformed-xlib.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-transformed-xlib.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mask-transformed-xlib.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-transformed-xlib.argb32.ref.png
diff --git a/cairo/test/reference/mask-transformed-xlib.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask-transformed-xlib.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mask-transformed-xlib.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask-transformed-xlib.rgb24.ref.png
diff --git a/cairo/test/reference/mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask.argb32.ref.png
diff --git a/cairo/test/reference/mask.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mask.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask.base.argb32.ref.png
diff --git a/cairo/test/reference/mask.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mask.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask.base.rgb24.ref.png
diff --git a/cairo/test/reference/mask.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask.image16.ref.png
similarity index 100%
rename from cairo/test/reference/mask.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask.image16.ref.png
diff --git a/cairo/test/reference/mask.pdf.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask.pdf.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mask.pdf.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask.pdf.argb32.ref.png
diff --git a/cairo/test/reference/mask.pdf.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask.pdf.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mask.pdf.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask.pdf.rgb24.ref.png
diff --git a/cairo/test/reference/mask.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mask.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask.quartz.argb32.ref.png
diff --git a/cairo/test/reference/mask.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mask.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask.rgb24.ref.png
diff --git a/cairo/test/reference/mask.svg.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/mask.svg.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/mask.svg.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/mask.svg.argb32.xfail.png
diff --git a/cairo/test/reference/mask.svg.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/mask.svg.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/mask.svg.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/mask.svg.rgb24.xfail.png
diff --git a/cairo/test/reference/mask.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mask.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask.traps.argb32.ref.png
diff --git a/cairo/test/reference/mask.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mask.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mask.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mask.traps.rgb24.ref.png
diff --git a/cairo/test/reference/mesh-pattern-accuracy.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-accuracy.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-accuracy.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-accuracy.base.argb32.ref.png
diff --git a/cairo/test/reference/mesh-pattern-accuracy.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-accuracy.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-accuracy.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-accuracy.base.rgb24.ref.png
diff --git a/cairo/test/reference/mesh-pattern-accuracy.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-accuracy.image16.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-accuracy.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-accuracy.image16.ref.png
diff --git a/cairo/test/reference/mesh-pattern-accuracy.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-accuracy.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-accuracy.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-accuracy.ref.png
diff --git a/cairo/test/reference/mesh-pattern-conical.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-conical.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-conical.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-conical.base.argb32.ref.png
diff --git a/cairo/test/reference/mesh-pattern-conical.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-conical.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-conical.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-conical.base.rgb24.ref.png
diff --git a/cairo/test/reference/mesh-pattern-conical.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-conical.image16.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-conical.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-conical.image16.ref.png
diff --git a/cairo/test/reference/mesh-pattern-conical.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-conical.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-conical.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-conical.ref.png
diff --git a/cairo/test/reference/mesh-pattern-control-points.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-control-points.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-control-points.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-control-points.base.argb32.ref.png
diff --git a/cairo/test/reference/mesh-pattern-control-points.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-control-points.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-control-points.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-control-points.base.rgb24.ref.png
diff --git a/cairo/test/reference/mesh-pattern-control-points.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-control-points.image16.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-control-points.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-control-points.image16.ref.png
diff --git a/cairo/test/reference/mesh-pattern-control-points.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-control-points.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-control-points.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-control-points.ref.png
diff --git a/cairo/test/reference/mesh-pattern-fold.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-fold.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-fold.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-fold.base.argb32.ref.png
diff --git a/cairo/test/reference/mesh-pattern-fold.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-fold.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-fold.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-fold.base.rgb24.ref.png
diff --git a/cairo/test/reference/mesh-pattern-fold.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-fold.image16.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-fold.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-fold.image16.ref.png
diff --git a/cairo/test/reference/mesh-pattern-fold.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-fold.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-fold.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-fold.ref.png
diff --git a/cairo/test/reference/mesh-pattern-overlap.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-overlap.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-overlap.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-overlap.base.argb32.ref.png
diff --git a/cairo/test/reference/mesh-pattern-overlap.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-overlap.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-overlap.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-overlap.base.rgb24.ref.png
diff --git a/cairo/test/reference/mesh-pattern-overlap.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-overlap.image16.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-overlap.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-overlap.image16.ref.png
diff --git a/cairo/test/reference/mesh-pattern-overlap.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-overlap.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-overlap.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-overlap.ref.png
diff --git a/cairo/test/reference/mesh-pattern-transformed.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-transformed.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-transformed.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-transformed.base.argb32.ref.png
diff --git a/cairo/test/reference/mesh-pattern-transformed.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-transformed.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-transformed.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-transformed.base.rgb24.ref.png
diff --git a/cairo/test/reference/mesh-pattern-transformed.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-transformed.image16.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-transformed.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-transformed.image16.ref.png
diff --git a/cairo/test/reference/mesh-pattern-transformed.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-transformed.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern-transformed.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern-transformed.ref.png
diff --git a/cairo/test/reference/mesh-pattern.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern.base.argb32.ref.png
diff --git a/cairo/test/reference/mesh-pattern.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern.base.rgb24.ref.png
diff --git a/cairo/test/reference/mesh-pattern.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern.image16.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern.image16.ref.png
diff --git a/cairo/test/reference/mesh-pattern.ref.png b/io2d/src/3rd-party/cairo/test/reference/mesh-pattern.ref.png
similarity index 100%
rename from cairo/test/reference/mesh-pattern.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mesh-pattern.ref.png
diff --git a/cairo/test/reference/mime-data.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/mime-data.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/mime-data.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mime-data.base.argb32.ref.png
diff --git a/cairo/test/reference/mime-data.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/mime-data.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/mime-data.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mime-data.base.rgb24.ref.png
diff --git a/cairo/test/reference/mime-data.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/mime-data.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/mime-data.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mime-data.pdf.ref.png
diff --git a/cairo/test/reference/mime-data.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/mime-data.ps.ref.png
similarity index 100%
rename from cairo/test/reference/mime-data.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mime-data.ps.ref.png
diff --git a/cairo/test/reference/mime-data.ref.png b/io2d/src/3rd-party/cairo/test/reference/mime-data.ref.png
similarity index 100%
rename from cairo/test/reference/mime-data.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mime-data.ref.png
diff --git a/cairo/test/reference/mime-data.script.ref.png b/io2d/src/3rd-party/cairo/test/reference/mime-data.script.ref.png
similarity index 100%
rename from cairo/test/reference/mime-data.script.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mime-data.script.ref.png
diff --git a/cairo/test/reference/mime-data.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/mime-data.svg.ref.png
similarity index 100%
rename from cairo/test/reference/mime-data.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/mime-data.svg.ref.png
diff --git a/cairo/test/reference/miter-precision.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/miter-precision.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/miter-precision.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/miter-precision.argb32.ref.png
diff --git a/cairo/test/reference/miter-precision.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/miter-precision.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/miter-precision.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/miter-precision.base.argb32.ref.png
diff --git a/cairo/test/reference/miter-precision.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/miter-precision.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/miter-precision.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/miter-precision.base.rgb24.ref.png
diff --git a/cairo/test/reference/miter-precision.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/miter-precision.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/miter-precision.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/miter-precision.ps2.ref.png
diff --git a/cairo/test/reference/miter-precision.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/miter-precision.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/miter-precision.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/miter-precision.ps3.ref.png
diff --git a/cairo/test/reference/miter-precision.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/miter-precision.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/miter-precision.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/miter-precision.rgb24.ref.png
diff --git a/cairo/test/reference/miter-precision.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/miter-precision.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/miter-precision.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/miter-precision.traps.argb32.ref.png
diff --git a/cairo/test/reference/miter-precision.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/miter-precision.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/miter-precision.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/miter-precision.traps.rgb24.ref.png
diff --git a/cairo/test/reference/move-to-show-surface.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/move-to-show-surface.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/move-to-show-surface.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/move-to-show-surface.base.argb32.ref.png
diff --git a/cairo/test/reference/move-to-show-surface.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/move-to-show-surface.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/move-to-show-surface.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/move-to-show-surface.base.rgb24.ref.png
diff --git a/cairo/test/reference/move-to-show-surface.ref.png b/io2d/src/3rd-party/cairo/test/reference/move-to-show-surface.ref.png
similarity index 100%
rename from cairo/test/reference/move-to-show-surface.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/move-to-show-surface.ref.png
diff --git a/cairo/test/reference/negative-stride-image.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/negative-stride-image.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/negative-stride-image.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/negative-stride-image.base.argb32.ref.png
diff --git a/cairo/test/reference/negative-stride-image.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/negative-stride-image.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/negative-stride-image.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/negative-stride-image.base.rgb24.ref.png
diff --git a/cairo/test/reference/negative-stride-image.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/negative-stride-image.image16.ref.png
similarity index 100%
rename from cairo/test/reference/negative-stride-image.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/negative-stride-image.image16.ref.png
diff --git a/cairo/test/reference/negative-stride-image.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/negative-stride-image.ps.ref.png
similarity index 100%
rename from cairo/test/reference/negative-stride-image.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/negative-stride-image.ps.ref.png
diff --git a/cairo/test/reference/negative-stride-image.ref.png b/io2d/src/3rd-party/cairo/test/reference/negative-stride-image.ref.png
similarity index 100%
rename from cairo/test/reference/negative-stride-image.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/negative-stride-image.ref.png
diff --git a/cairo/test/reference/new-sub-path.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/new-sub-path.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/new-sub-path.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/new-sub-path.argb32.ref.png
diff --git a/cairo/test/reference/new-sub-path.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/new-sub-path.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/new-sub-path.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/new-sub-path.base.argb32.ref.png
diff --git a/cairo/test/reference/new-sub-path.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/new-sub-path.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/new-sub-path.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/new-sub-path.base.rgb24.ref.png
diff --git a/cairo/test/reference/new-sub-path.pdf.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/new-sub-path.pdf.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/new-sub-path.pdf.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/new-sub-path.pdf.argb32.ref.png
diff --git a/cairo/test/reference/new-sub-path.ps2.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/new-sub-path.ps2.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/new-sub-path.ps2.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/new-sub-path.ps2.argb32.ref.png
diff --git a/cairo/test/reference/new-sub-path.ps2.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/new-sub-path.ps2.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/new-sub-path.ps2.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/new-sub-path.ps2.rgb24.ref.png
diff --git a/cairo/test/reference/new-sub-path.ps3.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/new-sub-path.ps3.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/new-sub-path.ps3.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/new-sub-path.ps3.argb32.ref.png
diff --git a/cairo/test/reference/new-sub-path.ps3.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/new-sub-path.ps3.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/new-sub-path.ps3.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/new-sub-path.ps3.rgb24.ref.png
diff --git a/cairo/test/reference/new-sub-path.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/new-sub-path.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/new-sub-path.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/new-sub-path.quartz.ref.png
diff --git a/cairo/test/reference/new-sub-path.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/new-sub-path.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/new-sub-path.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/new-sub-path.rgb24.ref.png
diff --git a/cairo/test/reference/new-sub-path.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/new-sub-path.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/new-sub-path.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/new-sub-path.traps.argb32.ref.png
diff --git a/cairo/test/reference/new-sub-path.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/new-sub-path.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/new-sub-path.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/new-sub-path.traps.rgb24.ref.png
diff --git a/cairo/test/reference/nil-surface.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/nil-surface.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/nil-surface.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/nil-surface.argb32.ref.png
diff --git a/cairo/test/reference/nil-surface.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/nil-surface.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/nil-surface.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/nil-surface.base.argb32.ref.png
diff --git a/cairo/test/reference/nil-surface.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/nil-surface.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/nil-surface.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/nil-surface.base.rgb24.ref.png
diff --git a/cairo/test/reference/nil-surface.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/nil-surface.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/nil-surface.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/nil-surface.rgb24.ref.png
diff --git a/cairo/test/reference/operator-alpha-alpha.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-alpha-alpha.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/operator-alpha-alpha.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-alpha-alpha.base.argb32.ref.png
diff --git a/cairo/test/reference/operator-alpha-alpha.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-alpha-alpha.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/operator-alpha-alpha.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-alpha-alpha.base.rgb24.ref.png
diff --git a/cairo/test/reference/operator-alpha-alpha.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-alpha-alpha.image16.ref.png
similarity index 100%
rename from cairo/test/reference/operator-alpha-alpha.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-alpha-alpha.image16.ref.png
diff --git a/cairo/test/reference/operator-alpha-alpha.pdf.xfail.png b/io2d/src/3rd-party/cairo/test/reference/operator-alpha-alpha.pdf.xfail.png
similarity index 100%
rename from cairo/test/reference/operator-alpha-alpha.pdf.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-alpha-alpha.pdf.xfail.png
diff --git a/cairo/test/reference/operator-alpha-alpha.ps.xfail.png b/io2d/src/3rd-party/cairo/test/reference/operator-alpha-alpha.ps.xfail.png
similarity index 100%
rename from cairo/test/reference/operator-alpha-alpha.ps.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-alpha-alpha.ps.xfail.png
diff --git a/cairo/test/reference/operator-alpha-alpha.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-alpha-alpha.ref.png
similarity index 100%
rename from cairo/test/reference/operator-alpha-alpha.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-alpha-alpha.ref.png
diff --git a/cairo/test/reference/operator-alpha-alpha.svg.xfail.png b/io2d/src/3rd-party/cairo/test/reference/operator-alpha-alpha.svg.xfail.png
similarity index 100%
rename from cairo/test/reference/operator-alpha-alpha.svg.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-alpha-alpha.svg.xfail.png
diff --git a/cairo/test/reference/operator-alpha-alpha.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-alpha-alpha.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/operator-alpha-alpha.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-alpha-alpha.traps.argb32.ref.png
diff --git a/cairo/test/reference/operator-alpha-alpha.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-alpha-alpha.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/operator-alpha-alpha.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-alpha-alpha.traps.rgb24.ref.png
diff --git a/cairo/test/reference/operator-alpha.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-alpha.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/operator-alpha.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-alpha.argb32.ref.png
diff --git a/cairo/test/reference/operator-alpha.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-alpha.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/operator-alpha.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-alpha.base.argb32.ref.png
diff --git a/cairo/test/reference/operator-alpha.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-alpha.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/operator-alpha.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-alpha.base.rgb24.ref.png
diff --git a/cairo/test/reference/operator-alpha.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-alpha.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/operator-alpha.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-alpha.rgb24.ref.png
diff --git a/cairo/test/reference/operator-alpha.svg12.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/operator-alpha.svg12.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/operator-alpha.svg12.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-alpha.svg12.argb32.xfail.png
diff --git a/cairo/test/reference/operator-alpha.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/operator-alpha.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/operator-alpha.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-alpha.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/operator-clear.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-clear.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/operator-clear.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-clear.argb32.ref.png
diff --git a/cairo/test/reference/operator-clear.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-clear.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/operator-clear.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-clear.base.argb32.ref.png
diff --git a/cairo/test/reference/operator-clear.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-clear.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/operator-clear.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-clear.base.rgb24.ref.png
diff --git a/cairo/test/reference/operator-clear.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-clear.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/operator-clear.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-clear.mask.rgb24.ref.png
diff --git a/cairo/test/reference/operator-clear.ps2.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-clear.ps2.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/operator-clear.ps2.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-clear.ps2.argb32.ref.png
diff --git a/cairo/test/reference/operator-clear.ps3.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-clear.ps3.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/operator-clear.ps3.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-clear.ps3.argb32.ref.png
diff --git a/cairo/test/reference/operator-clear.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-clear.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/operator-clear.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-clear.quartz.argb32.ref.png
diff --git a/cairo/test/reference/operator-clear.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-clear.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/operator-clear.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-clear.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/operator-clear.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-clear.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/operator-clear.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-clear.rgb24.ref.png
diff --git a/cairo/test/reference/operator-clear.svg12.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/operator-clear.svg12.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/operator-clear.svg12.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-clear.svg12.argb32.xfail.png
diff --git a/cairo/test/reference/operator-clear.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/operator-clear.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/operator-clear.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-clear.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/operator-clear.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-clear.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/operator-clear.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-clear.traps.argb32.ref.png
diff --git a/cairo/test/reference/operator-clear.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-clear.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/operator-clear.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-clear.traps.rgb24.ref.png
diff --git a/cairo/test/reference/operator-source.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-source.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/operator-source.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-source.argb32.ref.png
diff --git a/cairo/test/reference/operator-source.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-source.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/operator-source.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-source.base.argb32.ref.png
diff --git a/cairo/test/reference/operator-source.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-source.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/operator-source.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-source.base.rgb24.ref.png
diff --git a/cairo/test/reference/operator-source.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-source.image16.ref.png
similarity index 100%
rename from cairo/test/reference/operator-source.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-source.image16.ref.png
diff --git a/cairo/test/reference/operator-source.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-source.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/operator-source.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-source.mask.argb32.ref.png
diff --git a/cairo/test/reference/operator-source.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-source.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/operator-source.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-source.mask.rgb24.ref.png
diff --git a/cairo/test/reference/operator-source.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-source.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/operator-source.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-source.rgb24.ref.png
diff --git a/cairo/test/reference/operator-source.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-source.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/operator-source.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-source.traps.argb32.ref.png
diff --git a/cairo/test/reference/operator-source.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-source.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/operator-source.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-source.traps.rgb24.ref.png
diff --git a/cairo/test/reference/operator-source.xlib-fallback.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator-source.xlib-fallback.ref.png
similarity index 100%
rename from cairo/test/reference/operator-source.xlib-fallback.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator-source.xlib-fallback.ref.png
diff --git a/cairo/test/reference/operator.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/operator.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator.argb32.ref.png
diff --git a/cairo/test/reference/operator.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/operator.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator.base.argb32.ref.png
diff --git a/cairo/test/reference/operator.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/operator.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator.base.rgb24.ref.png
diff --git a/cairo/test/reference/operator.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/operator.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/operator.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/operator.rgb24.ref.png
diff --git a/cairo/test/reference/operator.svg12.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/operator.svg12.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/operator.svg12.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/operator.svg12.argb32.xfail.png
diff --git a/cairo/test/reference/operator.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/operator.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/operator.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/operator.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/outline-tolerance.ref.png b/io2d/src/3rd-party/cairo/test/reference/outline-tolerance.ref.png
similarity index 100%
rename from cairo/test/reference/outline-tolerance.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/outline-tolerance.ref.png
diff --git a/cairo/test/reference/over-above-source.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-above-source.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-above-source.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-above-source.argb32.ref.png
diff --git a/cairo/test/reference/over-above-source.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-above-source.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-above-source.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-above-source.base.argb32.ref.png
diff --git a/cairo/test/reference/over-above-source.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-above-source.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/over-above-source.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-above-source.base.rgb24.ref.png
diff --git a/cairo/test/reference/over-above-source.ps2.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-above-source.ps2.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-above-source.ps2.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-above-source.ps2.argb32.ref.png
diff --git a/cairo/test/reference/over-above-source.ps3.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-above-source.ps3.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-above-source.ps3.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-above-source.ps3.argb32.ref.png
diff --git a/cairo/test/reference/over-above-source.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-above-source.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-above-source.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-above-source.quartz.argb32.ref.png
diff --git a/cairo/test/reference/over-above-source.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-above-source.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/over-above-source.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-above-source.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/over-above-source.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-above-source.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/over-above-source.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-above-source.rgb24.ref.png
diff --git a/cairo/test/reference/over-above-source.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/over-above-source.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/over-above-source.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/over-above-source.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/over-above-source.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-above-source.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-above-source.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-above-source.traps.argb32.ref.png
diff --git a/cairo/test/reference/over-above-source.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-above-source.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/over-above-source.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-above-source.traps.rgb24.ref.png
diff --git a/cairo/test/reference/over-around-source.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-around-source.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-around-source.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-around-source.argb32.ref.png
diff --git a/cairo/test/reference/over-around-source.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-around-source.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-around-source.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-around-source.base.argb32.ref.png
diff --git a/cairo/test/reference/over-around-source.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-around-source.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/over-around-source.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-around-source.base.rgb24.ref.png
diff --git a/cairo/test/reference/over-around-source.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-around-source.image16.ref.png
similarity index 100%
rename from cairo/test/reference/over-around-source.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-around-source.image16.ref.png
diff --git a/cairo/test/reference/over-around-source.pdf.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-around-source.pdf.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-around-source.pdf.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-around-source.pdf.argb32.ref.png
diff --git a/cairo/test/reference/over-around-source.ps2.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-around-source.ps2.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-around-source.ps2.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-around-source.ps2.argb32.ref.png
diff --git a/cairo/test/reference/over-around-source.ps2.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-around-source.ps2.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/over-around-source.ps2.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-around-source.ps2.rgb24.ref.png
diff --git a/cairo/test/reference/over-around-source.ps3.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-around-source.ps3.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-around-source.ps3.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-around-source.ps3.argb32.ref.png
diff --git a/cairo/test/reference/over-around-source.ps3.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-around-source.ps3.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/over-around-source.ps3.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-around-source.ps3.rgb24.ref.png
diff --git a/cairo/test/reference/over-around-source.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-around-source.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-around-source.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-around-source.quartz.argb32.ref.png
diff --git a/cairo/test/reference/over-around-source.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-around-source.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/over-around-source.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-around-source.rgb24.ref.png
diff --git a/cairo/test/reference/over-around-source.svg12.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/over-around-source.svg12.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/over-around-source.svg12.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/over-around-source.svg12.argb32.xfail.png
diff --git a/cairo/test/reference/over-around-source.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/over-around-source.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/over-around-source.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/over-around-source.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/over-around-source.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-around-source.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-around-source.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-around-source.traps.argb32.ref.png
diff --git a/cairo/test/reference/over-around-source.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-around-source.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/over-around-source.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-around-source.traps.rgb24.ref.png
diff --git a/cairo/test/reference/over-below-source.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-below-source.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-below-source.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-below-source.argb32.ref.png
diff --git a/cairo/test/reference/over-below-source.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-below-source.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-below-source.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-below-source.base.argb32.ref.png
diff --git a/cairo/test/reference/over-below-source.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-below-source.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/over-below-source.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-below-source.base.rgb24.ref.png
diff --git a/cairo/test/reference/over-below-source.pdf.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-below-source.pdf.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-below-source.pdf.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-below-source.pdf.argb32.ref.png
diff --git a/cairo/test/reference/over-below-source.ps2.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-below-source.ps2.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-below-source.ps2.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-below-source.ps2.argb32.ref.png
diff --git a/cairo/test/reference/over-below-source.ps2.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-below-source.ps2.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/over-below-source.ps2.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-below-source.ps2.rgb24.ref.png
diff --git a/cairo/test/reference/over-below-source.ps3.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-below-source.ps3.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-below-source.ps3.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-below-source.ps3.argb32.ref.png
diff --git a/cairo/test/reference/over-below-source.ps3.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-below-source.ps3.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/over-below-source.ps3.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-below-source.ps3.rgb24.ref.png
diff --git a/cairo/test/reference/over-below-source.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-below-source.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/over-below-source.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-below-source.rgb24.ref.png
diff --git a/cairo/test/reference/over-below-source.svg12.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/over-below-source.svg12.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/over-below-source.svg12.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/over-below-source.svg12.argb32.xfail.png
diff --git a/cairo/test/reference/over-below-source.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/over-below-source.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/over-below-source.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/over-below-source.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/over-below-source.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-below-source.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-below-source.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-below-source.traps.argb32.ref.png
diff --git a/cairo/test/reference/over-below-source.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-below-source.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/over-below-source.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-below-source.traps.rgb24.ref.png
diff --git a/cairo/test/reference/over-between-source.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-between-source.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-between-source.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-between-source.argb32.ref.png
diff --git a/cairo/test/reference/over-between-source.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-between-source.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-between-source.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-between-source.base.argb32.ref.png
diff --git a/cairo/test/reference/over-between-source.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-between-source.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/over-between-source.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-between-source.base.rgb24.ref.png
diff --git a/cairo/test/reference/over-between-source.ps2.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-between-source.ps2.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-between-source.ps2.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-between-source.ps2.argb32.ref.png
diff --git a/cairo/test/reference/over-between-source.ps3.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-between-source.ps3.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-between-source.ps3.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-between-source.ps3.argb32.ref.png
diff --git a/cairo/test/reference/over-between-source.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-between-source.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-between-source.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-between-source.quartz.argb32.ref.png
diff --git a/cairo/test/reference/over-between-source.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-between-source.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/over-between-source.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-between-source.rgb24.ref.png
diff --git a/cairo/test/reference/over-between-source.svg12.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/over-between-source.svg12.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/over-between-source.svg12.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/over-between-source.svg12.argb32.xfail.png
diff --git a/cairo/test/reference/over-between-source.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/over-between-source.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/over-between-source.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/over-between-source.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/over-between-source.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-between-source.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/over-between-source.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-between-source.traps.argb32.ref.png
diff --git a/cairo/test/reference/over-between-source.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/over-between-source.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/over-between-source.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/over-between-source.traps.rgb24.ref.png
diff --git a/cairo/test/reference/overlapping-boxes.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-boxes.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-boxes.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-boxes.argb32.ref.png
diff --git a/cairo/test/reference/overlapping-boxes.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-boxes.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-boxes.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-boxes.base.argb32.ref.png
diff --git a/cairo/test/reference/overlapping-boxes.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-boxes.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-boxes.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-boxes.base.rgb24.ref.png
diff --git a/cairo/test/reference/overlapping-boxes.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-boxes.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-boxes.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-boxes.rgb24.ref.png
diff --git a/cairo/test/reference/overlapping-boxes.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-boxes.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-boxes.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-boxes.traps.argb32.ref.png
diff --git a/cairo/test/reference/overlapping-boxes.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-boxes.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-boxes.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-boxes.traps.rgb24.ref.png
diff --git a/cairo/test/reference/overlapping-dash-caps.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-dash-caps.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-dash-caps.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-dash-caps.base.argb32.ref.png
diff --git a/cairo/test/reference/overlapping-dash-caps.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-dash-caps.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-dash-caps.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-dash-caps.base.rgb24.ref.png
diff --git a/cairo/test/reference/overlapping-dash-caps.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-dash-caps.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-dash-caps.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-dash-caps.mask.argb32.ref.png
diff --git a/cairo/test/reference/overlapping-dash-caps.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-dash-caps.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-dash-caps.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-dash-caps.mask.rgb24.ref.png
diff --git a/cairo/test/reference/overlapping-dash-caps.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-dash-caps.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-dash-caps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-dash-caps.ref.png
diff --git a/cairo/test/reference/overlapping-dash-caps.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-dash-caps.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-dash-caps.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-dash-caps.traps.argb32.ref.png
diff --git a/cairo/test/reference/overlapping-dash-caps.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-dash-caps.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-dash-caps.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-dash-caps.traps.rgb24.ref.png
diff --git a/cairo/test/reference/overlapping-glyphs.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-glyphs.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.argb32.ref.png
diff --git a/cairo/test/reference/overlapping-glyphs.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-glyphs.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.base.argb32.ref.png
diff --git a/cairo/test/reference/overlapping-glyphs.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-glyphs.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.base.rgb24.ref.png
diff --git a/cairo/test/reference/overlapping-glyphs.pdf.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.pdf.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/overlapping-glyphs.pdf.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.pdf.argb32.xfail.png
diff --git a/cairo/test/reference/overlapping-glyphs.pdf.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.pdf.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/overlapping-glyphs.pdf.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.pdf.rgb24.xfail.png
diff --git a/cairo/test/reference/overlapping-glyphs.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-glyphs.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.quartz.argb32.ref.png
diff --git a/cairo/test/reference/overlapping-glyphs.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-glyphs.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/overlapping-glyphs.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-glyphs.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.rgb24.ref.png
diff --git a/cairo/test/reference/overlapping-glyphs.svg.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.svg.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-glyphs.svg.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.svg.argb32.ref.png
diff --git a/cairo/test/reference/overlapping-glyphs.svg.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.svg.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-glyphs.svg.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.svg.rgb24.ref.png
diff --git a/cairo/test/reference/overlapping-glyphs.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-glyphs.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.traps.argb32.ref.png
diff --git a/cairo/test/reference/overlapping-glyphs.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/overlapping-glyphs.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/overlapping-glyphs.traps.rgb24.ref.png
diff --git a/cairo/test/reference/paint-clip-fill-aa.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-clip-fill-aa.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/paint-clip-fill-aa.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-clip-fill-aa.base.argb32.ref.png
diff --git a/cairo/test/reference/paint-clip-fill-aa.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-clip-fill-aa.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/paint-clip-fill-aa.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-clip-fill-aa.base.rgb24.ref.png
diff --git a/cairo/test/reference/paint-clip-fill-aa.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-clip-fill-aa.ref.png
similarity index 100%
rename from cairo/test/reference/paint-clip-fill-aa.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-clip-fill-aa.ref.png
diff --git a/cairo/test/reference/paint-clip-fill-mono.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-clip-fill-mono.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/paint-clip-fill-mono.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-clip-fill-mono.base.argb32.ref.png
diff --git a/cairo/test/reference/paint-clip-fill-mono.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-clip-fill-mono.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/paint-clip-fill-mono.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-clip-fill-mono.base.rgb24.ref.png
diff --git a/cairo/test/reference/paint-clip-fill-mono.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-clip-fill-mono.ref.png
similarity index 100%
rename from cairo/test/reference/paint-clip-fill-mono.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-clip-fill-mono.ref.png
diff --git a/cairo/test/reference/paint-repeat.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-repeat.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/paint-repeat.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-repeat.base.argb32.ref.png
diff --git a/cairo/test/reference/paint-repeat.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-repeat.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/paint-repeat.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-repeat.base.rgb24.ref.png
diff --git a/cairo/test/reference/paint-repeat.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-repeat.ref.png
similarity index 100%
rename from cairo/test/reference/paint-repeat.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-repeat.ref.png
diff --git a/cairo/test/reference/paint-source-alpha.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-source-alpha.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/paint-source-alpha.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-source-alpha.base.argb32.ref.png
diff --git a/cairo/test/reference/paint-source-alpha.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-source-alpha.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/paint-source-alpha.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-source-alpha.base.rgb24.ref.png
diff --git a/cairo/test/reference/paint-source-alpha.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-source-alpha.image16.ref.png
similarity index 100%
rename from cairo/test/reference/paint-source-alpha.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-source-alpha.image16.ref.png
diff --git a/cairo/test/reference/paint-source-alpha.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-source-alpha.ref.png
similarity index 100%
rename from cairo/test/reference/paint-source-alpha.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-source-alpha.ref.png
diff --git a/cairo/test/reference/paint-source-alpha.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-source-alpha.svg.ref.png
similarity index 100%
rename from cairo/test/reference/paint-source-alpha.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-source-alpha.svg.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-clip-mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip-mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-clip-mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip-mask.argb32.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-clip-mask.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip-mask.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-clip-mask.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip-mask.base.argb32.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-clip-mask.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip-mask.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-clip-mask.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip-mask.base.rgb24.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-clip-mask.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip-mask.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-clip-mask.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip-mask.mask.argb32.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-clip-mask.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip-mask.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-clip-mask.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip-mask.mask.rgb24.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-clip-mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip-mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-clip-mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip-mask.rgb24.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-clip-mask.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip-mask.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-clip-mask.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip-mask.traps.argb32.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-clip-mask.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip-mask.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-clip-mask.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip-mask.traps.rgb24.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-clip.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-clip.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip.base.argb32.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-clip.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-clip.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip.base.rgb24.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-clip.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-clip.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip.mask.argb32.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-clip.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-clip.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip.mask.rgb24.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-clip.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-clip.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-clip.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-clip.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip.traps.argb32.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-clip.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-clip.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-clip.traps.rgb24.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-solid-clip.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-solid-clip.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-solid-clip.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-solid-clip.base.argb32.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-solid-clip.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-solid-clip.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-solid-clip.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-solid-clip.base.rgb24.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-solid-clip.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-solid-clip.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-solid-clip.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-solid-clip.mask.argb32.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-solid-clip.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-solid-clip.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-solid-clip.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-solid-clip.mask.rgb24.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-solid-clip.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-solid-clip.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-solid-clip.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-solid-clip.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-solid-clip.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-solid-clip.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-solid-clip.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-solid-clip.traps.argb32.ref.png
diff --git a/cairo/test/reference/paint-with-alpha-solid-clip.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-solid-clip.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha-solid-clip.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha-solid-clip.traps.rgb24.ref.png
diff --git a/cairo/test/reference/paint-with-alpha.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha.base.argb32.ref.png
diff --git a/cairo/test/reference/paint-with-alpha.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha.base.rgb24.ref.png
diff --git a/cairo/test/reference/paint-with-alpha.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha.image16.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha.image16.ref.png
diff --git a/cairo/test/reference/paint-with-alpha.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha.ref.png
diff --git a/cairo/test/reference/paint-with-alpha.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha.svg.ref.png
similarity index 100%
rename from cairo/test/reference/paint-with-alpha.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint-with-alpha.svg.ref.png
diff --git a/cairo/test/reference/paint.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/paint.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint.base.argb32.ref.png
diff --git a/cairo/test/reference/paint.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/paint.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint.base.rgb24.ref.png
diff --git a/cairo/test/reference/paint.ref.png b/io2d/src/3rd-party/cairo/test/reference/paint.ref.png
similarity index 100%
rename from cairo/test/reference/paint.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/paint.ref.png
diff --git a/cairo/test/reference/partial-clip-text-bottom.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-clip-text-bottom.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/partial-clip-text-bottom.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-clip-text-bottom.argb32.ref.png
diff --git a/cairo/test/reference/partial-clip-text-bottom.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-clip-text-bottom.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/partial-clip-text-bottom.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-clip-text-bottom.base.argb32.ref.png
diff --git a/cairo/test/reference/partial-clip-text-bottom.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-clip-text-bottom.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/partial-clip-text-bottom.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-clip-text-bottom.base.rgb24.ref.png
diff --git a/cairo/test/reference/partial-clip-text-bottom.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-clip-text-bottom.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/partial-clip-text-bottom.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-clip-text-bottom.rgb24.ref.png
diff --git a/cairo/test/reference/partial-clip-text-left.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-clip-text-left.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/partial-clip-text-left.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-clip-text-left.argb32.ref.png
diff --git a/cairo/test/reference/partial-clip-text-left.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-clip-text-left.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/partial-clip-text-left.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-clip-text-left.base.argb32.ref.png
diff --git a/cairo/test/reference/partial-clip-text-left.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-clip-text-left.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/partial-clip-text-left.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-clip-text-left.base.rgb24.ref.png
diff --git a/cairo/test/reference/partial-clip-text-left.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-clip-text-left.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/partial-clip-text-left.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-clip-text-left.rgb24.ref.png
diff --git a/cairo/test/reference/partial-clip-text-right.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-clip-text-right.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/partial-clip-text-right.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-clip-text-right.argb32.ref.png
diff --git a/cairo/test/reference/partial-clip-text-right.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-clip-text-right.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/partial-clip-text-right.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-clip-text-right.base.argb32.ref.png
diff --git a/cairo/test/reference/partial-clip-text-right.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-clip-text-right.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/partial-clip-text-right.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-clip-text-right.base.rgb24.ref.png
diff --git a/cairo/test/reference/partial-clip-text-right.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-clip-text-right.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/partial-clip-text-right.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-clip-text-right.rgb24.ref.png
diff --git a/cairo/test/reference/partial-clip-text-right.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-clip-text-right.traps.ref.png
similarity index 100%
rename from cairo/test/reference/partial-clip-text-right.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-clip-text-right.traps.ref.png
diff --git a/cairo/test/reference/partial-clip-text-top.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-clip-text-top.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/partial-clip-text-top.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-clip-text-top.argb32.ref.png
diff --git a/cairo/test/reference/partial-clip-text-top.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-clip-text-top.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/partial-clip-text-top.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-clip-text-top.base.argb32.ref.png
diff --git a/cairo/test/reference/partial-clip-text-top.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-clip-text-top.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/partial-clip-text-top.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-clip-text-top.base.rgb24.ref.png
diff --git a/cairo/test/reference/partial-clip-text-top.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-clip-text-top.ps.ref.png
similarity index 100%
rename from cairo/test/reference/partial-clip-text-top.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-clip-text-top.ps.ref.png
diff --git a/cairo/test/reference/partial-clip-text-top.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-clip-text-top.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/partial-clip-text-top.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-clip-text-top.quartz.ref.png
diff --git a/cairo/test/reference/partial-clip-text-top.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-clip-text-top.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/partial-clip-text-top.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-clip-text-top.rgb24.ref.png
diff --git a/cairo/test/reference/partial-clip-text-top.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-clip-text-top.svg.ref.png
similarity index 100%
rename from cairo/test/reference/partial-clip-text-top.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-clip-text-top.svg.ref.png
diff --git a/cairo/test/reference/partial-clip-text-top.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-clip-text-top.traps.ref.png
similarity index 100%
rename from cairo/test/reference/partial-clip-text-top.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-clip-text-top.traps.ref.png
diff --git a/cairo/test/reference/partial-coverage-half-reference.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-coverage-half-reference.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/partial-coverage-half-reference.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-coverage-half-reference.base.argb32.ref.png
diff --git a/cairo/test/reference/partial-coverage-half-reference.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-coverage-half-reference.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/partial-coverage-half-reference.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-coverage-half-reference.base.rgb24.ref.png
diff --git a/cairo/test/reference/partial-coverage-half-reference.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-coverage-half-reference.ref.png
similarity index 100%
rename from cairo/test/reference/partial-coverage-half-reference.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-coverage-half-reference.ref.png
diff --git a/cairo/test/reference/partial-coverage-half-triangles.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-coverage-half-triangles.ref.png
similarity index 100%
rename from cairo/test/reference/partial-coverage-half-triangles.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-coverage-half-triangles.ref.png
diff --git a/cairo/test/reference/partial-coverage-intersecting-quads.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-coverage-intersecting-quads.ref.png
similarity index 100%
rename from cairo/test/reference/partial-coverage-intersecting-quads.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-coverage-intersecting-quads.ref.png
diff --git a/cairo/test/reference/partial-coverage-intersecting-quads.xfail.png b/io2d/src/3rd-party/cairo/test/reference/partial-coverage-intersecting-quads.xfail.png
similarity index 100%
rename from cairo/test/reference/partial-coverage-intersecting-quads.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-coverage-intersecting-quads.xfail.png
diff --git a/cairo/test/reference/partial-coverage-intersecting-triangles.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-coverage-intersecting-triangles.ref.png
similarity index 100%
rename from cairo/test/reference/partial-coverage-intersecting-triangles.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-coverage-intersecting-triangles.ref.png
diff --git a/cairo/test/reference/partial-coverage-overlap-half-triangles-eo.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-coverage-overlap-half-triangles-eo.ref.png
similarity index 100%
rename from cairo/test/reference/partial-coverage-overlap-half-triangles-eo.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-coverage-overlap-half-triangles-eo.ref.png
diff --git a/cairo/test/reference/partial-coverage-overlap-half-triangles.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-coverage-overlap-half-triangles.ref.png
similarity index 100%
rename from cairo/test/reference/partial-coverage-overlap-half-triangles.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-coverage-overlap-half-triangles.ref.png
diff --git a/cairo/test/reference/partial-coverage-overlap-three-quarter-triangles.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-coverage-overlap-three-quarter-triangles.ref.png
similarity index 100%
rename from cairo/test/reference/partial-coverage-overlap-three-quarter-triangles.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-coverage-overlap-three-quarter-triangles.ref.png
diff --git a/cairo/test/reference/partial-coverage-rectangles.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-coverage-rectangles.ref.png
similarity index 100%
rename from cairo/test/reference/partial-coverage-rectangles.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-coverage-rectangles.ref.png
diff --git a/cairo/test/reference/partial-coverage-reference.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-coverage-reference.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/partial-coverage-reference.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-coverage-reference.base.argb32.ref.png
diff --git a/cairo/test/reference/partial-coverage-reference.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-coverage-reference.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/partial-coverage-reference.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-coverage-reference.base.rgb24.ref.png
diff --git a/cairo/test/reference/partial-coverage-reference.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-coverage-reference.ref.png
similarity index 100%
rename from cairo/test/reference/partial-coverage-reference.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-coverage-reference.ref.png
diff --git a/cairo/test/reference/partial-coverage-three-quarter-reference.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-coverage-three-quarter-reference.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/partial-coverage-three-quarter-reference.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-coverage-three-quarter-reference.base.argb32.ref.png
diff --git a/cairo/test/reference/partial-coverage-three-quarter-reference.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-coverage-three-quarter-reference.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/partial-coverage-three-quarter-reference.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-coverage-three-quarter-reference.base.rgb24.ref.png
diff --git a/cairo/test/reference/partial-coverage-three-quarter-reference.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-coverage-three-quarter-reference.ref.png
similarity index 100%
rename from cairo/test/reference/partial-coverage-three-quarter-reference.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-coverage-three-quarter-reference.ref.png
diff --git a/cairo/test/reference/partial-coverage-triangles.ref.png b/io2d/src/3rd-party/cairo/test/reference/partial-coverage-triangles.ref.png
similarity index 100%
rename from cairo/test/reference/partial-coverage-triangles.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/partial-coverage-triangles.ref.png
diff --git a/cairo/test/reference/pass-through.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/pass-through.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/pass-through.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pass-through.argb32.ref.png
diff --git a/cairo/test/reference/pass-through.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/pass-through.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/pass-through.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pass-through.base.argb32.ref.png
diff --git a/cairo/test/reference/pass-through.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/pass-through.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/pass-through.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pass-through.base.rgb24.ref.png
diff --git a/cairo/test/reference/pass-through.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/pass-through.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/pass-through.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pass-through.rgb24.ref.png
diff --git a/cairo/test/reference/path-append.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/path-append.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/path-append.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/path-append.argb32.ref.png
diff --git a/cairo/test/reference/path-append.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/path-append.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/path-append.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/path-append.base.argb32.ref.png
diff --git a/cairo/test/reference/path-append.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/path-append.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/path-append.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/path-append.base.rgb24.ref.png
diff --git a/cairo/test/reference/path-append.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/path-append.image16.ref.png
similarity index 100%
rename from cairo/test/reference/path-append.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/path-append.image16.ref.png
diff --git a/cairo/test/reference/path-append.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/path-append.ps.ref.png
similarity index 100%
rename from cairo/test/reference/path-append.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/path-append.ps.ref.png
diff --git a/cairo/test/reference/path-append.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/path-append.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/path-append.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/path-append.quartz.ref.png
diff --git a/cairo/test/reference/path-append.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/path-append.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/path-append.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/path-append.rgb24.ref.png
diff --git a/cairo/test/reference/path-append.test-fallback.ref.png b/io2d/src/3rd-party/cairo/test/reference/path-append.test-fallback.ref.png
similarity index 100%
rename from cairo/test/reference/path-append.test-fallback.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/path-append.test-fallback.ref.png
diff --git a/cairo/test/reference/path-append.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/path-append.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/path-append.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/path-append.traps.argb32.ref.png
diff --git a/cairo/test/reference/path-append.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/path-append.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/path-append.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/path-append.traps.rgb24.ref.png
diff --git a/cairo/test/reference/path-append.xlib-fallback.ref.png b/io2d/src/3rd-party/cairo/test/reference/path-append.xlib-fallback.ref.png
similarity index 100%
rename from cairo/test/reference/path-append.xlib-fallback.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/path-append.xlib-fallback.ref.png
diff --git a/cairo/test/reference/path-stroke-twice.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/path-stroke-twice.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/path-stroke-twice.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/path-stroke-twice.argb32.ref.png
diff --git a/cairo/test/reference/path-stroke-twice.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/path-stroke-twice.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/path-stroke-twice.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/path-stroke-twice.base.argb32.ref.png
diff --git a/cairo/test/reference/path-stroke-twice.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/path-stroke-twice.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/path-stroke-twice.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/path-stroke-twice.base.rgb24.ref.png
diff --git a/cairo/test/reference/path-stroke-twice.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/path-stroke-twice.image16.ref.png
similarity index 100%
rename from cairo/test/reference/path-stroke-twice.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/path-stroke-twice.image16.ref.png
diff --git a/cairo/test/reference/path-stroke-twice.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/path-stroke-twice.ps.ref.png
similarity index 100%
rename from cairo/test/reference/path-stroke-twice.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/path-stroke-twice.ps.ref.png
diff --git a/cairo/test/reference/path-stroke-twice.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/path-stroke-twice.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/path-stroke-twice.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/path-stroke-twice.rgb24.ref.png
diff --git a/cairo/test/reference/path-stroke-twice.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/path-stroke-twice.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/path-stroke-twice.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/path-stroke-twice.traps.argb32.ref.png
diff --git a/cairo/test/reference/path-stroke-twice.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/path-stroke-twice.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/path-stroke-twice.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/path-stroke-twice.traps.rgb24.ref.png
diff --git a/cairo/test/reference/pattern-getters.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/pattern-getters.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/pattern-getters.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pattern-getters.base.argb32.ref.png
diff --git a/cairo/test/reference/pattern-getters.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/pattern-getters.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/pattern-getters.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pattern-getters.base.rgb24.ref.png
diff --git a/cairo/test/reference/pattern-getters.ref.png b/io2d/src/3rd-party/cairo/test/reference/pattern-getters.ref.png
similarity index 100%
rename from cairo/test/reference/pattern-getters.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pattern-getters.ref.png
diff --git a/cairo/test/reference/pdf-isolated-group.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/pdf-isolated-group.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/pdf-isolated-group.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pdf-isolated-group.base.argb32.ref.png
diff --git a/cairo/test/reference/pdf-isolated-group.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/pdf-isolated-group.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/pdf-isolated-group.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pdf-isolated-group.base.rgb24.ref.png
diff --git a/cairo/test/reference/pdf-isolated-group.ref.png b/io2d/src/3rd-party/cairo/test/reference/pdf-isolated-group.ref.png
similarity index 100%
rename from cairo/test/reference/pdf-isolated-group.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pdf-isolated-group.ref.png
diff --git a/cairo/test/reference/pdf-surface-source.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/pdf-surface-source.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/pdf-surface-source.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pdf-surface-source.argb32.ref.png
diff --git a/cairo/test/reference/pdf-surface-source.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/pdf-surface-source.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/pdf-surface-source.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pdf-surface-source.base.argb32.ref.png
diff --git a/cairo/test/reference/pdf-surface-source.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/pdf-surface-source.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/pdf-surface-source.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pdf-surface-source.base.rgb24.ref.png
diff --git a/cairo/test/reference/pdf-surface-source.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/pdf-surface-source.image16.ref.png
similarity index 100%
rename from cairo/test/reference/pdf-surface-source.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pdf-surface-source.image16.ref.png
diff --git a/cairo/test/reference/pdf-surface-source.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/pdf-surface-source.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/pdf-surface-source.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pdf-surface-source.rgb24.ref.png
diff --git a/cairo/test/reference/pdf-surface-source.svg12.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/pdf-surface-source.svg12.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/pdf-surface-source.svg12.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/pdf-surface-source.svg12.argb32.xfail.png
diff --git a/cairo/test/reference/pdf-surface-source.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/pdf-surface-source.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/pdf-surface-source.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/pdf-surface-source.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/pixman-rotate.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/pixman-rotate.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/pixman-rotate.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pixman-rotate.argb32.ref.png
diff --git a/cairo/test/reference/pixman-rotate.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/pixman-rotate.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/pixman-rotate.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pixman-rotate.base.argb32.ref.png
diff --git a/cairo/test/reference/pixman-rotate.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/pixman-rotate.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/pixman-rotate.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pixman-rotate.base.rgb24.ref.png
diff --git a/cairo/test/reference/pixman-rotate.ps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/pixman-rotate.ps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/pixman-rotate.ps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pixman-rotate.ps.argb32.ref.png
diff --git a/cairo/test/reference/pixman-rotate.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/pixman-rotate.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/pixman-rotate.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pixman-rotate.rgb24.ref.png
diff --git a/cairo/test/reference/ps-eps.ref.png b/io2d/src/3rd-party/cairo/test/reference/ps-eps.ref.png
similarity index 100%
rename from cairo/test/reference/ps-eps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ps-eps.ref.png
diff --git a/cairo/test/reference/ps-surface-source.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/ps-surface-source.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/ps-surface-source.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ps-surface-source.argb32.ref.png
diff --git a/cairo/test/reference/ps-surface-source.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/ps-surface-source.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/ps-surface-source.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ps-surface-source.base.argb32.ref.png
diff --git a/cairo/test/reference/ps-surface-source.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/ps-surface-source.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/ps-surface-source.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ps-surface-source.base.rgb24.ref.png
diff --git a/cairo/test/reference/ps-surface-source.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/ps-surface-source.image16.ref.png
similarity index 100%
rename from cairo/test/reference/ps-surface-source.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ps-surface-source.image16.ref.png
diff --git a/cairo/test/reference/ps-surface-source.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/ps-surface-source.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/ps-surface-source.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/ps-surface-source.rgb24.ref.png
diff --git a/cairo/test/reference/ps-surface-source.svg12.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/ps-surface-source.svg12.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/ps-surface-source.svg12.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/ps-surface-source.svg12.argb32.xfail.png
diff --git a/cairo/test/reference/ps-surface-source.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/ps-surface-source.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/ps-surface-source.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/ps-surface-source.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/pthread-same-source.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/pthread-same-source.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/pthread-same-source.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pthread-same-source.base.argb32.ref.png
diff --git a/cairo/test/reference/pthread-same-source.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/pthread-same-source.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/pthread-same-source.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pthread-same-source.base.rgb24.ref.png
diff --git a/cairo/test/reference/pthread-same-source.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/pthread-same-source.image16.ref.png
similarity index 100%
rename from cairo/test/reference/pthread-same-source.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pthread-same-source.image16.ref.png
diff --git a/cairo/test/reference/pthread-same-source.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/pthread-same-source.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/pthread-same-source.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/pthread-same-source.quartz.xfail.png
diff --git a/cairo/test/reference/pthread-same-source.ref.png b/io2d/src/3rd-party/cairo/test/reference/pthread-same-source.ref.png
similarity index 100%
rename from cairo/test/reference/pthread-same-source.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pthread-same-source.ref.png
diff --git a/cairo/test/reference/pthread-show-text.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/pthread-show-text.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/pthread-show-text.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pthread-show-text.argb32.ref.png
diff --git a/cairo/test/reference/pthread-show-text.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/pthread-show-text.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/pthread-show-text.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pthread-show-text.base.argb32.ref.png
diff --git a/cairo/test/reference/pthread-show-text.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/pthread-show-text.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/pthread-show-text.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pthread-show-text.base.rgb24.ref.png
diff --git a/cairo/test/reference/pthread-show-text.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/pthread-show-text.image16.ref.png
similarity index 100%
rename from cairo/test/reference/pthread-show-text.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pthread-show-text.image16.ref.png
diff --git a/cairo/test/reference/pthread-show-text.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/pthread-show-text.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/pthread-show-text.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pthread-show-text.pdf.ref.png
diff --git a/cairo/test/reference/pthread-show-text.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/pthread-show-text.ps.ref.png
similarity index 100%
rename from cairo/test/reference/pthread-show-text.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pthread-show-text.ps.ref.png
diff --git a/cairo/test/reference/pthread-show-text.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/pthread-show-text.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/pthread-show-text.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pthread-show-text.quartz.ref.png
diff --git a/cairo/test/reference/pthread-show-text.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/pthread-show-text.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/pthread-show-text.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pthread-show-text.rgb24.ref.png
diff --git a/cairo/test/reference/pthread-show-text.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/pthread-show-text.traps.ref.png
similarity index 100%
rename from cairo/test/reference/pthread-show-text.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pthread-show-text.traps.ref.png
diff --git a/cairo/test/reference/pthread-show-text.xlib-fallback.ref.png b/io2d/src/3rd-party/cairo/test/reference/pthread-show-text.xlib-fallback.ref.png
similarity index 100%
rename from cairo/test/reference/pthread-show-text.xlib-fallback.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pthread-show-text.xlib-fallback.ref.png
diff --git a/cairo/test/reference/pthread-similar.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/pthread-similar.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/pthread-similar.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pthread-similar.base.argb32.ref.png
diff --git a/cairo/test/reference/pthread-similar.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/pthread-similar.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/pthread-similar.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pthread-similar.base.rgb24.ref.png
diff --git a/cairo/test/reference/pthread-similar.ref.png b/io2d/src/3rd-party/cairo/test/reference/pthread-similar.ref.png
similarity index 100%
rename from cairo/test/reference/pthread-similar.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/pthread-similar.ref.png
diff --git a/cairo/test/reference/push-group-color.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group-color.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/push-group-color.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group-color.argb32.ref.png
diff --git a/cairo/test/reference/push-group-color.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group-color.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/push-group-color.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group-color.base.argb32.ref.png
diff --git a/cairo/test/reference/push-group-color.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group-color.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/push-group-color.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group-color.base.rgb24.ref.png
diff --git a/cairo/test/reference/push-group-color.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group-color.image16.ref.png
similarity index 100%
rename from cairo/test/reference/push-group-color.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group-color.image16.ref.png
diff --git a/cairo/test/reference/push-group-color.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group-color.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/push-group-color.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group-color.ps2.ref.png
diff --git a/cairo/test/reference/push-group-color.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group-color.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/push-group-color.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group-color.ps3.ref.png
diff --git a/cairo/test/reference/push-group-color.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group-color.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/push-group-color.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group-color.quartz.ref.png
diff --git a/cairo/test/reference/push-group-color.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group-color.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/push-group-color.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group-color.rgb24.ref.png
diff --git a/cairo/test/reference/push-group-color.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group-color.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/push-group-color.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group-color.traps.argb32.ref.png
diff --git a/cairo/test/reference/push-group-color.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group-color.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/push-group-color.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group-color.traps.rgb24.ref.png
diff --git a/cairo/test/reference/push-group-path-offset.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group-path-offset.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/push-group-path-offset.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group-path-offset.base.argb32.ref.png
diff --git a/cairo/test/reference/push-group-path-offset.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group-path-offset.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/push-group-path-offset.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group-path-offset.base.rgb24.ref.png
diff --git a/cairo/test/reference/push-group-path-offset.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group-path-offset.ref.png
similarity index 100%
rename from cairo/test/reference/push-group-path-offset.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group-path-offset.ref.png
diff --git a/cairo/test/reference/push-group.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/push-group.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group.argb32.ref.png
diff --git a/cairo/test/reference/push-group.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/push-group.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group.base.argb32.ref.png
diff --git a/cairo/test/reference/push-group.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/push-group.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group.base.rgb24.ref.png
diff --git a/cairo/test/reference/push-group.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group.image16.ref.png
similarity index 100%
rename from cairo/test/reference/push-group.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group.image16.ref.png
diff --git a/cairo/test/reference/push-group.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/push-group.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group.quartz.argb32.ref.png
diff --git a/cairo/test/reference/push-group.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/push-group.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/push-group.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/push-group.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group.rgb24.ref.png
diff --git a/cairo/test/reference/push-group.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/push-group.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group.traps.argb32.ref.png
diff --git a/cairo/test/reference/push-group.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/push-group.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/push-group.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/push-group.traps.rgb24.ref.png
diff --git a/cairo/test/reference/quartz-surface-source.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/quartz-surface-source.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/quartz-surface-source.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/quartz-surface-source.argb32.ref.png
diff --git a/cairo/test/reference/quartz-surface-source.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/quartz-surface-source.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/quartz-surface-source.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/quartz-surface-source.ps2.ref.png
diff --git a/cairo/test/reference/quartz-surface-source.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/quartz-surface-source.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/quartz-surface-source.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/quartz-surface-source.ps3.ref.png
diff --git a/cairo/test/reference/quartz-surface-source.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/quartz-surface-source.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/quartz-surface-source.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/quartz-surface-source.rgb24.ref.png
diff --git a/cairo/test/reference/radial-gradient-extend.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-extend.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-extend.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-extend.base.argb32.ref.png
diff --git a/cairo/test/reference/radial-gradient-extend.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-extend.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-extend.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-extend.base.rgb24.ref.png
diff --git a/cairo/test/reference/radial-gradient-extend.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-extend.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-extend.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-extend.mask.argb32.ref.png
diff --git a/cairo/test/reference/radial-gradient-extend.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-extend.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-extend.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-extend.mask.rgb24.ref.png
diff --git a/cairo/test/reference/radial-gradient-extend.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-extend.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-extend.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-extend.ps3.ref.png
diff --git a/cairo/test/reference/radial-gradient-extend.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-extend.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-extend.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-extend.ref.png
diff --git a/cairo/test/reference/radial-gradient-extend.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-extend.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-extend.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-extend.traps.argb32.ref.png
diff --git a/cairo/test/reference/radial-gradient-extend.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-extend.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-extend.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-extend.traps.rgb24.ref.png
diff --git a/cairo/test/reference/radial-gradient-mask-source.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask-source.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-mask-source.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask-source.argb32.ref.png
diff --git a/cairo/test/reference/radial-gradient-mask-source.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask-source.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-mask-source.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask-source.base.argb32.ref.png
diff --git a/cairo/test/reference/radial-gradient-mask-source.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask-source.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-mask-source.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask-source.base.rgb24.ref.png
diff --git a/cairo/test/reference/radial-gradient-mask-source.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask-source.image16.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-mask-source.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask-source.image16.ref.png
diff --git a/cairo/test/reference/radial-gradient-mask-source.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask-source.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-mask-source.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask-source.mask.rgb24.ref.png
diff --git a/cairo/test/reference/radial-gradient-mask-source.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask-source.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-mask-source.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask-source.quartz.argb32.ref.png
diff --git a/cairo/test/reference/radial-gradient-mask-source.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask-source.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-mask-source.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask-source.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/radial-gradient-mask-source.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask-source.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-mask-source.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask-source.traps.rgb24.ref.png
diff --git a/cairo/test/reference/radial-gradient-mask.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-mask.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask.base.argb32.ref.png
diff --git a/cairo/test/reference/radial-gradient-mask.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-mask.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask.base.rgb24.ref.png
diff --git a/cairo/test/reference/radial-gradient-mask.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask.image16.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-mask.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask.image16.ref.png
diff --git a/cairo/test/reference/radial-gradient-mask.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-mask.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask.quartz.ref.png
diff --git a/cairo/test/reference/radial-gradient-mask.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-mask.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-mask.ref.png
diff --git a/cairo/test/reference/radial-gradient-one-stop.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-one-stop.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-one-stop.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-one-stop.base.argb32.ref.png
diff --git a/cairo/test/reference/radial-gradient-one-stop.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-one-stop.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-one-stop.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-one-stop.base.rgb24.ref.png
diff --git a/cairo/test/reference/radial-gradient-one-stop.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-one-stop.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-one-stop.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-one-stop.quartz.ref.png
diff --git a/cairo/test/reference/radial-gradient-one-stop.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-one-stop.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-one-stop.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-one-stop.ref.png
diff --git a/cairo/test/reference/radial-gradient-source.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-source.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-source.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-source.argb32.ref.png
diff --git a/cairo/test/reference/radial-gradient-source.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-source.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-source.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-source.base.argb32.ref.png
diff --git a/cairo/test/reference/radial-gradient-source.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-source.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-source.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-source.base.rgb24.ref.png
diff --git a/cairo/test/reference/radial-gradient-source.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-source.image16.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-source.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-source.image16.ref.png
diff --git a/cairo/test/reference/radial-gradient-source.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-source.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-source.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-source.quartz.argb32.ref.png
diff --git a/cairo/test/reference/radial-gradient-source.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-source.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-source.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-source.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/radial-gradient-source.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient-source.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient-source.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient-source.rgb24.ref.png
diff --git a/cairo/test/reference/radial-gradient.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient.base.argb32.ref.png
diff --git a/cairo/test/reference/radial-gradient.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient.base.rgb24.ref.png
diff --git a/cairo/test/reference/radial-gradient.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient.image16.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient.image16.ref.png
diff --git a/cairo/test/reference/radial-gradient.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient.quartz.ref.png
diff --git a/cairo/test/reference/radial-gradient.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-gradient.ref.png
similarity index 100%
rename from cairo/test/reference/radial-gradient.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-gradient.ref.png
diff --git a/cairo/test/reference/radial-outer-focus.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-outer-focus.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/radial-outer-focus.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-outer-focus.base.argb32.ref.png
diff --git a/cairo/test/reference/radial-outer-focus.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-outer-focus.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/radial-outer-focus.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-outer-focus.base.rgb24.ref.png
diff --git a/cairo/test/reference/radial-outer-focus.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-outer-focus.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/radial-outer-focus.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-outer-focus.mask.argb32.ref.png
diff --git a/cairo/test/reference/radial-outer-focus.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-outer-focus.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/radial-outer-focus.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-outer-focus.mask.rgb24.ref.png
diff --git a/cairo/test/reference/radial-outer-focus.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-outer-focus.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/radial-outer-focus.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-outer-focus.traps.argb32.ref.png
diff --git a/cairo/test/reference/radial-outer-focus.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/radial-outer-focus.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/radial-outer-focus.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-outer-focus.traps.rgb24.ref.png
diff --git a/cairo/test/reference/radial-outer-focus.xfail.png b/io2d/src/3rd-party/cairo/test/reference/radial-outer-focus.xfail.png
similarity index 100%
rename from cairo/test/reference/radial-outer-focus.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/radial-outer-focus.xfail.png
diff --git a/cairo/test/reference/random-clip.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-clip.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/random-clip.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-clip.base.argb32.ref.png
diff --git a/cairo/test/reference/random-clip.base.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/random-clip.base.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/random-clip.base.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/random-clip.base.argb32.xfail.png
diff --git a/cairo/test/reference/random-clip.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-clip.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/random-clip.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-clip.base.rgb24.ref.png
diff --git a/cairo/test/reference/random-clip.base.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/random-clip.base.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/random-clip.base.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/random-clip.base.rgb24.xfail.png
diff --git a/cairo/test/reference/random-clip.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-clip.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/random-clip.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-clip.mask.argb32.ref.png
diff --git a/cairo/test/reference/random-clip.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-clip.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/random-clip.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-clip.mask.rgb24.ref.png
diff --git a/cairo/test/reference/random-clip.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-clip.ref.png
similarity index 100%
rename from cairo/test/reference/random-clip.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-clip.ref.png
diff --git a/cairo/test/reference/random-clip.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-clip.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/random-clip.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-clip.traps.argb32.ref.png
diff --git a/cairo/test/reference/random-clip.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-clip.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/random-clip.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-clip.traps.rgb24.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-eo.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-eo.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.argb32.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-eo.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-eo.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.base.argb32.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-eo.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-eo.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.base.rgb24.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-eo.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.image16.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-eo.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.image16.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-eo.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-eo.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.pdf.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-eo.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.ps.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-eo.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.ps.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-eo.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-eo.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.quartz.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-eo.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-eo.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.rgb24.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-eo.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-eo.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.traps.argb32.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-eo.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-eo.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.traps.rgb24.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-eo.xlib-fallback.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.xlib-fallback.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-eo.xlib-fallback.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-eo.xlib-fallback.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-nz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-nz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.argb32.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-nz.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-nz.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.base.argb32.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-nz.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-nz.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.base.rgb24.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-nz.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.image16.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-nz.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.image16.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-nz.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-nz.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.pdf.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-nz.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.ps.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-nz.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.ps.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-nz.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-nz.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.quartz.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-nz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-nz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.rgb24.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-nz.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-nz.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.traps.argb32.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-nz.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-nz.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.traps.rgb24.ref.png
diff --git a/cairo/test/reference/random-intersections-curves-nz.xlib-fallback.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.xlib-fallback.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-curves-nz.xlib-fallback.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-curves-nz.xlib-fallback.ref.png
diff --git a/cairo/test/reference/random-intersections-eo.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-eo.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-eo.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-eo.argb32.ref.png
diff --git a/cairo/test/reference/random-intersections-eo.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-eo.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-eo.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-eo.base.argb32.ref.png
diff --git a/cairo/test/reference/random-intersections-eo.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-eo.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-eo.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-eo.base.rgb24.ref.png
diff --git a/cairo/test/reference/random-intersections-eo.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-eo.image16.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-eo.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-eo.image16.ref.png
diff --git a/cairo/test/reference/random-intersections-eo.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-eo.ps.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-eo.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-eo.ps.ref.png
diff --git a/cairo/test/reference/random-intersections-eo.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-eo.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-eo.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-eo.quartz.ref.png
diff --git a/cairo/test/reference/random-intersections-eo.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-eo.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-eo.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-eo.rgb24.ref.png
diff --git a/cairo/test/reference/random-intersections-eo.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-eo.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-eo.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-eo.traps.argb32.ref.png
diff --git a/cairo/test/reference/random-intersections-eo.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-eo.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-eo.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-eo.traps.rgb24.ref.png
diff --git a/cairo/test/reference/random-intersections-nonzero.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-nonzero.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-nonzero.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-nonzero.argb32.ref.png
diff --git a/cairo/test/reference/random-intersections-nonzero.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-nonzero.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-nonzero.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-nonzero.base.argb32.ref.png
diff --git a/cairo/test/reference/random-intersections-nonzero.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-nonzero.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-nonzero.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-nonzero.base.rgb24.ref.png
diff --git a/cairo/test/reference/random-intersections-nonzero.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-nonzero.image16.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-nonzero.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-nonzero.image16.ref.png
diff --git a/cairo/test/reference/random-intersections-nonzero.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-nonzero.ps.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-nonzero.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-nonzero.ps.ref.png
diff --git a/cairo/test/reference/random-intersections-nonzero.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-nonzero.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-nonzero.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-nonzero.quartz.ref.png
diff --git a/cairo/test/reference/random-intersections-nonzero.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-nonzero.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-nonzero.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-nonzero.rgb24.ref.png
diff --git a/cairo/test/reference/random-intersections-nonzero.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-nonzero.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-nonzero.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-nonzero.traps.argb32.ref.png
diff --git a/cairo/test/reference/random-intersections-nonzero.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/random-intersections-nonzero.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/random-intersections-nonzero.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/random-intersections-nonzero.traps.rgb24.ref.png
diff --git a/cairo/test/reference/raster-source.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/raster-source.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/raster-source.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/raster-source.base.argb32.ref.png
diff --git a/cairo/test/reference/raster-source.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/raster-source.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/raster-source.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/raster-source.base.rgb24.ref.png
diff --git a/cairo/test/reference/raster-source.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/raster-source.ps.ref.png
similarity index 100%
rename from cairo/test/reference/raster-source.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/raster-source.ps.ref.png
diff --git a/cairo/test/reference/raster-source.ref.png b/io2d/src/3rd-party/cairo/test/reference/raster-source.ref.png
similarity index 100%
rename from cairo/test/reference/raster-source.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/raster-source.ref.png
diff --git a/cairo/test/reference/record-extend-none-similar.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-none-similar.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-none-similar.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-none-similar.base.argb32.ref.png
diff --git a/cairo/test/reference/record-extend-none-similar.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-none-similar.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-none-similar.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-none-similar.base.rgb24.ref.png
diff --git a/cairo/test/reference/record-extend-none-similar.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-none-similar.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-none-similar.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-none-similar.ref.png
diff --git a/cairo/test/reference/record-extend-none-similar.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-none-similar.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-none-similar.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-none-similar.traps.argb32.ref.png
diff --git a/cairo/test/reference/record-extend-none-similar.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-none-similar.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-none-similar.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-none-similar.traps.rgb24.ref.png
diff --git a/cairo/test/reference/record-extend-none.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-none.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-none.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-none.base.argb32.ref.png
diff --git a/cairo/test/reference/record-extend-none.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-none.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-none.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-none.base.rgb24.ref.png
diff --git a/cairo/test/reference/record-extend-none.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-none.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-none.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-none.ref.png
diff --git a/cairo/test/reference/record-extend-pad-similar.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-pad-similar.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-pad-similar.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-pad-similar.base.argb32.ref.png
diff --git a/cairo/test/reference/record-extend-pad-similar.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-pad-similar.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-pad-similar.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-pad-similar.base.rgb24.ref.png
diff --git a/cairo/test/reference/record-extend-pad-similar.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-pad-similar.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-pad-similar.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-pad-similar.ref.png
diff --git a/cairo/test/reference/record-extend-pad-similar.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-pad-similar.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-pad-similar.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-pad-similar.traps.argb32.ref.png
diff --git a/cairo/test/reference/record-extend-pad-similar.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-pad-similar.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-pad-similar.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-pad-similar.traps.rgb24.ref.png
diff --git a/cairo/test/reference/record-extend-pad.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-pad.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-pad.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-pad.base.argb32.ref.png
diff --git a/cairo/test/reference/record-extend-pad.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-pad.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-pad.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-pad.base.rgb24.ref.png
diff --git a/cairo/test/reference/record-extend-pad.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-pad.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-pad.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-pad.ref.png
diff --git a/cairo/test/reference/record-extend-reflect-similar.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-reflect-similar.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-reflect-similar.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-reflect-similar.base.argb32.ref.png
diff --git a/cairo/test/reference/record-extend-reflect-similar.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-reflect-similar.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-reflect-similar.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-reflect-similar.base.rgb24.ref.png
diff --git a/cairo/test/reference/record-extend-reflect-similar.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-reflect-similar.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-reflect-similar.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-reflect-similar.ref.png
diff --git a/cairo/test/reference/record-extend-reflect-similar.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-reflect-similar.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-reflect-similar.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-reflect-similar.traps.argb32.ref.png
diff --git a/cairo/test/reference/record-extend-reflect-similar.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-reflect-similar.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-reflect-similar.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-reflect-similar.traps.rgb24.ref.png
diff --git a/cairo/test/reference/record-extend-reflect.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-reflect.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-reflect.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-reflect.base.argb32.ref.png
diff --git a/cairo/test/reference/record-extend-reflect.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-reflect.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-reflect.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-reflect.base.rgb24.ref.png
diff --git a/cairo/test/reference/record-extend-reflect.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-reflect.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-reflect.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-reflect.ref.png
diff --git a/cairo/test/reference/record-extend-repeat-similar.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-repeat-similar.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-repeat-similar.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-repeat-similar.base.argb32.ref.png
diff --git a/cairo/test/reference/record-extend-repeat-similar.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-repeat-similar.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-repeat-similar.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-repeat-similar.base.rgb24.ref.png
diff --git a/cairo/test/reference/record-extend-repeat-similar.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-repeat-similar.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-repeat-similar.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-repeat-similar.ref.png
diff --git a/cairo/test/reference/record-extend-repeat-similar.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-repeat-similar.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-repeat-similar.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-repeat-similar.traps.argb32.ref.png
diff --git a/cairo/test/reference/record-extend-repeat-similar.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-repeat-similar.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-repeat-similar.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-repeat-similar.traps.rgb24.ref.png
diff --git a/cairo/test/reference/record-extend-repeat.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-repeat.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-repeat.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-repeat.base.argb32.ref.png
diff --git a/cairo/test/reference/record-extend-repeat.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-repeat.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-repeat.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-repeat.base.rgb24.ref.png
diff --git a/cairo/test/reference/record-extend-repeat.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-extend-repeat.ref.png
similarity index 100%
rename from cairo/test/reference/record-extend-repeat.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-extend-repeat.ref.png
diff --git a/cairo/test/reference/record-fill-alpha.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-fill-alpha.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-fill-alpha.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-fill-alpha.base.argb32.ref.png
diff --git a/cairo/test/reference/record-fill-alpha.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-fill-alpha.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-fill-alpha.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-fill-alpha.base.rgb24.ref.png
diff --git a/cairo/test/reference/record-fill-alpha.base.xfail.png b/io2d/src/3rd-party/cairo/test/reference/record-fill-alpha.base.xfail.png
similarity index 100%
rename from cairo/test/reference/record-fill-alpha.base.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/record-fill-alpha.base.xfail.png
diff --git a/cairo/test/reference/record-fill-alpha.image16.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-fill-alpha.image16.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-fill-alpha.image16.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-fill-alpha.image16.rgb24.ref.png
diff --git a/cairo/test/reference/record-fill-alpha.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-fill-alpha.ref.png
similarity index 100%
rename from cairo/test/reference/record-fill-alpha.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-fill-alpha.ref.png
diff --git a/cairo/test/reference/record-fill-alpha.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-fill-alpha.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-fill-alpha.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-fill-alpha.traps.argb32.ref.png
diff --git a/cairo/test/reference/record-fill-alpha.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-fill-alpha.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-fill-alpha.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-fill-alpha.traps.rgb24.ref.png
diff --git a/cairo/test/reference/record-fill-alpha.xfail.png b/io2d/src/3rd-party/cairo/test/reference/record-fill-alpha.xfail.png
similarity index 100%
rename from cairo/test/reference/record-fill-alpha.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/record-fill-alpha.xfail.png
diff --git a/cairo/test/reference/record-mesh.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-mesh.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-mesh.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-mesh.base.argb32.ref.png
diff --git a/cairo/test/reference/record-mesh.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-mesh.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-mesh.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-mesh.base.rgb24.ref.png
diff --git a/cairo/test/reference/record-mesh.image16.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-mesh.image16.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-mesh.image16.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-mesh.image16.rgb24.ref.png
diff --git a/cairo/test/reference/record-mesh.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-mesh.ref.png
similarity index 100%
rename from cairo/test/reference/record-mesh.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-mesh.ref.png
diff --git a/cairo/test/reference/record-paint-alpha-clip-mask.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip-mask.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha-clip-mask.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip-mask.base.argb32.ref.png
diff --git a/cairo/test/reference/record-paint-alpha-clip-mask.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip-mask.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha-clip-mask.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip-mask.base.rgb24.ref.png
diff --git a/cairo/test/reference/record-paint-alpha-clip-mask.base.xfail.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip-mask.base.xfail.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha-clip-mask.base.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip-mask.base.xfail.png
diff --git a/cairo/test/reference/record-paint-alpha-clip-mask.image16.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip-mask.image16.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha-clip-mask.image16.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip-mask.image16.rgb24.ref.png
diff --git a/cairo/test/reference/record-paint-alpha-clip-mask.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip-mask.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha-clip-mask.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip-mask.ref.png
diff --git a/cairo/test/reference/record-paint-alpha-clip-mask.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip-mask.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha-clip-mask.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip-mask.traps.argb32.ref.png
diff --git a/cairo/test/reference/record-paint-alpha-clip-mask.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip-mask.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha-clip-mask.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip-mask.traps.rgb24.ref.png
diff --git a/cairo/test/reference/record-paint-alpha-clip-mask.xfail.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip-mask.xfail.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha-clip-mask.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip-mask.xfail.png
diff --git a/cairo/test/reference/record-paint-alpha-clip.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha-clip.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip.argb32.ref.png
diff --git a/cairo/test/reference/record-paint-alpha-clip.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha-clip.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip.base.argb32.ref.png
diff --git a/cairo/test/reference/record-paint-alpha-clip.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha-clip.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip.base.rgb24.ref.png
diff --git a/cairo/test/reference/record-paint-alpha-clip.image16.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip.image16.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha-clip.image16.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip.image16.rgb24.ref.png
diff --git a/cairo/test/reference/record-paint-alpha-clip.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha-clip.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip.rgb24.ref.png
diff --git a/cairo/test/reference/record-paint-alpha-clip.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha-clip.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip.traps.argb32.ref.png
diff --git a/cairo/test/reference/record-paint-alpha-clip.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha-clip.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-clip.traps.rgb24.ref.png
diff --git a/cairo/test/reference/record-paint-alpha-solid-clip.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-solid-clip.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha-solid-clip.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-solid-clip.base.argb32.ref.png
diff --git a/cairo/test/reference/record-paint-alpha-solid-clip.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-solid-clip.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha-solid-clip.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-solid-clip.base.rgb24.ref.png
diff --git a/cairo/test/reference/record-paint-alpha-solid-clip.image16.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-solid-clip.image16.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha-solid-clip.image16.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-solid-clip.image16.rgb24.ref.png
diff --git a/cairo/test/reference/record-paint-alpha-solid-clip.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-solid-clip.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha-solid-clip.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-solid-clip.ref.png
diff --git a/cairo/test/reference/record-paint-alpha-solid-clip.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-solid-clip.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha-solid-clip.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-solid-clip.traps.argb32.ref.png
diff --git a/cairo/test/reference/record-paint-alpha-solid-clip.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-solid-clip.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha-solid-clip.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha-solid-clip.traps.rgb24.ref.png
diff --git a/cairo/test/reference/record-paint-alpha.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha.base.argb32.ref.png
diff --git a/cairo/test/reference/record-paint-alpha.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha.base.rgb24.ref.png
diff --git a/cairo/test/reference/record-paint-alpha.image16.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha.image16.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha.image16.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha.image16.rgb24.ref.png
diff --git a/cairo/test/reference/record-paint-alpha.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint-alpha.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint-alpha.ref.png
diff --git a/cairo/test/reference/record-paint.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint.base.argb32.ref.png
diff --git a/cairo/test/reference/record-paint.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint.base.rgb24.ref.png
diff --git a/cairo/test/reference/record-paint.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-paint.ref.png
similarity index 100%
rename from cairo/test/reference/record-paint.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-paint.ref.png
diff --git a/cairo/test/reference/record-select-font-face.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-select-font-face.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-select-font-face.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-select-font-face.argb32.ref.png
diff --git a/cairo/test/reference/record-select-font-face.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-select-font-face.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-select-font-face.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-select-font-face.base.argb32.ref.png
diff --git a/cairo/test/reference/record-select-font-face.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-select-font-face.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-select-font-face.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-select-font-face.base.rgb24.ref.png
diff --git a/cairo/test/reference/record-select-font-face.image16.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-select-font-face.image16.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-select-font-face.image16.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-select-font-face.image16.rgb24.ref.png
diff --git a/cairo/test/reference/record-select-font-face.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-select-font-face.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-select-font-face.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-select-font-face.rgb24.ref.png
diff --git a/cairo/test/reference/record-select-font-face.xfail.png b/io2d/src/3rd-party/cairo/test/reference/record-select-font-face.xfail.png
similarity index 100%
rename from cairo/test/reference/record-select-font-face.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/record-select-font-face.xfail.png
diff --git a/cairo/test/reference/record-self-intersecting.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-self-intersecting.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-self-intersecting.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-self-intersecting.base.argb32.ref.png
diff --git a/cairo/test/reference/record-self-intersecting.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-self-intersecting.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-self-intersecting.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-self-intersecting.base.rgb24.ref.png
diff --git a/cairo/test/reference/record-self-intersecting.image16.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-self-intersecting.image16.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-self-intersecting.image16.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-self-intersecting.image16.rgb24.ref.png
diff --git a/cairo/test/reference/record-self-intersecting.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-self-intersecting.ref.png
similarity index 100%
rename from cairo/test/reference/record-self-intersecting.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-self-intersecting.ref.png
diff --git a/cairo/test/reference/record-text-transform.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-text-transform.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record-text-transform.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-text-transform.base.argb32.ref.png
diff --git a/cairo/test/reference/record-text-transform.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-text-transform.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-text-transform.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-text-transform.base.rgb24.ref.png
diff --git a/cairo/test/reference/record-text-transform.image16.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-text-transform.image16.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record-text-transform.image16.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-text-transform.image16.rgb24.ref.png
diff --git a/cairo/test/reference/record-text-transform.ref.png b/io2d/src/3rd-party/cairo/test/reference/record-text-transform.ref.png
similarity index 100%
rename from cairo/test/reference/record-text-transform.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record-text-transform.ref.png
diff --git a/cairo/test/reference/record1414x-fill-alpha.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-fill-alpha.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-fill-alpha.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-fill-alpha.base.argb32.ref.png
diff --git a/cairo/test/reference/record1414x-fill-alpha.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-fill-alpha.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-fill-alpha.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-fill-alpha.base.rgb24.ref.png
diff --git a/cairo/test/reference/record1414x-fill-alpha.base.xfail.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-fill-alpha.base.xfail.png
similarity index 100%
rename from cairo/test/reference/record1414x-fill-alpha.base.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-fill-alpha.base.xfail.png
diff --git a/cairo/test/reference/record1414x-fill-alpha.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-fill-alpha.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-fill-alpha.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-fill-alpha.ref.png
diff --git a/cairo/test/reference/record1414x-fill-alpha.xfail.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-fill-alpha.xfail.png
similarity index 100%
rename from cairo/test/reference/record1414x-fill-alpha.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-fill-alpha.xfail.png
diff --git a/cairo/test/reference/record1414x-paint-alpha-clip-mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-clip-mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-paint-alpha-clip-mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-clip-mask.argb32.ref.png
diff --git a/cairo/test/reference/record1414x-paint-alpha-clip-mask.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-clip-mask.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-paint-alpha-clip-mask.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-clip-mask.base.argb32.ref.png
diff --git a/cairo/test/reference/record1414x-paint-alpha-clip-mask.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-clip-mask.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-paint-alpha-clip-mask.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-clip-mask.base.rgb24.ref.png
diff --git a/cairo/test/reference/record1414x-paint-alpha-clip-mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-clip-mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-paint-alpha-clip-mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-clip-mask.rgb24.ref.png
diff --git a/cairo/test/reference/record1414x-paint-alpha-clip.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-clip.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-paint-alpha-clip.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-clip.argb32.ref.png
diff --git a/cairo/test/reference/record1414x-paint-alpha-clip.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-clip.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-paint-alpha-clip.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-clip.base.argb32.ref.png
diff --git a/cairo/test/reference/record1414x-paint-alpha-clip.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-clip.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-paint-alpha-clip.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-clip.base.rgb24.ref.png
diff --git a/cairo/test/reference/record1414x-paint-alpha-clip.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-clip.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-paint-alpha-clip.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-clip.rgb24.ref.png
diff --git a/cairo/test/reference/record1414x-paint-alpha-solid-clip.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-solid-clip.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-paint-alpha-solid-clip.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-solid-clip.argb32.ref.png
diff --git a/cairo/test/reference/record1414x-paint-alpha-solid-clip.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-solid-clip.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-paint-alpha-solid-clip.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-solid-clip.base.argb32.ref.png
diff --git a/cairo/test/reference/record1414x-paint-alpha-solid-clip.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-solid-clip.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-paint-alpha-solid-clip.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-solid-clip.base.rgb24.ref.png
diff --git a/cairo/test/reference/record1414x-paint-alpha-solid-clip.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-solid-clip.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-paint-alpha-solid-clip.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha-solid-clip.rgb24.ref.png
diff --git a/cairo/test/reference/record1414x-paint-alpha.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-paint-alpha.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha.argb32.ref.png
diff --git a/cairo/test/reference/record1414x-paint-alpha.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-paint-alpha.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha.base.argb32.ref.png
diff --git a/cairo/test/reference/record1414x-paint-alpha.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-paint-alpha.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha.base.rgb24.ref.png
diff --git a/cairo/test/reference/record1414x-paint-alpha.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-paint-alpha.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-paint-alpha.rgb24.ref.png
diff --git a/cairo/test/reference/record1414x-paint.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-paint.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-paint.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-paint.argb32.ref.png
diff --git a/cairo/test/reference/record1414x-paint.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-paint.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-paint.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-paint.base.argb32.ref.png
diff --git a/cairo/test/reference/record1414x-paint.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-paint.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-paint.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-paint.base.rgb24.ref.png
diff --git a/cairo/test/reference/record1414x-paint.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-paint.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-paint.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-paint.rgb24.ref.png
diff --git a/cairo/test/reference/record1414x-select-font-face.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-select-font-face.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-select-font-face.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-select-font-face.argb32.ref.png
diff --git a/cairo/test/reference/record1414x-select-font-face.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-select-font-face.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-select-font-face.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-select-font-face.base.argb32.ref.png
diff --git a/cairo/test/reference/record1414x-select-font-face.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-select-font-face.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-select-font-face.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-select-font-face.base.rgb24.ref.png
diff --git a/cairo/test/reference/record1414x-select-font-face.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-select-font-face.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-select-font-face.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-select-font-face.rgb24.ref.png
diff --git a/cairo/test/reference/record1414x-self-intersecting.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-self-intersecting.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-self-intersecting.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-self-intersecting.argb32.ref.png
diff --git a/cairo/test/reference/record1414x-self-intersecting.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-self-intersecting.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-self-intersecting.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-self-intersecting.base.argb32.ref.png
diff --git a/cairo/test/reference/record1414x-self-intersecting.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-self-intersecting.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-self-intersecting.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-self-intersecting.base.rgb24.ref.png
diff --git a/cairo/test/reference/record1414x-self-intersecting.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-self-intersecting.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-self-intersecting.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-self-intersecting.rgb24.ref.png
diff --git a/cairo/test/reference/record1414x-text-transform.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-text-transform.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-text-transform.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-text-transform.base.argb32.ref.png
diff --git a/cairo/test/reference/record1414x-text-transform.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-text-transform.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-text-transform.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-text-transform.base.rgb24.ref.png
diff --git a/cairo/test/reference/record1414x-text-transform.ref.png b/io2d/src/3rd-party/cairo/test/reference/record1414x-text-transform.ref.png
similarity index 100%
rename from cairo/test/reference/record1414x-text-transform.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record1414x-text-transform.ref.png
diff --git a/cairo/test/reference/record2x-fill-alpha.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-fill-alpha.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-fill-alpha.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-fill-alpha.base.argb32.ref.png
diff --git a/cairo/test/reference/record2x-fill-alpha.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-fill-alpha.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-fill-alpha.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-fill-alpha.base.rgb24.ref.png
diff --git a/cairo/test/reference/record2x-fill-alpha.base.xfail.png b/io2d/src/3rd-party/cairo/test/reference/record2x-fill-alpha.base.xfail.png
similarity index 100%
rename from cairo/test/reference/record2x-fill-alpha.base.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-fill-alpha.base.xfail.png
diff --git a/cairo/test/reference/record2x-fill-alpha.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-fill-alpha.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-fill-alpha.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-fill-alpha.ref.png
diff --git a/cairo/test/reference/record2x-fill-alpha.xfail.png b/io2d/src/3rd-party/cairo/test/reference/record2x-fill-alpha.xfail.png
similarity index 100%
rename from cairo/test/reference/record2x-fill-alpha.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-fill-alpha.xfail.png
diff --git a/cairo/test/reference/record2x-paint-alpha-clip-mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-clip-mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-paint-alpha-clip-mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-clip-mask.argb32.ref.png
diff --git a/cairo/test/reference/record2x-paint-alpha-clip-mask.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-clip-mask.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-paint-alpha-clip-mask.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-clip-mask.base.argb32.ref.png
diff --git a/cairo/test/reference/record2x-paint-alpha-clip-mask.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-clip-mask.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-paint-alpha-clip-mask.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-clip-mask.base.rgb24.ref.png
diff --git a/cairo/test/reference/record2x-paint-alpha-clip-mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-clip-mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-paint-alpha-clip-mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-clip-mask.rgb24.ref.png
diff --git a/cairo/test/reference/record2x-paint-alpha-clip.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-clip.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-paint-alpha-clip.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-clip.argb32.ref.png
diff --git a/cairo/test/reference/record2x-paint-alpha-clip.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-clip.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-paint-alpha-clip.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-clip.base.argb32.ref.png
diff --git a/cairo/test/reference/record2x-paint-alpha-clip.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-clip.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-paint-alpha-clip.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-clip.base.rgb24.ref.png
diff --git a/cairo/test/reference/record2x-paint-alpha-clip.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-clip.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-paint-alpha-clip.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-clip.rgb24.ref.png
diff --git a/cairo/test/reference/record2x-paint-alpha-solid-clip.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-solid-clip.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-paint-alpha-solid-clip.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-solid-clip.argb32.ref.png
diff --git a/cairo/test/reference/record2x-paint-alpha-solid-clip.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-solid-clip.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-paint-alpha-solid-clip.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-solid-clip.base.argb32.ref.png
diff --git a/cairo/test/reference/record2x-paint-alpha-solid-clip.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-solid-clip.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-paint-alpha-solid-clip.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-solid-clip.base.rgb24.ref.png
diff --git a/cairo/test/reference/record2x-paint-alpha-solid-clip.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-solid-clip.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-paint-alpha-solid-clip.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha-solid-clip.rgb24.ref.png
diff --git a/cairo/test/reference/record2x-paint-alpha.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-paint-alpha.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha.argb32.ref.png
diff --git a/cairo/test/reference/record2x-paint-alpha.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-paint-alpha.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha.base.argb32.ref.png
diff --git a/cairo/test/reference/record2x-paint-alpha.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-paint-alpha.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha.base.rgb24.ref.png
diff --git a/cairo/test/reference/record2x-paint-alpha.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-paint-alpha.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-paint-alpha.rgb24.ref.png
diff --git a/cairo/test/reference/record2x-paint.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-paint.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-paint.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-paint.argb32.ref.png
diff --git a/cairo/test/reference/record2x-paint.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-paint.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-paint.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-paint.base.argb32.ref.png
diff --git a/cairo/test/reference/record2x-paint.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-paint.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-paint.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-paint.base.rgb24.ref.png
diff --git a/cairo/test/reference/record2x-paint.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-paint.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-paint.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-paint.rgb24.ref.png
diff --git a/cairo/test/reference/record2x-select-font-face.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-select-font-face.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-select-font-face.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-select-font-face.argb32.ref.png
diff --git a/cairo/test/reference/record2x-select-font-face.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-select-font-face.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-select-font-face.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-select-font-face.base.argb32.ref.png
diff --git a/cairo/test/reference/record2x-select-font-face.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-select-font-face.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-select-font-face.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-select-font-face.base.rgb24.ref.png
diff --git a/cairo/test/reference/record2x-select-font-face.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-select-font-face.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-select-font-face.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-select-font-face.rgb24.ref.png
diff --git a/cairo/test/reference/record2x-self-intersecting.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-self-intersecting.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-self-intersecting.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-self-intersecting.argb32.ref.png
diff --git a/cairo/test/reference/record2x-self-intersecting.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-self-intersecting.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-self-intersecting.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-self-intersecting.base.argb32.ref.png
diff --git a/cairo/test/reference/record2x-self-intersecting.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-self-intersecting.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-self-intersecting.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-self-intersecting.base.rgb24.ref.png
diff --git a/cairo/test/reference/record2x-self-intersecting.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-self-intersecting.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-self-intersecting.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-self-intersecting.rgb24.ref.png
diff --git a/cairo/test/reference/record2x-text-transform.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-text-transform.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-text-transform.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-text-transform.base.argb32.ref.png
diff --git a/cairo/test/reference/record2x-text-transform.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-text-transform.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-text-transform.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-text-transform.base.rgb24.ref.png
diff --git a/cairo/test/reference/record2x-text-transform.ref.png b/io2d/src/3rd-party/cairo/test/reference/record2x-text-transform.ref.png
similarity index 100%
rename from cairo/test/reference/record2x-text-transform.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record2x-text-transform.ref.png
diff --git a/cairo/test/reference/record90-fill-alpha.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-fill-alpha.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record90-fill-alpha.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-fill-alpha.base.argb32.ref.png
diff --git a/cairo/test/reference/record90-fill-alpha.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-fill-alpha.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record90-fill-alpha.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-fill-alpha.base.rgb24.ref.png
diff --git a/cairo/test/reference/record90-fill-alpha.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-fill-alpha.ref.png
similarity index 100%
rename from cairo/test/reference/record90-fill-alpha.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-fill-alpha.ref.png
diff --git a/cairo/test/reference/record90-fill-alpha.xfail.png b/io2d/src/3rd-party/cairo/test/reference/record90-fill-alpha.xfail.png
similarity index 100%
rename from cairo/test/reference/record90-fill-alpha.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-fill-alpha.xfail.png
diff --git a/cairo/test/reference/record90-paint-alpha-clip-mask.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-clip-mask.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record90-paint-alpha-clip-mask.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-clip-mask.base.argb32.ref.png
diff --git a/cairo/test/reference/record90-paint-alpha-clip-mask.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-clip-mask.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record90-paint-alpha-clip-mask.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-clip-mask.base.rgb24.ref.png
diff --git a/cairo/test/reference/record90-paint-alpha-clip-mask.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-clip-mask.ref.png
similarity index 100%
rename from cairo/test/reference/record90-paint-alpha-clip-mask.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-clip-mask.ref.png
diff --git a/cairo/test/reference/record90-paint-alpha-clip-mask.xfail.png b/io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-clip-mask.xfail.png
similarity index 100%
rename from cairo/test/reference/record90-paint-alpha-clip-mask.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-clip-mask.xfail.png
diff --git a/cairo/test/reference/record90-paint-alpha-clip.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-clip.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record90-paint-alpha-clip.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-clip.base.argb32.ref.png
diff --git a/cairo/test/reference/record90-paint-alpha-clip.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-clip.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record90-paint-alpha-clip.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-clip.base.rgb24.ref.png
diff --git a/cairo/test/reference/record90-paint-alpha-clip.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-clip.ref.png
similarity index 100%
rename from cairo/test/reference/record90-paint-alpha-clip.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-clip.ref.png
diff --git a/cairo/test/reference/record90-paint-alpha-clip.xfail.png b/io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-clip.xfail.png
similarity index 100%
rename from cairo/test/reference/record90-paint-alpha-clip.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-clip.xfail.png
diff --git a/cairo/test/reference/record90-paint-alpha-solid-clip.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-solid-clip.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record90-paint-alpha-solid-clip.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-solid-clip.argb32.ref.png
diff --git a/cairo/test/reference/record90-paint-alpha-solid-clip.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-solid-clip.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record90-paint-alpha-solid-clip.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-solid-clip.base.argb32.ref.png
diff --git a/cairo/test/reference/record90-paint-alpha-solid-clip.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-solid-clip.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record90-paint-alpha-solid-clip.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-solid-clip.base.rgb24.ref.png
diff --git a/cairo/test/reference/record90-paint-alpha-solid-clip.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-solid-clip.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record90-paint-alpha-solid-clip.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha-solid-clip.rgb24.ref.png
diff --git a/cairo/test/reference/record90-paint-alpha.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record90-paint-alpha.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha.argb32.ref.png
diff --git a/cairo/test/reference/record90-paint-alpha.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record90-paint-alpha.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha.base.argb32.ref.png
diff --git a/cairo/test/reference/record90-paint-alpha.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record90-paint-alpha.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha.base.rgb24.ref.png
diff --git a/cairo/test/reference/record90-paint-alpha.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record90-paint-alpha.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-paint-alpha.rgb24.ref.png
diff --git a/cairo/test/reference/record90-paint.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-paint.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record90-paint.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-paint.argb32.ref.png
diff --git a/cairo/test/reference/record90-paint.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-paint.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record90-paint.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-paint.base.argb32.ref.png
diff --git a/cairo/test/reference/record90-paint.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-paint.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record90-paint.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-paint.base.rgb24.ref.png
diff --git a/cairo/test/reference/record90-paint.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-paint.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record90-paint.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-paint.rgb24.ref.png
diff --git a/cairo/test/reference/record90-select-font-face.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-select-font-face.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record90-select-font-face.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-select-font-face.argb32.ref.png
diff --git a/cairo/test/reference/record90-select-font-face.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-select-font-face.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record90-select-font-face.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-select-font-face.base.argb32.ref.png
diff --git a/cairo/test/reference/record90-select-font-face.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-select-font-face.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record90-select-font-face.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-select-font-face.base.rgb24.ref.png
diff --git a/cairo/test/reference/record90-select-font-face.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-select-font-face.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record90-select-font-face.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-select-font-face.rgb24.ref.png
diff --git a/cairo/test/reference/record90-self-intersecting.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-self-intersecting.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record90-self-intersecting.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-self-intersecting.base.argb32.ref.png
diff --git a/cairo/test/reference/record90-self-intersecting.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-self-intersecting.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record90-self-intersecting.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-self-intersecting.base.rgb24.ref.png
diff --git a/cairo/test/reference/record90-self-intersecting.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-self-intersecting.ref.png
similarity index 100%
rename from cairo/test/reference/record90-self-intersecting.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-self-intersecting.ref.png
diff --git a/cairo/test/reference/record90-text-transform.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-text-transform.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/record90-text-transform.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-text-transform.base.argb32.ref.png
diff --git a/cairo/test/reference/record90-text-transform.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-text-transform.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/record90-text-transform.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-text-transform.base.rgb24.ref.png
diff --git a/cairo/test/reference/record90-text-transform.ref.png b/io2d/src/3rd-party/cairo/test/reference/record90-text-transform.ref.png
similarity index 100%
rename from cairo/test/reference/record90-text-transform.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/record90-text-transform.ref.png
diff --git a/cairo/test/reference/recordflip-fill-alpha.ref.png b/io2d/src/3rd-party/cairo/test/reference/recordflip-fill-alpha.ref.png
similarity index 100%
rename from cairo/test/reference/recordflip-fill-alpha.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recordflip-fill-alpha.ref.png
diff --git a/cairo/test/reference/recordflip-paint-alpha-clip-mask.ref.png b/io2d/src/3rd-party/cairo/test/reference/recordflip-paint-alpha-clip-mask.ref.png
similarity index 100%
rename from cairo/test/reference/recordflip-paint-alpha-clip-mask.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recordflip-paint-alpha-clip-mask.ref.png
diff --git a/cairo/test/reference/recordflip-paint-alpha-clip.ref.png b/io2d/src/3rd-party/cairo/test/reference/recordflip-paint-alpha-clip.ref.png
similarity index 100%
rename from cairo/test/reference/recordflip-paint-alpha-clip.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recordflip-paint-alpha-clip.ref.png
diff --git a/cairo/test/reference/recordflip-paint-alpha-solid-clip.ref.png b/io2d/src/3rd-party/cairo/test/reference/recordflip-paint-alpha-solid-clip.ref.png
similarity index 100%
rename from cairo/test/reference/recordflip-paint-alpha-solid-clip.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recordflip-paint-alpha-solid-clip.ref.png
diff --git a/cairo/test/reference/recordflip-paint-alpha.ref.png b/io2d/src/3rd-party/cairo/test/reference/recordflip-paint-alpha.ref.png
similarity index 100%
rename from cairo/test/reference/recordflip-paint-alpha.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recordflip-paint-alpha.ref.png
diff --git a/cairo/test/reference/recordflip-paint.ref.png b/io2d/src/3rd-party/cairo/test/reference/recordflip-paint.ref.png
similarity index 100%
rename from cairo/test/reference/recordflip-paint.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recordflip-paint.ref.png
diff --git a/cairo/test/reference/recordflip-select-font-face.ref.png b/io2d/src/3rd-party/cairo/test/reference/recordflip-select-font-face.ref.png
similarity index 100%
rename from cairo/test/reference/recordflip-select-font-face.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recordflip-select-font-face.ref.png
diff --git a/cairo/test/reference/recordflip-self-intersecting.ref.png b/io2d/src/3rd-party/cairo/test/reference/recordflip-self-intersecting.ref.png
similarity index 100%
rename from cairo/test/reference/recordflip-self-intersecting.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recordflip-self-intersecting.ref.png
diff --git a/cairo/test/reference/recordflip-text-transform.ref.png b/io2d/src/3rd-party/cairo/test/reference/recordflip-text-transform.ref.png
similarity index 100%
rename from cairo/test/reference/recordflip-text-transform.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recordflip-text-transform.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-none.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-none.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-none.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-none.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-none.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-none.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-none.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-none.base.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-none.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-none.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-none.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-none.base.rgb24.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-none.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-none.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-none.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-none.rgb24.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-none.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-none.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-none.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-none.traps.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-none.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-none.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-none.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-none.traps.rgb24.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-pad.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-pad.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-pad.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-pad.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-pad.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-pad.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-pad.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-pad.base.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-pad.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-pad.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-pad.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-pad.base.rgb24.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-pad.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-pad.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-pad.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-pad.rgb24.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-pad.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-pad.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-pad.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-pad.traps.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-pad.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-pad.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-pad.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-pad.traps.rgb24.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-reflect.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-reflect.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-reflect.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-reflect.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-reflect.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-reflect.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-reflect.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-reflect.base.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-reflect.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-reflect.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-reflect.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-reflect.base.rgb24.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-reflect.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-reflect.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-reflect.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-reflect.rgb24.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-reflect.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-reflect.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-reflect.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-reflect.traps.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-reflect.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-reflect.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-reflect.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-reflect.traps.rgb24.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-repeat.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-repeat.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-repeat.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-repeat.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-repeat.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-repeat.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-repeat.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-repeat.base.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-repeat.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-repeat.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-repeat.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-repeat.base.rgb24.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-repeat.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-repeat.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-repeat.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-repeat.rgb24.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-repeat.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-repeat.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-repeat.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-repeat.traps.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-extend-repeat.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-repeat.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-extend-repeat.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-extend-repeat.traps.rgb24.ref.png
diff --git a/cairo/test/reference/recording-surface-over.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-over.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-over.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-over.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-over.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-over.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-over.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-over.base.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-over.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-over.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-over.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-over.base.rgb24.ref.png
diff --git a/cairo/test/reference/recording-surface-over.gl.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-over.gl.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-over.gl.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-over.gl.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-over.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-over.image16.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-over.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-over.image16.ref.png
diff --git a/cairo/test/reference/recording-surface-over.pdf.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-over.pdf.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-over.pdf.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-over.pdf.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-over.pdf.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-over.pdf.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-over.pdf.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-over.pdf.rgb24.ref.png
diff --git a/cairo/test/reference/recording-surface-over.ps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-over.ps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-over.ps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-over.ps.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-over.ps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-over.ps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-over.ps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-over.ps.rgb24.ref.png
diff --git a/cairo/test/reference/recording-surface-over.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-over.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-over.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-over.quartz.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-over.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-over.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-over.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-over.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/recording-surface-over.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-over.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-over.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-over.rgb24.ref.png
diff --git a/cairo/test/reference/recording-surface-over.svg.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-over.svg.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-over.svg.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-over.svg.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-over.svg.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-over.svg.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-over.svg.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-over.svg.rgb24.ref.png
diff --git a/cairo/test/reference/recording-surface-over.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-over.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-over.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-over.traps.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-over.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-over.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-over.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-over.traps.rgb24.ref.png
diff --git a/cairo/test/reference/recording-surface-source.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-source.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-source.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-source.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-source.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-source.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-source.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-source.base.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-source.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-source.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-source.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-source.base.rgb24.ref.png
diff --git a/cairo/test/reference/recording-surface-source.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-source.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-source.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-source.rgb24.ref.png
diff --git a/cairo/test/reference/recording-surface-source.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-source.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-source.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-source.traps.argb32.ref.png
diff --git a/cairo/test/reference/recording-surface-source.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/recording-surface-source.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/recording-surface-source.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/recording-surface-source.traps.rgb24.ref.png
diff --git a/cairo/test/reference/rectangle-rounding-error.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectangle-rounding-error.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rectangle-rounding-error.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectangle-rounding-error.base.argb32.ref.png
diff --git a/cairo/test/reference/rectangle-rounding-error.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectangle-rounding-error.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rectangle-rounding-error.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectangle-rounding-error.base.rgb24.ref.png
diff --git a/cairo/test/reference/rectangle-rounding-error.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectangle-rounding-error.ref.png
similarity index 100%
rename from cairo/test/reference/rectangle-rounding-error.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectangle-rounding-error.ref.png
diff --git a/cairo/test/reference/rectilinear-dash-scale-unaligned.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-dash-scale-unaligned.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-dash-scale-unaligned.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-dash-scale-unaligned.ref.png
diff --git a/cairo/test/reference/rectilinear-dash-scale-unaligned.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-dash-scale-unaligned.traps.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-dash-scale-unaligned.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-dash-scale-unaligned.traps.ref.png
diff --git a/cairo/test/reference/rectilinear-dash-scale.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-dash-scale.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-dash-scale.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-dash-scale.ref.png
diff --git a/cairo/test/reference/rectilinear-dash.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-dash.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-dash.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-dash.base.argb32.ref.png
diff --git a/cairo/test/reference/rectilinear-dash.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-dash.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-dash.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-dash.base.rgb24.ref.png
diff --git a/cairo/test/reference/rectilinear-dash.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-dash.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-dash.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-dash.mask.argb32.ref.png
diff --git a/cairo/test/reference/rectilinear-dash.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-dash.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-dash.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-dash.mask.rgb24.ref.png
diff --git a/cairo/test/reference/rectilinear-dash.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-dash.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/rectilinear-dash.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-dash.quartz.xfail.png
diff --git a/cairo/test/reference/rectilinear-dash.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-dash.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-dash.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-dash.ref.png
diff --git a/cairo/test/reference/rectilinear-dash.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-dash.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-dash.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-dash.traps.argb32.ref.png
diff --git a/cairo/test/reference/rectilinear-dash.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-dash.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-dash.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-dash.traps.rgb24.ref.png
diff --git a/cairo/test/reference/rectilinear-fill.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-fill.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-fill.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-fill.base.argb32.ref.png
diff --git a/cairo/test/reference/rectilinear-fill.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-fill.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-fill.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-fill.base.rgb24.ref.png
diff --git a/cairo/test/reference/rectilinear-fill.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-fill.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-fill.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-fill.ref.png
diff --git a/cairo/test/reference/rectilinear-grid.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-grid.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-grid.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-grid.base.argb32.ref.png
diff --git a/cairo/test/reference/rectilinear-grid.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-grid.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-grid.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-grid.base.rgb24.ref.png
diff --git a/cairo/test/reference/rectilinear-grid.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-grid.image16.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-grid.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-grid.image16.ref.png
diff --git a/cairo/test/reference/rectilinear-grid.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-grid.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-grid.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-grid.ref.png
diff --git a/cairo/test/reference/rectilinear-grid.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-grid.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-grid.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-grid.traps.argb32.ref.png
diff --git a/cairo/test/reference/rectilinear-grid.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-grid.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-grid.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-grid.traps.rgb24.ref.png
diff --git a/cairo/test/reference/rectilinear-miter-limit.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-miter-limit.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-miter-limit.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-miter-limit.argb32.ref.png
diff --git a/cairo/test/reference/rectilinear-miter-limit.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-miter-limit.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-miter-limit.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-miter-limit.base.argb32.ref.png
diff --git a/cairo/test/reference/rectilinear-miter-limit.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-miter-limit.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-miter-limit.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-miter-limit.base.rgb24.ref.png
diff --git a/cairo/test/reference/rectilinear-miter-limit.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-miter-limit.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-miter-limit.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-miter-limit.ps2.ref.png
diff --git a/cairo/test/reference/rectilinear-miter-limit.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-miter-limit.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-miter-limit.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-miter-limit.ps3.ref.png
diff --git a/cairo/test/reference/rectilinear-miter-limit.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-miter-limit.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-miter-limit.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-miter-limit.rgb24.ref.png
diff --git a/cairo/test/reference/rectilinear-miter-limit.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-miter-limit.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-miter-limit.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-miter-limit.traps.argb32.ref.png
diff --git a/cairo/test/reference/rectilinear-miter-limit.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-miter-limit.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-miter-limit.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-miter-limit.traps.rgb24.ref.png
diff --git a/cairo/test/reference/rectilinear-stroke.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-stroke.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-stroke.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-stroke.base.argb32.ref.png
diff --git a/cairo/test/reference/rectilinear-stroke.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-stroke.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-stroke.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-stroke.base.rgb24.ref.png
diff --git a/cairo/test/reference/rectilinear-stroke.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-stroke.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/rectilinear-stroke.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-stroke.quartz.xfail.png
diff --git a/cairo/test/reference/rectilinear-stroke.ref.png b/io2d/src/3rd-party/cairo/test/reference/rectilinear-stroke.ref.png
similarity index 100%
rename from cairo/test/reference/rectilinear-stroke.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rectilinear-stroke.ref.png
diff --git a/cairo/test/reference/reflected-stroke.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/reflected-stroke.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/reflected-stroke.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/reflected-stroke.base.argb32.ref.png
diff --git a/cairo/test/reference/reflected-stroke.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/reflected-stroke.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/reflected-stroke.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/reflected-stroke.base.rgb24.ref.png
diff --git a/cairo/test/reference/reflected-stroke.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/reflected-stroke.image16.ref.png
similarity index 100%
rename from cairo/test/reference/reflected-stroke.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/reflected-stroke.image16.ref.png
diff --git a/cairo/test/reference/reflected-stroke.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/reflected-stroke.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/reflected-stroke.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/reflected-stroke.mask.argb32.ref.png
diff --git a/cairo/test/reference/reflected-stroke.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/reflected-stroke.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/reflected-stroke.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/reflected-stroke.mask.rgb24.ref.png
diff --git a/cairo/test/reference/reflected-stroke.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/reflected-stroke.ps.ref.png
similarity index 100%
rename from cairo/test/reference/reflected-stroke.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/reflected-stroke.ps.ref.png
diff --git a/cairo/test/reference/reflected-stroke.ref.png b/io2d/src/3rd-party/cairo/test/reference/reflected-stroke.ref.png
similarity index 100%
rename from cairo/test/reference/reflected-stroke.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/reflected-stroke.ref.png
diff --git a/cairo/test/reference/reflected-stroke.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/reflected-stroke.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/reflected-stroke.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/reflected-stroke.traps.argb32.ref.png
diff --git a/cairo/test/reference/reflected-stroke.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/reflected-stroke.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/reflected-stroke.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/reflected-stroke.traps.rgb24.ref.png
diff --git a/cairo/test/reference/rel-path.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rel-path.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rel-path.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rel-path.argb32.ref.png
diff --git a/cairo/test/reference/rel-path.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rel-path.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rel-path.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rel-path.base.argb32.ref.png
diff --git a/cairo/test/reference/rel-path.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rel-path.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rel-path.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rel-path.base.rgb24.ref.png
diff --git a/cairo/test/reference/rel-path.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rel-path.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rel-path.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rel-path.mask.rgb24.ref.png
diff --git a/cairo/test/reference/rel-path.ps2.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rel-path.ps2.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rel-path.ps2.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rel-path.ps2.rgb24.ref.png
diff --git a/cairo/test/reference/rel-path.ps3.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rel-path.ps3.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rel-path.ps3.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rel-path.ps3.rgb24.ref.png
diff --git a/cairo/test/reference/rel-path.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rel-path.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rel-path.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rel-path.rgb24.ref.png
diff --git a/cairo/test/reference/rel-path.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rel-path.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rel-path.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rel-path.traps.argb32.ref.png
diff --git a/cairo/test/reference/rel-path.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rel-path.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rel-path.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rel-path.traps.rgb24.ref.png
diff --git a/cairo/test/reference/rgb24-ignore-alpha.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rgb24-ignore-alpha.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rgb24-ignore-alpha.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rgb24-ignore-alpha.base.argb32.ref.png
diff --git a/cairo/test/reference/rgb24-ignore-alpha.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rgb24-ignore-alpha.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rgb24-ignore-alpha.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rgb24-ignore-alpha.base.rgb24.ref.png
diff --git a/cairo/test/reference/rgb24-ignore-alpha.ref.png b/io2d/src/3rd-party/cairo/test/reference/rgb24-ignore-alpha.ref.png
similarity index 100%
rename from cairo/test/reference/rgb24-ignore-alpha.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rgb24-ignore-alpha.ref.png
diff --git a/cairo/test/reference/rotate-clip-image-surface-paint.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotate-clip-image-surface-paint.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rotate-clip-image-surface-paint.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotate-clip-image-surface-paint.argb32.ref.png
diff --git a/cairo/test/reference/rotate-clip-image-surface-paint.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotate-clip-image-surface-paint.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rotate-clip-image-surface-paint.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotate-clip-image-surface-paint.base.argb32.ref.png
diff --git a/cairo/test/reference/rotate-clip-image-surface-paint.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotate-clip-image-surface-paint.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rotate-clip-image-surface-paint.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotate-clip-image-surface-paint.base.rgb24.ref.png
diff --git a/cairo/test/reference/rotate-clip-image-surface-paint.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotate-clip-image-surface-paint.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rotate-clip-image-surface-paint.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotate-clip-image-surface-paint.rgb24.ref.png
diff --git a/cairo/test/reference/rotate-clip-image-surface-paint.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotate-clip-image-surface-paint.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rotate-clip-image-surface-paint.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotate-clip-image-surface-paint.traps.argb32.ref.png
diff --git a/cairo/test/reference/rotate-clip-image-surface-paint.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotate-clip-image-surface-paint.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rotate-clip-image-surface-paint.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotate-clip-image-surface-paint.traps.rgb24.ref.png
diff --git a/cairo/test/reference/rotate-clip-image-surface-paint.xlib-fallback.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotate-clip-image-surface-paint.xlib-fallback.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rotate-clip-image-surface-paint.xlib-fallback.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotate-clip-image-surface-paint.xlib-fallback.rgb24.ref.png
diff --git a/cairo/test/reference/rotate-clip-image-surface-paint.xlib-window.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotate-clip-image-surface-paint.xlib-window.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rotate-clip-image-surface-paint.xlib-window.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotate-clip-image-surface-paint.xlib-window.rgb24.ref.png
diff --git a/cairo/test/reference/rotate-image-surface-paint.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotate-image-surface-paint.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rotate-image-surface-paint.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotate-image-surface-paint.base.argb32.ref.png
diff --git a/cairo/test/reference/rotate-image-surface-paint.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotate-image-surface-paint.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rotate-image-surface-paint.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotate-image-surface-paint.base.rgb24.ref.png
diff --git a/cairo/test/reference/rotate-image-surface-paint.pdf.xfail.png b/io2d/src/3rd-party/cairo/test/reference/rotate-image-surface-paint.pdf.xfail.png
similarity index 100%
rename from cairo/test/reference/rotate-image-surface-paint.pdf.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/rotate-image-surface-paint.pdf.xfail.png
diff --git a/cairo/test/reference/rotate-image-surface-paint.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotate-image-surface-paint.ps.ref.png
similarity index 100%
rename from cairo/test/reference/rotate-image-surface-paint.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotate-image-surface-paint.ps.ref.png
diff --git a/cairo/test/reference/rotate-image-surface-paint.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotate-image-surface-paint.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/rotate-image-surface-paint.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotate-image-surface-paint.quartz.ref.png
diff --git a/cairo/test/reference/rotate-image-surface-paint.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotate-image-surface-paint.ref.png
similarity index 100%
rename from cairo/test/reference/rotate-image-surface-paint.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotate-image-surface-paint.ref.png
diff --git a/cairo/test/reference/rotate-image-surface-paint.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotate-image-surface-paint.svg.ref.png
similarity index 100%
rename from cairo/test/reference/rotate-image-surface-paint.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotate-image-surface-paint.svg.ref.png
diff --git a/cairo/test/reference/rotate-image-surface-paint.svg.xfail.png b/io2d/src/3rd-party/cairo/test/reference/rotate-image-surface-paint.svg.xfail.png
similarity index 100%
rename from cairo/test/reference/rotate-image-surface-paint.svg.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/rotate-image-surface-paint.svg.xfail.png
diff --git a/cairo/test/reference/rotated-clip.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotated-clip.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rotated-clip.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotated-clip.argb32.ref.png
diff --git a/cairo/test/reference/rotated-clip.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotated-clip.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rotated-clip.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotated-clip.base.argb32.ref.png
diff --git a/cairo/test/reference/rotated-clip.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotated-clip.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rotated-clip.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotated-clip.base.rgb24.ref.png
diff --git a/cairo/test/reference/rotated-clip.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotated-clip.image16.ref.png
similarity index 100%
rename from cairo/test/reference/rotated-clip.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotated-clip.image16.ref.png
diff --git a/cairo/test/reference/rotated-clip.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotated-clip.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rotated-clip.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotated-clip.mask.argb32.ref.png
diff --git a/cairo/test/reference/rotated-clip.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotated-clip.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rotated-clip.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotated-clip.mask.rgb24.ref.png
diff --git a/cairo/test/reference/rotated-clip.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotated-clip.ps.ref.png
similarity index 100%
rename from cairo/test/reference/rotated-clip.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotated-clip.ps.ref.png
diff --git a/cairo/test/reference/rotated-clip.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotated-clip.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/rotated-clip.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotated-clip.quartz.ref.png
diff --git a/cairo/test/reference/rotated-clip.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotated-clip.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rotated-clip.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotated-clip.rgb24.ref.png
diff --git a/cairo/test/reference/rotated-clip.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotated-clip.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rotated-clip.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotated-clip.traps.argb32.ref.png
diff --git a/cairo/test/reference/rotated-clip.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rotated-clip.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rotated-clip.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rotated-clip.traps.rgb24.ref.png
diff --git a/cairo/test/reference/rounded-rectangle-fill.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-fill.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rounded-rectangle-fill.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-fill.argb32.ref.png
diff --git a/cairo/test/reference/rounded-rectangle-fill.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-fill.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rounded-rectangle-fill.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-fill.base.argb32.ref.png
diff --git a/cairo/test/reference/rounded-rectangle-fill.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-fill.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rounded-rectangle-fill.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-fill.base.rgb24.ref.png
diff --git a/cairo/test/reference/rounded-rectangle-fill.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-fill.image16.ref.png
similarity index 100%
rename from cairo/test/reference/rounded-rectangle-fill.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-fill.image16.ref.png
diff --git a/cairo/test/reference/rounded-rectangle-fill.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-fill.ps.ref.png
similarity index 100%
rename from cairo/test/reference/rounded-rectangle-fill.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-fill.ps.ref.png
diff --git a/cairo/test/reference/rounded-rectangle-fill.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-fill.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/rounded-rectangle-fill.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-fill.quartz.ref.png
diff --git a/cairo/test/reference/rounded-rectangle-fill.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-fill.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rounded-rectangle-fill.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-fill.rgb24.ref.png
diff --git a/cairo/test/reference/rounded-rectangle-fill.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-fill.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rounded-rectangle-fill.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-fill.traps.argb32.ref.png
diff --git a/cairo/test/reference/rounded-rectangle-fill.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-fill.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rounded-rectangle-fill.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-fill.traps.rgb24.ref.png
diff --git a/cairo/test/reference/rounded-rectangle-stroke.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-stroke.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rounded-rectangle-stroke.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-stroke.base.argb32.ref.png
diff --git a/cairo/test/reference/rounded-rectangle-stroke.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-stroke.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rounded-rectangle-stroke.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-stroke.base.rgb24.ref.png
diff --git a/cairo/test/reference/rounded-rectangle-stroke.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-stroke.image16.ref.png
similarity index 100%
rename from cairo/test/reference/rounded-rectangle-stroke.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-stroke.image16.ref.png
diff --git a/cairo/test/reference/rounded-rectangle-stroke.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-stroke.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rounded-rectangle-stroke.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-stroke.mask.argb32.ref.png
diff --git a/cairo/test/reference/rounded-rectangle-stroke.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-stroke.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rounded-rectangle-stroke.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-stroke.mask.rgb24.ref.png
diff --git a/cairo/test/reference/rounded-rectangle-stroke.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-stroke.ps.ref.png
similarity index 100%
rename from cairo/test/reference/rounded-rectangle-stroke.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-stroke.ps.ref.png
diff --git a/cairo/test/reference/rounded-rectangle-stroke.ref.png b/io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-stroke.ref.png
similarity index 100%
rename from cairo/test/reference/rounded-rectangle-stroke.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-stroke.ref.png
diff --git a/cairo/test/reference/rounded-rectangle-stroke.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-stroke.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/rounded-rectangle-stroke.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-stroke.traps.argb32.ref.png
diff --git a/cairo/test/reference/rounded-rectangle-stroke.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-stroke.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/rounded-rectangle-stroke.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/rounded-rectangle-stroke.traps.rgb24.ref.png
diff --git a/cairo/test/reference/sample-diagonal.ref.png b/io2d/src/3rd-party/cairo/test/reference/sample-diagonal.ref.png
similarity index 100%
rename from cairo/test/reference/sample-diagonal.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/sample-diagonal.ref.png
diff --git a/cairo/test/reference/sample-horizontal.ref.png b/io2d/src/3rd-party/cairo/test/reference/sample-horizontal.ref.png
similarity index 100%
rename from cairo/test/reference/sample-horizontal.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/sample-horizontal.ref.png
diff --git a/cairo/test/reference/sample-vertical.ref.png b/io2d/src/3rd-party/cairo/test/reference/sample-vertical.ref.png
similarity index 100%
rename from cairo/test/reference/sample-vertical.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/sample-vertical.ref.png
diff --git a/cairo/test/reference/scale-down-source-surface-paint.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-down-source-surface-paint.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/scale-down-source-surface-paint.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-down-source-surface-paint.base.argb32.ref.png
diff --git a/cairo/test/reference/scale-down-source-surface-paint.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-down-source-surface-paint.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/scale-down-source-surface-paint.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-down-source-surface-paint.base.rgb24.ref.png
diff --git a/cairo/test/reference/scale-down-source-surface-paint.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-down-source-surface-paint.ref.png
similarity index 100%
rename from cairo/test/reference/scale-down-source-surface-paint.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-down-source-surface-paint.ref.png
diff --git a/cairo/test/reference/scale-offset-image.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-image.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-image.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-image.argb32.ref.png
diff --git a/cairo/test/reference/scale-offset-image.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-image.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-image.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-image.base.argb32.ref.png
diff --git a/cairo/test/reference/scale-offset-image.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-image.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-image.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-image.base.rgb24.ref.png
diff --git a/cairo/test/reference/scale-offset-image.gl.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-image.gl.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-image.gl.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-image.gl.ref.png
diff --git a/cairo/test/reference/scale-offset-image.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-image.image16.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-image.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-image.image16.ref.png
diff --git a/cairo/test/reference/scale-offset-image.pdf.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-image.pdf.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-image.pdf.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-image.pdf.argb32.ref.png
diff --git a/cairo/test/reference/scale-offset-image.pdf.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-image.pdf.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-image.pdf.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-image.pdf.rgb24.ref.png
diff --git a/cairo/test/reference/scale-offset-image.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-image.ps.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-image.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-image.ps.ref.png
diff --git a/cairo/test/reference/scale-offset-image.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-image.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-image.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-image.quartz.ref.png
diff --git a/cairo/test/reference/scale-offset-image.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-image.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-image.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-image.rgb24.ref.png
diff --git a/cairo/test/reference/scale-offset-image.script.xfail.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-image.script.xfail.png
similarity index 100%
rename from cairo/test/reference/scale-offset-image.script.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-image.script.xfail.png
diff --git a/cairo/test/reference/scale-offset-image.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-image.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-image.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-image.traps.argb32.ref.png
diff --git a/cairo/test/reference/scale-offset-image.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-image.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-image.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-image.traps.rgb24.ref.png
diff --git a/cairo/test/reference/scale-offset-image.xfail.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-image.xfail.png
similarity index 100%
rename from cairo/test/reference/scale-offset-image.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-image.xfail.png
diff --git a/cairo/test/reference/scale-offset-image.xlib-fallback.xfail.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-image.xlib-fallback.xfail.png
similarity index 100%
rename from cairo/test/reference/scale-offset-image.xlib-fallback.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-image.xlib-fallback.xfail.png
diff --git a/cairo/test/reference/scale-offset-similar.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-similar.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.argb32.ref.png
diff --git a/cairo/test/reference/scale-offset-similar.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-similar.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.base.argb32.ref.png
diff --git a/cairo/test/reference/scale-offset-similar.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-similar.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.base.rgb24.ref.png
diff --git a/cairo/test/reference/scale-offset-similar.gl.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.gl.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-similar.gl.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.gl.ref.png
diff --git a/cairo/test/reference/scale-offset-similar.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.image16.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-similar.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.image16.ref.png
diff --git a/cairo/test/reference/scale-offset-similar.pdf.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.pdf.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-similar.pdf.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.pdf.argb32.ref.png
diff --git a/cairo/test/reference/scale-offset-similar.pdf.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.pdf.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-similar.pdf.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.pdf.rgb24.ref.png
diff --git a/cairo/test/reference/scale-offset-similar.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.ps.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-similar.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.ps.ref.png
diff --git a/cairo/test/reference/scale-offset-similar.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-similar.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.quartz.ref.png
diff --git a/cairo/test/reference/scale-offset-similar.recording.xfail.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.recording.xfail.png
similarity index 100%
rename from cairo/test/reference/scale-offset-similar.recording.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.recording.xfail.png
diff --git a/cairo/test/reference/scale-offset-similar.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-similar.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.rgb24.ref.png
diff --git a/cairo/test/reference/scale-offset-similar.script.xfail.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.script.xfail.png
similarity index 100%
rename from cairo/test/reference/scale-offset-similar.script.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.script.xfail.png
diff --git a/cairo/test/reference/scale-offset-similar.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-similar.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.traps.argb32.ref.png
diff --git a/cairo/test/reference/scale-offset-similar.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-similar.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.traps.rgb24.ref.png
diff --git a/cairo/test/reference/scale-offset-similar.xfail.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.xfail.png
similarity index 100%
rename from cairo/test/reference/scale-offset-similar.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.xfail.png
diff --git a/cairo/test/reference/scale-offset-similar.xlib-fallback.xfail.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.xlib-fallback.xfail.png
similarity index 100%
rename from cairo/test/reference/scale-offset-similar.xlib-fallback.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.xlib-fallback.xfail.png
diff --git a/cairo/test/reference/scale-offset-similar.xlib.xfail.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.xlib.xfail.png
similarity index 100%
rename from cairo/test/reference/scale-offset-similar.xlib.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-similar.xlib.xfail.png
diff --git a/cairo/test/reference/scale-offset-xlib-fallback.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-xlib-fallback.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-xlib-fallback.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-xlib-fallback.rgb24.ref.png
diff --git a/cairo/test/reference/scale-offset-xlib-window.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-xlib-window.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-xlib-window.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-xlib-window.rgb24.ref.png
diff --git a/cairo/test/reference/scale-offset-xlib.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-xlib.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-xlib.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-xlib.argb32.ref.png
diff --git a/cairo/test/reference/scale-offset-xlib.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-offset-xlib.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/scale-offset-xlib.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-offset-xlib.rgb24.ref.png
diff --git a/cairo/test/reference/scale-source-surface-paint.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-source-surface-paint.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/scale-source-surface-paint.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-source-surface-paint.argb32.ref.png
diff --git a/cairo/test/reference/scale-source-surface-paint.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-source-surface-paint.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/scale-source-surface-paint.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-source-surface-paint.base.argb32.ref.png
diff --git a/cairo/test/reference/scale-source-surface-paint.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-source-surface-paint.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/scale-source-surface-paint.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-source-surface-paint.base.rgb24.ref.png
diff --git a/cairo/test/reference/scale-source-surface-paint.pdf.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/scale-source-surface-paint.pdf.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/scale-source-surface-paint.pdf.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-source-surface-paint.pdf.argb32.xfail.png
diff --git a/cairo/test/reference/scale-source-surface-paint.pdf.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/scale-source-surface-paint.pdf.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/scale-source-surface-paint.pdf.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-source-surface-paint.pdf.rgb24.xfail.png
diff --git a/cairo/test/reference/scale-source-surface-paint.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/scale-source-surface-paint.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/scale-source-surface-paint.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-source-surface-paint.rgb24.ref.png
diff --git a/cairo/test/reference/scale-source-surface-paint.svg.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/scale-source-surface-paint.svg.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/scale-source-surface-paint.svg.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-source-surface-paint.svg.argb32.xfail.png
diff --git a/cairo/test/reference/scale-source-surface-paint.svg.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/scale-source-surface-paint.svg.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/scale-source-surface-paint.svg.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/scale-source-surface-paint.svg.rgb24.xfail.png
diff --git a/cairo/test/reference/select-font-face.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/select-font-face.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/select-font-face.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/select-font-face.argb32.ref.png
diff --git a/cairo/test/reference/select-font-face.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/select-font-face.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/select-font-face.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/select-font-face.base.argb32.ref.png
diff --git a/cairo/test/reference/select-font-face.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/select-font-face.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/select-font-face.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/select-font-face.base.rgb24.ref.png
diff --git a/cairo/test/reference/select-font-face.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/select-font-face.image16.ref.png
similarity index 100%
rename from cairo/test/reference/select-font-face.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/select-font-face.image16.ref.png
diff --git a/cairo/test/reference/select-font-face.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/select-font-face.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/select-font-face.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/select-font-face.ps2.ref.png
diff --git a/cairo/test/reference/select-font-face.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/select-font-face.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/select-font-face.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/select-font-face.ps3.ref.png
diff --git a/cairo/test/reference/select-font-face.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/select-font-face.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/select-font-face.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/select-font-face.quartz.ref.png
diff --git a/cairo/test/reference/select-font-face.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/select-font-face.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/select-font-face.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/select-font-face.rgb24.ref.png
diff --git a/cairo/test/reference/select-font-face.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/select-font-face.traps.ref.png
similarity index 100%
rename from cairo/test/reference/select-font-face.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/select-font-face.traps.ref.png
diff --git a/cairo/test/reference/self-copy-overlap.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/self-copy-overlap.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/self-copy-overlap.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/self-copy-overlap.base.argb32.ref.png
diff --git a/cairo/test/reference/self-copy-overlap.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/self-copy-overlap.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/self-copy-overlap.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/self-copy-overlap.base.rgb24.ref.png
diff --git a/cairo/test/reference/self-copy-overlap.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/self-copy-overlap.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/self-copy-overlap.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/self-copy-overlap.mask.argb32.ref.png
diff --git a/cairo/test/reference/self-copy-overlap.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/self-copy-overlap.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/self-copy-overlap.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/self-copy-overlap.mask.rgb24.ref.png
diff --git a/cairo/test/reference/self-copy-overlap.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/self-copy-overlap.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/self-copy-overlap.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/self-copy-overlap.traps.argb32.ref.png
diff --git a/cairo/test/reference/self-copy-overlap.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/self-copy-overlap.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/self-copy-overlap.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/self-copy-overlap.traps.rgb24.ref.png
diff --git a/cairo/test/reference/self-copy.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/self-copy.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/self-copy.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/self-copy.argb32.ref.png
diff --git a/cairo/test/reference/self-copy.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/self-copy.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/self-copy.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/self-copy.base.argb32.ref.png
diff --git a/cairo/test/reference/self-copy.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/self-copy.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/self-copy.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/self-copy.base.rgb24.ref.png
diff --git a/cairo/test/reference/self-copy.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/self-copy.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/self-copy.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/self-copy.ps2.ref.png
diff --git a/cairo/test/reference/self-copy.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/self-copy.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/self-copy.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/self-copy.ps3.ref.png
diff --git a/cairo/test/reference/self-copy.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/self-copy.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/self-copy.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/self-copy.rgb24.ref.png
diff --git a/cairo/test/reference/self-copy.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/self-copy.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/self-copy.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/self-copy.traps.argb32.ref.png
diff --git a/cairo/test/reference/self-copy.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/self-copy.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/self-copy.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/self-copy.traps.rgb24.ref.png
diff --git a/cairo/test/reference/self-intersecting.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/self-intersecting.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/self-intersecting.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/self-intersecting.base.argb32.ref.png
diff --git a/cairo/test/reference/self-intersecting.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/self-intersecting.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/self-intersecting.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/self-intersecting.base.rgb24.ref.png
diff --git a/cairo/test/reference/self-intersecting.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/self-intersecting.ps.ref.png
similarity index 100%
rename from cairo/test/reference/self-intersecting.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/self-intersecting.ps.ref.png
diff --git a/cairo/test/reference/self-intersecting.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/self-intersecting.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/self-intersecting.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/self-intersecting.quartz.xfail.png
diff --git a/cairo/test/reference/self-intersecting.ref.png b/io2d/src/3rd-party/cairo/test/reference/self-intersecting.ref.png
similarity index 100%
rename from cairo/test/reference/self-intersecting.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/self-intersecting.ref.png
diff --git a/cairo/test/reference/self-intersecting.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/self-intersecting.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/self-intersecting.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/self-intersecting.traps.argb32.ref.png
diff --git a/cairo/test/reference/self-intersecting.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/self-intersecting.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/self-intersecting.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/self-intersecting.traps.rgb24.ref.png
diff --git a/cairo/test/reference/set-source.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/set-source.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/set-source.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/set-source.argb32.ref.png
diff --git a/cairo/test/reference/set-source.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/set-source.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/set-source.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/set-source.base.argb32.ref.png
diff --git a/cairo/test/reference/set-source.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/set-source.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/set-source.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/set-source.base.rgb24.ref.png
diff --git a/cairo/test/reference/set-source.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/set-source.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/set-source.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/set-source.rgb24.ref.png
diff --git a/cairo/test/reference/shape-general-convex.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/shape-general-convex.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/shape-general-convex.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/shape-general-convex.argb32.ref.png
diff --git a/cairo/test/reference/shape-general-convex.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/shape-general-convex.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/shape-general-convex.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/shape-general-convex.base.argb32.ref.png
diff --git a/cairo/test/reference/shape-general-convex.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/shape-general-convex.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/shape-general-convex.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/shape-general-convex.base.rgb24.ref.png
diff --git a/cairo/test/reference/shape-general-convex.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/shape-general-convex.ps.ref.png
similarity index 100%
rename from cairo/test/reference/shape-general-convex.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/shape-general-convex.ps.ref.png
diff --git a/cairo/test/reference/shape-general-convex.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/shape-general-convex.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/shape-general-convex.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/shape-general-convex.rgb24.ref.png
diff --git a/cairo/test/reference/shape-general-convex.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/shape-general-convex.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/shape-general-convex.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/shape-general-convex.traps.argb32.ref.png
diff --git a/cairo/test/reference/shape-general-convex.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/shape-general-convex.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/shape-general-convex.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/shape-general-convex.traps.rgb24.ref.png
diff --git a/cairo/test/reference/shape-sierpinski.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/shape-sierpinski.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.argb32.ref.png
diff --git a/cairo/test/reference/shape-sierpinski.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/shape-sierpinski.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.base.argb32.ref.png
diff --git a/cairo/test/reference/shape-sierpinski.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/shape-sierpinski.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.base.rgb24.ref.png
diff --git a/cairo/test/reference/shape-sierpinski.pdf.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.pdf.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/shape-sierpinski.pdf.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.pdf.argb32.ref.png
diff --git a/cairo/test/reference/shape-sierpinski.pdf.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.pdf.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/shape-sierpinski.pdf.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.pdf.rgb24.ref.png
diff --git a/cairo/test/reference/shape-sierpinski.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.ps.ref.png
similarity index 100%
rename from cairo/test/reference/shape-sierpinski.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.ps.ref.png
diff --git a/cairo/test/reference/shape-sierpinski.ps3.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.ps3.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/shape-sierpinski.ps3.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.ps3.argb32.ref.png
diff --git a/cairo/test/reference/shape-sierpinski.ps3.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.ps3.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/shape-sierpinski.ps3.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.ps3.rgb24.ref.png
diff --git a/cairo/test/reference/shape-sierpinski.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/shape-sierpinski.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.rgb24.ref.png
diff --git a/cairo/test/reference/shape-sierpinski.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/shape-sierpinski.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.traps.argb32.ref.png
diff --git a/cairo/test/reference/shape-sierpinski.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/shape-sierpinski.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.traps.rgb24.ref.png
diff --git a/cairo/test/reference/show-glyphs-advance.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/show-glyphs-advance.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/show-glyphs-advance.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/show-glyphs-advance.argb32.ref.png
diff --git a/cairo/test/reference/show-glyphs-advance.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/show-glyphs-advance.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/show-glyphs-advance.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/show-glyphs-advance.base.argb32.ref.png
diff --git a/cairo/test/reference/show-glyphs-advance.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/show-glyphs-advance.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/show-glyphs-advance.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/show-glyphs-advance.base.rgb24.ref.png
diff --git a/cairo/test/reference/show-glyphs-advance.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/show-glyphs-advance.image16.ref.png
similarity index 100%
rename from cairo/test/reference/show-glyphs-advance.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/show-glyphs-advance.image16.ref.png
diff --git a/cairo/test/reference/show-glyphs-advance.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/show-glyphs-advance.ps.ref.png
similarity index 100%
rename from cairo/test/reference/show-glyphs-advance.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/show-glyphs-advance.ps.ref.png
diff --git a/cairo/test/reference/show-glyphs-advance.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/show-glyphs-advance.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/show-glyphs-advance.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/show-glyphs-advance.quartz.ref.png
diff --git a/cairo/test/reference/show-glyphs-advance.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/show-glyphs-advance.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/show-glyphs-advance.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/show-glyphs-advance.rgb24.ref.png
diff --git a/cairo/test/reference/show-glyphs-advance.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/show-glyphs-advance.svg.ref.png
similarity index 100%
rename from cairo/test/reference/show-glyphs-advance.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/show-glyphs-advance.svg.ref.png
diff --git a/cairo/test/reference/show-glyphs-advance.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/show-glyphs-advance.traps.ref.png
similarity index 100%
rename from cairo/test/reference/show-glyphs-advance.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/show-glyphs-advance.traps.ref.png
diff --git a/cairo/test/reference/show-glyphs-many.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/show-glyphs-many.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/show-glyphs-many.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/show-glyphs-many.base.argb32.ref.png
diff --git a/cairo/test/reference/show-glyphs-many.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/show-glyphs-many.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/show-glyphs-many.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/show-glyphs-many.base.rgb24.ref.png
diff --git a/cairo/test/reference/show-glyphs-many.ref.png b/io2d/src/3rd-party/cairo/test/reference/show-glyphs-many.ref.png
similarity index 100%
rename from cairo/test/reference/show-glyphs-many.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/show-glyphs-many.ref.png
diff --git a/cairo/test/reference/show-text-current-point.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/show-text-current-point.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/show-text-current-point.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/show-text-current-point.argb32.ref.png
diff --git a/cairo/test/reference/show-text-current-point.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/show-text-current-point.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/show-text-current-point.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/show-text-current-point.base.argb32.ref.png
diff --git a/cairo/test/reference/show-text-current-point.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/show-text-current-point.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/show-text-current-point.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/show-text-current-point.base.rgb24.ref.png
diff --git a/cairo/test/reference/show-text-current-point.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/show-text-current-point.image16.ref.png
similarity index 100%
rename from cairo/test/reference/show-text-current-point.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/show-text-current-point.image16.ref.png
diff --git a/cairo/test/reference/show-text-current-point.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/show-text-current-point.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/show-text-current-point.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/show-text-current-point.ps2.ref.png
diff --git a/cairo/test/reference/show-text-current-point.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/show-text-current-point.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/show-text-current-point.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/show-text-current-point.ps3.ref.png
diff --git a/cairo/test/reference/show-text-current-point.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/show-text-current-point.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/show-text-current-point.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/show-text-current-point.quartz.ref.png
diff --git a/cairo/test/reference/show-text-current-point.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/show-text-current-point.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/show-text-current-point.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/show-text-current-point.rgb24.ref.png
diff --git a/cairo/test/reference/show-text-current-point.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/show-text-current-point.traps.ref.png
similarity index 100%
rename from cairo/test/reference/show-text-current-point.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/show-text-current-point.traps.ref.png
diff --git a/cairo/test/reference/skew-extreme.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/skew-extreme.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/skew-extreme.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/skew-extreme.argb32.ref.png
diff --git a/cairo/test/reference/skew-extreme.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/skew-extreme.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/skew-extreme.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/skew-extreme.base.argb32.ref.png
diff --git a/cairo/test/reference/skew-extreme.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/skew-extreme.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/skew-extreme.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/skew-extreme.base.rgb24.ref.png
diff --git a/cairo/test/reference/skew-extreme.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/skew-extreme.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/skew-extreme.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/skew-extreme.ps2.ref.png
diff --git a/cairo/test/reference/skew-extreme.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/skew-extreme.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/skew-extreme.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/skew-extreme.ps3.ref.png
diff --git a/cairo/test/reference/skew-extreme.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/skew-extreme.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/skew-extreme.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/skew-extreme.rgb24.ref.png
diff --git a/cairo/test/reference/skew-extreme.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/skew-extreme.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/skew-extreme.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/skew-extreme.traps.argb32.ref.png
diff --git a/cairo/test/reference/skew-extreme.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/skew-extreme.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/skew-extreme.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/skew-extreme.traps.rgb24.ref.png
diff --git a/cairo/test/reference/smask-fill.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-fill.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/smask-fill.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-fill.argb32.ref.png
diff --git a/cairo/test/reference/smask-fill.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-fill.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/smask-fill.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-fill.base.argb32.ref.png
diff --git a/cairo/test/reference/smask-fill.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-fill.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/smask-fill.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-fill.base.rgb24.ref.png
diff --git a/cairo/test/reference/smask-fill.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-fill.image16.ref.png
similarity index 100%
rename from cairo/test/reference/smask-fill.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-fill.image16.ref.png
diff --git a/cairo/test/reference/smask-fill.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-fill.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/smask-fill.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-fill.pdf.ref.png
diff --git a/cairo/test/reference/smask-fill.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-fill.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/smask-fill.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-fill.quartz.ref.png
diff --git a/cairo/test/reference/smask-fill.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-fill.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/smask-fill.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-fill.rgb24.ref.png
diff --git a/cairo/test/reference/smask-fill.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-fill.svg.ref.png
similarity index 100%
rename from cairo/test/reference/smask-fill.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-fill.svg.ref.png
diff --git a/cairo/test/reference/smask-fill.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-fill.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/smask-fill.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-fill.traps.argb32.ref.png
diff --git a/cairo/test/reference/smask-fill.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-fill.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/smask-fill.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-fill.traps.rgb24.ref.png
diff --git a/cairo/test/reference/smask-image-mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-image-mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/smask-image-mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-image-mask.argb32.ref.png
diff --git a/cairo/test/reference/smask-image-mask.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-image-mask.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/smask-image-mask.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-image-mask.base.argb32.ref.png
diff --git a/cairo/test/reference/smask-image-mask.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-image-mask.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/smask-image-mask.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-image-mask.base.rgb24.ref.png
diff --git a/cairo/test/reference/smask-image-mask.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-image-mask.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/smask-image-mask.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-image-mask.pdf.ref.png
diff --git a/cairo/test/reference/smask-image-mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-image-mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/smask-image-mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-image-mask.rgb24.ref.png
diff --git a/cairo/test/reference/smask-mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/smask-mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-mask.argb32.ref.png
diff --git a/cairo/test/reference/smask-mask.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-mask.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/smask-mask.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-mask.base.argb32.ref.png
diff --git a/cairo/test/reference/smask-mask.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-mask.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/smask-mask.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-mask.base.rgb24.ref.png
diff --git a/cairo/test/reference/smask-mask.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-mask.image16.ref.png
similarity index 100%
rename from cairo/test/reference/smask-mask.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-mask.image16.ref.png
diff --git a/cairo/test/reference/smask-mask.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-mask.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/smask-mask.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-mask.pdf.ref.png
diff --git a/cairo/test/reference/smask-mask.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-mask.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/smask-mask.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-mask.quartz.ref.png
diff --git a/cairo/test/reference/smask-mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/smask-mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-mask.rgb24.ref.png
diff --git a/cairo/test/reference/smask-mask.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-mask.svg.ref.png
similarity index 100%
rename from cairo/test/reference/smask-mask.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-mask.svg.ref.png
diff --git a/cairo/test/reference/smask-paint.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-paint.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/smask-paint.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-paint.argb32.ref.png
diff --git a/cairo/test/reference/smask-paint.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-paint.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/smask-paint.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-paint.base.argb32.ref.png
diff --git a/cairo/test/reference/smask-paint.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-paint.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/smask-paint.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-paint.base.rgb24.ref.png
diff --git a/cairo/test/reference/smask-paint.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-paint.image16.ref.png
similarity index 100%
rename from cairo/test/reference/smask-paint.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-paint.image16.ref.png
diff --git a/cairo/test/reference/smask-paint.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-paint.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/smask-paint.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-paint.pdf.ref.png
diff --git a/cairo/test/reference/smask-paint.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-paint.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/smask-paint.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-paint.quartz.ref.png
diff --git a/cairo/test/reference/smask-paint.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-paint.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/smask-paint.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-paint.rgb24.ref.png
diff --git a/cairo/test/reference/smask-paint.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-paint.svg.ref.png
similarity index 100%
rename from cairo/test/reference/smask-paint.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-paint.svg.ref.png
diff --git a/cairo/test/reference/smask-stroke.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-stroke.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/smask-stroke.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-stroke.argb32.ref.png
diff --git a/cairo/test/reference/smask-stroke.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-stroke.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/smask-stroke.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-stroke.base.argb32.ref.png
diff --git a/cairo/test/reference/smask-stroke.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-stroke.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/smask-stroke.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-stroke.base.rgb24.ref.png
diff --git a/cairo/test/reference/smask-stroke.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-stroke.image16.ref.png
similarity index 100%
rename from cairo/test/reference/smask-stroke.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-stroke.image16.ref.png
diff --git a/cairo/test/reference/smask-stroke.pdf.xfail.png b/io2d/src/3rd-party/cairo/test/reference/smask-stroke.pdf.xfail.png
similarity index 100%
rename from cairo/test/reference/smask-stroke.pdf.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-stroke.pdf.xfail.png
diff --git a/cairo/test/reference/smask-stroke.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-stroke.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/smask-stroke.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-stroke.quartz.ref.png
diff --git a/cairo/test/reference/smask-stroke.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-stroke.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/smask-stroke.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-stroke.rgb24.ref.png
diff --git a/cairo/test/reference/smask-stroke.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-stroke.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/smask-stroke.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-stroke.traps.argb32.ref.png
diff --git a/cairo/test/reference/smask-stroke.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-stroke.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/smask-stroke.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-stroke.traps.rgb24.ref.png
diff --git a/cairo/test/reference/smask-text.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-text.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/smask-text.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-text.argb32.ref.png
diff --git a/cairo/test/reference/smask-text.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-text.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/smask-text.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-text.base.argb32.ref.png
diff --git a/cairo/test/reference/smask-text.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-text.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/smask-text.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-text.base.rgb24.ref.png
diff --git a/cairo/test/reference/smask-text.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-text.image16.ref.png
similarity index 100%
rename from cairo/test/reference/smask-text.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-text.image16.ref.png
diff --git a/cairo/test/reference/smask-text.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-text.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/smask-text.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-text.mask.argb32.ref.png
diff --git a/cairo/test/reference/smask-text.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-text.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/smask-text.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-text.mask.rgb24.ref.png
diff --git a/cairo/test/reference/smask-text.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-text.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/smask-text.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-text.pdf.ref.png
diff --git a/cairo/test/reference/smask-text.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-text.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/smask-text.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-text.ps2.ref.png
diff --git a/cairo/test/reference/smask-text.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-text.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/smask-text.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-text.ps3.ref.png
diff --git a/cairo/test/reference/smask-text.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-text.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/smask-text.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-text.quartz.ref.png
diff --git a/cairo/test/reference/smask-text.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-text.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/smask-text.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-text.rgb24.ref.png
diff --git a/cairo/test/reference/smask-text.script.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-text.script.ref.png
similarity index 100%
rename from cairo/test/reference/smask-text.script.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-text.script.ref.png
diff --git a/cairo/test/reference/smask-text.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-text.svg.ref.png
similarity index 100%
rename from cairo/test/reference/smask-text.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-text.svg.ref.png
diff --git a/cairo/test/reference/smask-text.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-text.traps.ref.png
similarity index 100%
rename from cairo/test/reference/smask-text.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-text.traps.ref.png
diff --git a/cairo/test/reference/smask-text.xlib-fallback.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask-text.xlib-fallback.ref.png
similarity index 100%
rename from cairo/test/reference/smask-text.xlib-fallback.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask-text.xlib-fallback.ref.png
diff --git a/cairo/test/reference/smask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/smask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask.argb32.ref.png
diff --git a/cairo/test/reference/smask.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/smask.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask.base.argb32.ref.png
diff --git a/cairo/test/reference/smask.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/smask.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask.base.rgb24.ref.png
diff --git a/cairo/test/reference/smask.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask.image16.ref.png
similarity index 100%
rename from cairo/test/reference/smask.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask.image16.ref.png
diff --git a/cairo/test/reference/smask.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/smask.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask.mask.argb32.ref.png
diff --git a/cairo/test/reference/smask.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/smask.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask.mask.rgb24.ref.png
diff --git a/cairo/test/reference/smask.pdf.xfail.png b/io2d/src/3rd-party/cairo/test/reference/smask.pdf.xfail.png
similarity index 100%
rename from cairo/test/reference/smask.pdf.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/smask.pdf.xfail.png
diff --git a/cairo/test/reference/smask.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask.ps.ref.png
similarity index 100%
rename from cairo/test/reference/smask.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask.ps.ref.png
diff --git a/cairo/test/reference/smask.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/smask.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask.quartz.ref.png
diff --git a/cairo/test/reference/smask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/smask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask.rgb24.ref.png
diff --git a/cairo/test/reference/smask.script.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask.script.ref.png
similarity index 100%
rename from cairo/test/reference/smask.script.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask.script.ref.png
diff --git a/cairo/test/reference/smask.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask.svg.ref.png
similarity index 100%
rename from cairo/test/reference/smask.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask.svg.ref.png
diff --git a/cairo/test/reference/smask.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask.traps.ref.png
similarity index 100%
rename from cairo/test/reference/smask.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask.traps.ref.png
diff --git a/cairo/test/reference/smask.xlib-fallback.ref.png b/io2d/src/3rd-party/cairo/test/reference/smask.xlib-fallback.ref.png
similarity index 100%
rename from cairo/test/reference/smask.xlib-fallback.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/smask.xlib-fallback.ref.png
diff --git a/cairo/test/reference/solid-pattern-cache-stress.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/solid-pattern-cache-stress.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/solid-pattern-cache-stress.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/solid-pattern-cache-stress.base.argb32.ref.png
diff --git a/cairo/test/reference/solid-pattern-cache-stress.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/solid-pattern-cache-stress.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/solid-pattern-cache-stress.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/solid-pattern-cache-stress.base.rgb24.ref.png
diff --git a/cairo/test/reference/solid-pattern-cache-stress.ref.png b/io2d/src/3rd-party/cairo/test/reference/solid-pattern-cache-stress.ref.png
similarity index 100%
rename from cairo/test/reference/solid-pattern-cache-stress.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/solid-pattern-cache-stress.ref.png
diff --git a/cairo/test/reference/source-clip-scale.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/source-clip-scale.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/source-clip-scale.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/source-clip-scale.base.argb32.ref.png
diff --git a/cairo/test/reference/source-clip-scale.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/source-clip-scale.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/source-clip-scale.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/source-clip-scale.base.rgb24.ref.png
diff --git a/cairo/test/reference/source-clip-scale.gl.ref.png b/io2d/src/3rd-party/cairo/test/reference/source-clip-scale.gl.ref.png
similarity index 100%
rename from cairo/test/reference/source-clip-scale.gl.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/source-clip-scale.gl.ref.png
diff --git a/cairo/test/reference/source-clip-scale.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/source-clip-scale.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/source-clip-scale.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/source-clip-scale.pdf.ref.png
diff --git a/cairo/test/reference/source-clip-scale.ps2.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/source-clip-scale.ps2.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/source-clip-scale.ps2.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/source-clip-scale.ps2.argb32.ref.png
diff --git a/cairo/test/reference/source-clip-scale.ps2.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/source-clip-scale.ps2.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/source-clip-scale.ps2.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/source-clip-scale.ps2.rgb24.ref.png
diff --git a/cairo/test/reference/source-clip-scale.ps3.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/source-clip-scale.ps3.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/source-clip-scale.ps3.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/source-clip-scale.ps3.argb32.ref.png
diff --git a/cairo/test/reference/source-clip-scale.ps3.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/source-clip-scale.ps3.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/source-clip-scale.ps3.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/source-clip-scale.ps3.rgb24.ref.png
diff --git a/cairo/test/reference/source-clip-scale.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/source-clip-scale.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/source-clip-scale.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/source-clip-scale.quartz.ref.png
diff --git a/cairo/test/reference/source-clip-scale.recording.ref.png b/io2d/src/3rd-party/cairo/test/reference/source-clip-scale.recording.ref.png
similarity index 100%
rename from cairo/test/reference/source-clip-scale.recording.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/source-clip-scale.recording.ref.png
diff --git a/cairo/test/reference/source-clip-scale.ref.png b/io2d/src/3rd-party/cairo/test/reference/source-clip-scale.ref.png
similarity index 100%
rename from cairo/test/reference/source-clip-scale.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/source-clip-scale.ref.png
diff --git a/cairo/test/reference/source-clip-scale.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/source-clip-scale.svg.ref.png
similarity index 100%
rename from cairo/test/reference/source-clip-scale.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/source-clip-scale.svg.ref.png
diff --git a/cairo/test/reference/source-clip.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/source-clip.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/source-clip.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/source-clip.base.argb32.ref.png
diff --git a/cairo/test/reference/source-clip.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/source-clip.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/source-clip.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/source-clip.base.rgb24.ref.png
diff --git a/cairo/test/reference/source-clip.ref.png b/io2d/src/3rd-party/cairo/test/reference/source-clip.ref.png
similarity index 100%
rename from cairo/test/reference/source-clip.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/source-clip.ref.png
diff --git a/cairo/test/reference/source-surface-scale-paint.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/source-surface-scale-paint.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/source-surface-scale-paint.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/source-surface-scale-paint.argb32.ref.png
diff --git a/cairo/test/reference/source-surface-scale-paint.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/source-surface-scale-paint.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/source-surface-scale-paint.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/source-surface-scale-paint.base.argb32.ref.png
diff --git a/cairo/test/reference/source-surface-scale-paint.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/source-surface-scale-paint.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/source-surface-scale-paint.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/source-surface-scale-paint.base.rgb24.ref.png
diff --git a/cairo/test/reference/source-surface-scale-paint.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/source-surface-scale-paint.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/source-surface-scale-paint.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/source-surface-scale-paint.rgb24.ref.png
diff --git a/cairo/test/reference/spline-decomposition.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/spline-decomposition.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/spline-decomposition.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/spline-decomposition.argb32.ref.png
diff --git a/cairo/test/reference/spline-decomposition.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/spline-decomposition.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/spline-decomposition.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/spline-decomposition.base.argb32.ref.png
diff --git a/cairo/test/reference/spline-decomposition.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/spline-decomposition.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/spline-decomposition.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/spline-decomposition.base.rgb24.ref.png
diff --git a/cairo/test/reference/spline-decomposition.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/spline-decomposition.image16.ref.png
similarity index 100%
rename from cairo/test/reference/spline-decomposition.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/spline-decomposition.image16.ref.png
diff --git a/cairo/test/reference/spline-decomposition.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/spline-decomposition.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/spline-decomposition.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/spline-decomposition.pdf.ref.png
diff --git a/cairo/test/reference/spline-decomposition.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/spline-decomposition.ps.ref.png
similarity index 100%
rename from cairo/test/reference/spline-decomposition.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/spline-decomposition.ps.ref.png
diff --git a/cairo/test/reference/spline-decomposition.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/spline-decomposition.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/spline-decomposition.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/spline-decomposition.quartz.xfail.png
diff --git a/cairo/test/reference/spline-decomposition.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/spline-decomposition.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/spline-decomposition.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/spline-decomposition.rgb24.ref.png
diff --git a/cairo/test/reference/spline-decomposition.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/spline-decomposition.svg.ref.png
similarity index 100%
rename from cairo/test/reference/spline-decomposition.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/spline-decomposition.svg.ref.png
diff --git a/cairo/test/reference/spline-decomposition.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/spline-decomposition.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/spline-decomposition.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/spline-decomposition.traps.argb32.ref.png
diff --git a/cairo/test/reference/spline-decomposition.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/spline-decomposition.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/spline-decomposition.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/spline-decomposition.traps.rgb24.ref.png
diff --git a/cairo/test/reference/stride-12-image.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/stride-12-image.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/stride-12-image.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stride-12-image.base.argb32.ref.png
diff --git a/cairo/test/reference/stride-12-image.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/stride-12-image.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/stride-12-image.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stride-12-image.base.rgb24.ref.png
diff --git a/cairo/test/reference/stride-12-image.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/stride-12-image.image16.ref.png
similarity index 100%
rename from cairo/test/reference/stride-12-image.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stride-12-image.image16.ref.png
diff --git a/cairo/test/reference/stride-12-image.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/stride-12-image.ps.ref.png
similarity index 100%
rename from cairo/test/reference/stride-12-image.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stride-12-image.ps.ref.png
diff --git a/cairo/test/reference/stride-12-image.ref.png b/io2d/src/3rd-party/cairo/test/reference/stride-12-image.ref.png
similarity index 100%
rename from cairo/test/reference/stride-12-image.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stride-12-image.ref.png
diff --git a/cairo/test/reference/stride-12-xlib-fallback.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/stride-12-xlib-fallback.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/stride-12-xlib-fallback.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stride-12-xlib-fallback.rgb24.ref.png
diff --git a/cairo/test/reference/stride-12-xlib-window.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/stride-12-xlib-window.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/stride-12-xlib-window.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stride-12-xlib-window.rgb24.ref.png
diff --git a/cairo/test/reference/stride-12-xlib.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/stride-12-xlib.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/stride-12-xlib.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stride-12-xlib.argb32.ref.png
diff --git a/cairo/test/reference/stride-12-xlib.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/stride-12-xlib.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/stride-12-xlib.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stride-12-xlib.rgb24.ref.png
diff --git a/cairo/test/reference/stroke-clipped.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-clipped.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-clipped.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-clipped.ref.png
diff --git a/cairo/test/reference/stroke-ctm-caps.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-ctm-caps.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.base.argb32.ref.png
diff --git a/cairo/test/reference/stroke-ctm-caps.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-ctm-caps.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.base.rgb24.ref.png
diff --git a/cairo/test/reference/stroke-ctm-caps.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.image16.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-ctm-caps.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.image16.ref.png
diff --git a/cairo/test/reference/stroke-ctm-caps.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-ctm-caps.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.mask.argb32.ref.png
diff --git a/cairo/test/reference/stroke-ctm-caps.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-ctm-caps.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.mask.rgb24.ref.png
diff --git a/cairo/test/reference/stroke-ctm-caps.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-ctm-caps.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.ps2.ref.png
diff --git a/cairo/test/reference/stroke-ctm-caps.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-ctm-caps.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.ps3.ref.png
diff --git a/cairo/test/reference/stroke-ctm-caps.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-ctm-caps.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.quartz.ref.png
diff --git a/cairo/test/reference/stroke-ctm-caps.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-ctm-caps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.ref.png
diff --git a/cairo/test/reference/stroke-ctm-caps.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-ctm-caps.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.traps.argb32.ref.png
diff --git a/cairo/test/reference/stroke-ctm-caps.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-ctm-caps.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.traps.rgb24.ref.png
diff --git a/cairo/test/reference/stroke-image.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-image.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-image.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-image.argb32.ref.png
diff --git a/cairo/test/reference/stroke-image.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-image.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-image.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-image.base.argb32.ref.png
diff --git a/cairo/test/reference/stroke-image.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-image.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-image.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-image.base.rgb24.ref.png
diff --git a/cairo/test/reference/stroke-image.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-image.image16.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-image.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-image.image16.ref.png
diff --git a/cairo/test/reference/stroke-image.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-image.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-image.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-image.pdf.ref.png
diff --git a/cairo/test/reference/stroke-image.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-image.ps.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-image.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-image.ps.ref.png
diff --git a/cairo/test/reference/stroke-image.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-image.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-image.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-image.quartz.ref.png
diff --git a/cairo/test/reference/stroke-image.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-image.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-image.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-image.rgb24.ref.png
diff --git a/cairo/test/reference/stroke-image.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-image.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-image.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-image.traps.argb32.ref.png
diff --git a/cairo/test/reference/stroke-image.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-image.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-image.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-image.traps.rgb24.ref.png
diff --git a/cairo/test/reference/stroke-open-box.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-open-box.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-open-box.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-open-box.base.argb32.ref.png
diff --git a/cairo/test/reference/stroke-open-box.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-open-box.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-open-box.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-open-box.base.rgb24.ref.png
diff --git a/cairo/test/reference/stroke-open-box.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-open-box.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-open-box.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-open-box.ref.png
diff --git a/cairo/test/reference/stroke-pattern.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-pattern.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-pattern.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-pattern.argb32.ref.png
diff --git a/cairo/test/reference/stroke-pattern.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-pattern.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-pattern.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-pattern.base.argb32.ref.png
diff --git a/cairo/test/reference/stroke-pattern.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-pattern.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-pattern.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-pattern.base.rgb24.ref.png
diff --git a/cairo/test/reference/stroke-pattern.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-pattern.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-pattern.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-pattern.rgb24.ref.png
diff --git a/cairo/test/reference/stroke-pattern.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-pattern.traps.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-pattern.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-pattern.traps.ref.png
diff --git a/cairo/test/reference/stroke-xlib-fallback.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-xlib-fallback.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-xlib-fallback.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-xlib-fallback.rgb24.ref.png
diff --git a/cairo/test/reference/stroke-xlib-window.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-xlib-window.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-xlib-window.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-xlib-window.rgb24.ref.png
diff --git a/cairo/test/reference/stroke-xlib.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-xlib.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-xlib.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-xlib.argb32.ref.png
diff --git a/cairo/test/reference/stroke-xlib.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/stroke-xlib.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/stroke-xlib.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/stroke-xlib.rgb24.ref.png
diff --git a/cairo/test/reference/subsurface-image-repeat.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-image-repeat.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-image-repeat.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-image-repeat.base.argb32.ref.png
diff --git a/cairo/test/reference/subsurface-image-repeat.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-image-repeat.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-image-repeat.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-image-repeat.base.rgb24.ref.png
diff --git a/cairo/test/reference/subsurface-image-repeat.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-image-repeat.image16.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-image-repeat.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-image-repeat.image16.ref.png
diff --git a/cairo/test/reference/subsurface-image-repeat.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-image-repeat.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-image-repeat.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-image-repeat.ref.png
diff --git a/cairo/test/reference/subsurface-modify-child.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-modify-child.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-modify-child.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-modify-child.base.argb32.ref.png
diff --git a/cairo/test/reference/subsurface-modify-child.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-modify-child.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-modify-child.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-modify-child.base.rgb24.ref.png
diff --git a/cairo/test/reference/subsurface-modify-child.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-modify-child.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-modify-child.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-modify-child.ref.png
diff --git a/cairo/test/reference/subsurface-modify-parent.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-modify-parent.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-modify-parent.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-modify-parent.base.argb32.ref.png
diff --git a/cairo/test/reference/subsurface-modify-parent.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-modify-parent.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-modify-parent.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-modify-parent.base.rgb24.ref.png
diff --git a/cairo/test/reference/subsurface-modify-parent.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-modify-parent.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-modify-parent.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-modify-parent.ref.png
diff --git a/cairo/test/reference/subsurface-outside-target.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-outside-target.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-outside-target.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-outside-target.argb32.ref.png
diff --git a/cairo/test/reference/subsurface-outside-target.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-outside-target.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-outside-target.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-outside-target.base.argb32.ref.png
diff --git a/cairo/test/reference/subsurface-outside-target.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-outside-target.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-outside-target.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-outside-target.base.rgb24.ref.png
diff --git a/cairo/test/reference/subsurface-outside-target.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-outside-target.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-outside-target.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-outside-target.rgb24.ref.png
diff --git a/cairo/test/reference/subsurface-pad.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-pad.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-pad.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-pad.base.argb32.ref.png
diff --git a/cairo/test/reference/subsurface-pad.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-pad.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-pad.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-pad.base.rgb24.ref.png
diff --git a/cairo/test/reference/subsurface-pad.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-pad.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/subsurface-pad.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-pad.quartz.xfail.png
diff --git a/cairo/test/reference/subsurface-pad.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-pad.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-pad.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-pad.ref.png
diff --git a/cairo/test/reference/subsurface-reflect.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-reflect.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-reflect.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-reflect.base.argb32.ref.png
diff --git a/cairo/test/reference/subsurface-reflect.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-reflect.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-reflect.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-reflect.base.rgb24.ref.png
diff --git a/cairo/test/reference/subsurface-reflect.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-reflect.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-reflect.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-reflect.ref.png
diff --git a/cairo/test/reference/subsurface-repeat.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-repeat.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-repeat.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-repeat.base.argb32.ref.png
diff --git a/cairo/test/reference/subsurface-repeat.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-repeat.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-repeat.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-repeat.base.rgb24.ref.png
diff --git a/cairo/test/reference/subsurface-repeat.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-repeat.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-repeat.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-repeat.ref.png
diff --git a/cairo/test/reference/subsurface-scale.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-scale.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-scale.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-scale.argb32.ref.png
diff --git a/cairo/test/reference/subsurface-scale.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-scale.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-scale.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-scale.base.argb32.ref.png
diff --git a/cairo/test/reference/subsurface-scale.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-scale.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-scale.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-scale.base.rgb24.ref.png
diff --git a/cairo/test/reference/subsurface-scale.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-scale.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-scale.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-scale.rgb24.ref.png
diff --git a/cairo/test/reference/subsurface-scale.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-scale.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-scale.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-scale.traps.argb32.ref.png
diff --git a/cairo/test/reference/subsurface-scale.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-scale.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-scale.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-scale.traps.rgb24.ref.png
diff --git a/cairo/test/reference/subsurface-similar-repeat.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-similar-repeat.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-similar-repeat.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-similar-repeat.base.argb32.ref.png
diff --git a/cairo/test/reference/subsurface-similar-repeat.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-similar-repeat.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-similar-repeat.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-similar-repeat.base.rgb24.ref.png
diff --git a/cairo/test/reference/subsurface-similar-repeat.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface-similar-repeat.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface-similar-repeat.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface-similar-repeat.ref.png
diff --git a/cairo/test/reference/subsurface.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface.argb32.ref.png
diff --git a/cairo/test/reference/subsurface.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface.base.argb32.ref.png
diff --git a/cairo/test/reference/subsurface.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface.base.rgb24.ref.png
diff --git a/cairo/test/reference/subsurface.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface.image16.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface.image16.ref.png
diff --git a/cairo/test/reference/subsurface.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface.ps.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface.ps.ref.png
diff --git a/cairo/test/reference/subsurface.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface.rgb24.ref.png
diff --git a/cairo/test/reference/subsurface.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface.traps.argb32.ref.png
diff --git a/cairo/test/reference/subsurface.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/subsurface.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/subsurface.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/subsurface.traps.rgb24.ref.png
diff --git a/cairo/test/reference/surface-pattern-big-scale-down.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-big-scale-down.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-big-scale-down.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-big-scale-down.base.argb32.ref.png
diff --git a/cairo/test/reference/surface-pattern-big-scale-down.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-big-scale-down.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-big-scale-down.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-big-scale-down.base.rgb24.ref.png
diff --git a/cairo/test/reference/surface-pattern-big-scale-down.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-big-scale-down.ps.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-big-scale-down.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-big-scale-down.ps.ref.png
diff --git a/cairo/test/reference/surface-pattern-big-scale-down.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-big-scale-down.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-big-scale-down.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-big-scale-down.quartz.ref.png
diff --git a/cairo/test/reference/surface-pattern-big-scale-down.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-big-scale-down.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-big-scale-down.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-big-scale-down.ref.png
diff --git a/cairo/test/reference/surface-pattern-operator.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-operator.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.argb32.ref.png
diff --git a/cairo/test/reference/surface-pattern-operator.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-operator.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.base.argb32.ref.png
diff --git a/cairo/test/reference/surface-pattern-operator.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-operator.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.base.rgb24.ref.png
diff --git a/cairo/test/reference/surface-pattern-operator.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.image16.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-operator.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.image16.ref.png
diff --git a/cairo/test/reference/surface-pattern-operator.pdf.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.pdf.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-operator.pdf.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.pdf.argb32.xfail.png
diff --git a/cairo/test/reference/surface-pattern-operator.pdf.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.pdf.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-operator.pdf.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.pdf.rgb24.xfail.png
diff --git a/cairo/test/reference/surface-pattern-operator.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-operator.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.quartz.argb32.ref.png
diff --git a/cairo/test/reference/surface-pattern-operator.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-operator.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/surface-pattern-operator.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-operator.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.rgb24.ref.png
diff --git a/cairo/test/reference/surface-pattern-operator.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-operator.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.traps.argb32.ref.png
diff --git a/cairo/test/reference/surface-pattern-operator.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-operator.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-operator.traps.rgb24.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down-extend-none.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-none.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down-extend-none.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-none.base.argb32.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down-extend-none.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-none.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down-extend-none.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-none.base.rgb24.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down-extend-none.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-none.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down-extend-none.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-none.quartz.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down-extend-none.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-none.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down-extend-none.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-none.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down-extend-pad.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-pad.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down-extend-pad.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-pad.base.argb32.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down-extend-pad.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-pad.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down-extend-pad.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-pad.base.rgb24.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down-extend-pad.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-pad.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down-extend-pad.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-pad.quartz.xfail.png
diff --git a/cairo/test/reference/surface-pattern-scale-down-extend-pad.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-pad.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down-extend-pad.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-pad.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down-extend-reflect.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-reflect.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down-extend-reflect.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-reflect.base.argb32.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down-extend-reflect.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-reflect.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down-extend-reflect.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-reflect.base.rgb24.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down-extend-reflect.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-reflect.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down-extend-reflect.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-reflect.quartz.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down-extend-reflect.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-reflect.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down-extend-reflect.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-reflect.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down-extend-repeat.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-repeat.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down-extend-repeat.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-repeat.base.argb32.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down-extend-repeat.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-repeat.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down-extend-repeat.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-repeat.base.rgb24.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down-extend-repeat.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-repeat.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down-extend-repeat.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-repeat.quartz.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down-extend-repeat.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-repeat.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down-extend-repeat.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down-extend-repeat.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down.argb32.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down.base.argb32.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down.base.rgb24.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down.image16.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down.image16.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down.pdf.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down.ps2.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down.ps3.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down.quartz.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-down.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-down.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-down.rgb24.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-up.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-up.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-up.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-up.argb32.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-up.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-up.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-up.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-up.base.argb32.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-up.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-up.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-up.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-up.base.rgb24.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-up.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-up.image16.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-up.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-up.image16.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-up.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-up.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-up.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-up.pdf.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-up.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-up.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-up.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-up.ps2.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-up.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-up.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-up.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-up.ps3.ref.png
diff --git a/cairo/test/reference/surface-pattern-scale-up.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-up.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-up.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-up.quartz.xfail.png
diff --git a/cairo/test/reference/surface-pattern-scale-up.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-up.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern-scale-up.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern-scale-up.rgb24.ref.png
diff --git a/cairo/test/reference/surface-pattern.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern.argb32.ref.png
diff --git a/cairo/test/reference/surface-pattern.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern.base.argb32.ref.png
diff --git a/cairo/test/reference/surface-pattern.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern.base.rgb24.ref.png
diff --git a/cairo/test/reference/surface-pattern.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern.image16.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern.image16.ref.png
diff --git a/cairo/test/reference/surface-pattern.pdf.xfail.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern.pdf.xfail.png
similarity index 100%
rename from cairo/test/reference/surface-pattern.pdf.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern.pdf.xfail.png
diff --git a/cairo/test/reference/surface-pattern.ps.xfail.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern.ps.xfail.png
similarity index 100%
rename from cairo/test/reference/surface-pattern.ps.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern.ps.xfail.png
diff --git a/cairo/test/reference/surface-pattern.quartz.xfail.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern.quartz.xfail.png
similarity index 100%
rename from cairo/test/reference/surface-pattern.quartz.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern.quartz.xfail.png
diff --git a/cairo/test/reference/surface-pattern.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/surface-pattern.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern.rgb24.ref.png
diff --git a/cairo/test/reference/surface-pattern.svg.xfail.png b/io2d/src/3rd-party/cairo/test/reference/surface-pattern.svg.xfail.png
similarity index 100%
rename from cairo/test/reference/surface-pattern.svg.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/surface-pattern.svg.xfail.png
diff --git a/cairo/test/reference/svg-surface-source.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/svg-surface-source.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/svg-surface-source.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/svg-surface-source.argb32.ref.png
diff --git a/cairo/test/reference/svg-surface-source.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/svg-surface-source.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/svg-surface-source.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/svg-surface-source.base.argb32.ref.png
diff --git a/cairo/test/reference/svg-surface-source.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/svg-surface-source.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/svg-surface-source.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/svg-surface-source.base.rgb24.ref.png
diff --git a/cairo/test/reference/svg-surface-source.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/svg-surface-source.image16.ref.png
similarity index 100%
rename from cairo/test/reference/svg-surface-source.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/svg-surface-source.image16.ref.png
diff --git a/cairo/test/reference/svg-surface-source.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/svg-surface-source.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/svg-surface-source.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/svg-surface-source.rgb24.ref.png
diff --git a/cairo/test/reference/svg-surface-source.svg12.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/svg-surface-source.svg12.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/svg-surface-source.svg12.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/svg-surface-source.svg12.argb32.xfail.png
diff --git a/cairo/test/reference/svg-surface-source.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/svg-surface-source.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/svg-surface-source.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/svg-surface-source.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/text-antialias-gray.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-gray.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-gray.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-gray.argb32.ref.png
diff --git a/cairo/test/reference/text-antialias-gray.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-gray.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-gray.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-gray.base.argb32.ref.png
diff --git a/cairo/test/reference/text-antialias-gray.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-gray.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-gray.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-gray.base.rgb24.ref.png
diff --git a/cairo/test/reference/text-antialias-gray.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-gray.image16.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-gray.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-gray.image16.ref.png
diff --git a/cairo/test/reference/text-antialias-gray.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-gray.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-gray.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-gray.quartz.ref.png
diff --git a/cairo/test/reference/text-antialias-gray.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-gray.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-gray.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-gray.rgb24.ref.png
diff --git a/cairo/test/reference/text-antialias-gray.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-gray.traps.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-gray.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-gray.traps.ref.png
diff --git a/cairo/test/reference/text-antialias-none.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-none.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-none.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-none.base.argb32.ref.png
diff --git a/cairo/test/reference/text-antialias-none.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-none.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-none.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-none.base.rgb24.ref.png
diff --git a/cairo/test/reference/text-antialias-none.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-none.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-none.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-none.quartz.ref.png
diff --git a/cairo/test/reference/text-antialias-none.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-none.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-none.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-none.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-bgr.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-bgr.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-bgr.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-bgr.argb32.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-bgr.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-bgr.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-bgr.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-bgr.base.argb32.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-bgr.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-bgr.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-bgr.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-bgr.base.rgb24.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-bgr.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-bgr.image16.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-bgr.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-bgr.image16.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-bgr.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-bgr.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-bgr.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-bgr.mask.argb32.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-bgr.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-bgr.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-bgr.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-bgr.mask.rgb24.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-bgr.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-bgr.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-bgr.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-bgr.rgb24.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-bgr.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-bgr.traps.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-bgr.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-bgr.traps.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-rgb.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-rgb.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-rgb.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-rgb.argb32.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-rgb.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-rgb.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-rgb.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-rgb.base.argb32.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-rgb.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-rgb.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-rgb.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-rgb.base.rgb24.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-rgb.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-rgb.image16.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-rgb.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-rgb.image16.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-rgb.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-rgb.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-rgb.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-rgb.mask.argb32.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-rgb.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-rgb.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-rgb.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-rgb.mask.rgb24.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-rgb.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-rgb.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-rgb.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-rgb.rgb24.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-rgb.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-rgb.traps.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-rgb.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-rgb.traps.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-vbgr.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vbgr.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-vbgr.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vbgr.argb32.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-vbgr.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vbgr.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-vbgr.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vbgr.base.argb32.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-vbgr.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vbgr.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-vbgr.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vbgr.base.rgb24.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-vbgr.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vbgr.image16.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-vbgr.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vbgr.image16.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-vbgr.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vbgr.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-vbgr.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vbgr.mask.argb32.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-vbgr.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vbgr.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-vbgr.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vbgr.mask.rgb24.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-vbgr.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vbgr.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-vbgr.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vbgr.rgb24.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-vbgr.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vbgr.traps.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-vbgr.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vbgr.traps.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-vrgb.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vrgb.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-vrgb.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vrgb.argb32.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-vrgb.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vrgb.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-vrgb.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vrgb.base.argb32.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-vrgb.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vrgb.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-vrgb.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vrgb.base.rgb24.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-vrgb.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vrgb.image16.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-vrgb.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vrgb.image16.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-vrgb.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vrgb.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-vrgb.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vrgb.mask.argb32.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-vrgb.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vrgb.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-vrgb.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vrgb.mask.rgb24.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-vrgb.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vrgb.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-vrgb.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vrgb.rgb24.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel-vrgb.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vrgb.traps.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel-vrgb.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel-vrgb.traps.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.argb32.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.base.argb32.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel.base.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.base.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel.base.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.base.argb32.xfail.png
diff --git a/cairo/test/reference/text-antialias-subpixel.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.base.rgb24.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel.base.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.base.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel.base.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.base.rgb24.xfail.png
diff --git a/cairo/test/reference/text-antialias-subpixel.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.image16.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.image16.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.mask.argb32.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.mask.rgb24.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.quartz.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.rgb24.ref.png
diff --git a/cairo/test/reference/text-antialias-subpixel.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.traps.ref.png
similarity index 100%
rename from cairo/test/reference/text-antialias-subpixel.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-antialias-subpixel.traps.ref.png
diff --git a/cairo/test/reference/text-glyph-range.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-glyph-range.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-glyph-range.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-glyph-range.argb32.ref.png
diff --git a/cairo/test/reference/text-glyph-range.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-glyph-range.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-glyph-range.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-glyph-range.base.argb32.ref.png
diff --git a/cairo/test/reference/text-glyph-range.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-glyph-range.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-glyph-range.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-glyph-range.base.rgb24.ref.png
diff --git a/cairo/test/reference/text-glyph-range.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-glyph-range.image16.ref.png
similarity index 100%
rename from cairo/test/reference/text-glyph-range.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-glyph-range.image16.ref.png
diff --git a/cairo/test/reference/text-glyph-range.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-glyph-range.ps.ref.png
similarity index 100%
rename from cairo/test/reference/text-glyph-range.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-glyph-range.ps.ref.png
diff --git a/cairo/test/reference/text-glyph-range.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-glyph-range.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/text-glyph-range.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-glyph-range.quartz.ref.png
diff --git a/cairo/test/reference/text-glyph-range.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-glyph-range.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-glyph-range.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-glyph-range.rgb24.ref.png
diff --git a/cairo/test/reference/text-glyph-range.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-glyph-range.traps.ref.png
similarity index 100%
rename from cairo/test/reference/text-glyph-range.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-glyph-range.traps.ref.png
diff --git a/cairo/test/reference/text-pattern.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-pattern.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-pattern.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-pattern.argb32.ref.png
diff --git a/cairo/test/reference/text-pattern.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-pattern.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-pattern.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-pattern.base.argb32.ref.png
diff --git a/cairo/test/reference/text-pattern.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-pattern.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-pattern.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-pattern.base.rgb24.ref.png
diff --git a/cairo/test/reference/text-pattern.pdf.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-pattern.pdf.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-pattern.pdf.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-pattern.pdf.argb32.ref.png
diff --git a/cairo/test/reference/text-pattern.pdf.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-pattern.pdf.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-pattern.pdf.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-pattern.pdf.rgb24.ref.png
diff --git a/cairo/test/reference/text-pattern.ps2.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-pattern.ps2.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-pattern.ps2.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-pattern.ps2.argb32.ref.png
diff --git a/cairo/test/reference/text-pattern.ps2.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-pattern.ps2.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-pattern.ps2.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-pattern.ps2.rgb24.ref.png
diff --git a/cairo/test/reference/text-pattern.ps3.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-pattern.ps3.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-pattern.ps3.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-pattern.ps3.argb32.ref.png
diff --git a/cairo/test/reference/text-pattern.ps3.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-pattern.ps3.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-pattern.ps3.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-pattern.ps3.rgb24.ref.png
diff --git a/cairo/test/reference/text-pattern.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-pattern.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-pattern.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-pattern.quartz.argb32.ref.png
diff --git a/cairo/test/reference/text-pattern.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-pattern.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-pattern.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-pattern.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/text-pattern.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-pattern.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-pattern.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-pattern.rgb24.ref.png
diff --git a/cairo/test/reference/text-pattern.svg.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-pattern.svg.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-pattern.svg.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-pattern.svg.argb32.ref.png
diff --git a/cairo/test/reference/text-pattern.svg.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-pattern.svg.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-pattern.svg.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-pattern.svg.rgb24.ref.png
diff --git a/cairo/test/reference/text-pattern.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-pattern.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-pattern.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-pattern.traps.argb32.ref.png
diff --git a/cairo/test/reference/text-pattern.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-pattern.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-pattern.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-pattern.traps.rgb24.ref.png
diff --git a/cairo/test/reference/text-rotate.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-rotate.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-rotate.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-rotate.base.argb32.ref.png
diff --git a/cairo/test/reference/text-rotate.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-rotate.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-rotate.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-rotate.base.rgb24.ref.png
diff --git a/cairo/test/reference/text-rotate.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-rotate.image16.ref.png
similarity index 100%
rename from cairo/test/reference/text-rotate.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-rotate.image16.ref.png
diff --git a/cairo/test/reference/text-rotate.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-rotate.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-rotate.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-rotate.mask.argb32.ref.png
diff --git a/cairo/test/reference/text-rotate.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-rotate.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-rotate.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-rotate.mask.rgb24.ref.png
diff --git a/cairo/test/reference/text-rotate.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-rotate.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/text-rotate.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-rotate.pdf.ref.png
diff --git a/cairo/test/reference/text-rotate.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-rotate.ps.ref.png
similarity index 100%
rename from cairo/test/reference/text-rotate.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-rotate.ps.ref.png
diff --git a/cairo/test/reference/text-rotate.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-rotate.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/text-rotate.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-rotate.quartz.ref.png
diff --git a/cairo/test/reference/text-rotate.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-rotate.ref.png
similarity index 100%
rename from cairo/test/reference/text-rotate.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-rotate.ref.png
diff --git a/cairo/test/reference/text-rotate.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-rotate.svg.ref.png
similarity index 100%
rename from cairo/test/reference/text-rotate.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-rotate.svg.ref.png
diff --git a/cairo/test/reference/text-rotate.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-rotate.traps.ref.png
similarity index 100%
rename from cairo/test/reference/text-rotate.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-rotate.traps.ref.png
diff --git a/cairo/test/reference/text-rotate.xlib-fallback.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-rotate.xlib-fallback.ref.png
similarity index 100%
rename from cairo/test/reference/text-rotate.xlib-fallback.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-rotate.xlib-fallback.ref.png
diff --git a/cairo/test/reference/text-transform.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-transform.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-transform.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-transform.base.argb32.ref.png
diff --git a/cairo/test/reference/text-transform.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-transform.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-transform.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-transform.base.rgb24.ref.png
diff --git a/cairo/test/reference/text-transform.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-transform.image16.ref.png
similarity index 100%
rename from cairo/test/reference/text-transform.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-transform.image16.ref.png
diff --git a/cairo/test/reference/text-transform.pdf.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-transform.pdf.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/text-transform.pdf.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-transform.pdf.argb32.ref.png
diff --git a/cairo/test/reference/text-transform.pdf.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-transform.pdf.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/text-transform.pdf.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-transform.pdf.rgb24.ref.png
diff --git a/cairo/test/reference/text-transform.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-transform.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/text-transform.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-transform.ps2.ref.png
diff --git a/cairo/test/reference/text-transform.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-transform.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/text-transform.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-transform.ps3.ref.png
diff --git a/cairo/test/reference/text-transform.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-transform.ref.png
similarity index 100%
rename from cairo/test/reference/text-transform.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-transform.ref.png
diff --git a/cairo/test/reference/text-transform.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/text-transform.svg.ref.png
similarity index 100%
rename from cairo/test/reference/text-transform.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/text-transform.svg.ref.png
diff --git a/cairo/test/reference/tiger.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/tiger.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/tiger.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/tiger.argb32.ref.png
diff --git a/cairo/test/reference/tiger.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/tiger.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/tiger.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/tiger.base.argb32.ref.png
diff --git a/cairo/test/reference/tiger.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/tiger.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/tiger.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/tiger.base.rgb24.ref.png
diff --git a/cairo/test/reference/tiger.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/tiger.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/tiger.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/tiger.rgb24.ref.png
diff --git a/cairo/test/reference/tiger.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/tiger.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/tiger.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/tiger.traps.argb32.ref.png
diff --git a/cairo/test/reference/tiger.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/tiger.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/tiger.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/tiger.traps.rgb24.ref.png
diff --git a/cairo/test/reference/tighten-bounds.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/tighten-bounds.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/tighten-bounds.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/tighten-bounds.argb32.ref.png
diff --git a/cairo/test/reference/tighten-bounds.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/tighten-bounds.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/tighten-bounds.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/tighten-bounds.base.argb32.ref.png
diff --git a/cairo/test/reference/tighten-bounds.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/tighten-bounds.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/tighten-bounds.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/tighten-bounds.base.rgb24.ref.png
diff --git a/cairo/test/reference/tighten-bounds.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/tighten-bounds.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/tighten-bounds.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/tighten-bounds.rgb24.ref.png
diff --git a/cairo/test/reference/tighten-bounds.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/tighten-bounds.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/tighten-bounds.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/tighten-bounds.traps.argb32.ref.png
diff --git a/cairo/test/reference/tighten-bounds.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/tighten-bounds.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/tighten-bounds.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/tighten-bounds.traps.rgb24.ref.png
diff --git a/cairo/test/reference/transforms.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/transforms.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/transforms.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/transforms.argb32.ref.png
diff --git a/cairo/test/reference/transforms.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/transforms.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/transforms.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/transforms.base.argb32.ref.png
diff --git a/cairo/test/reference/transforms.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/transforms.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/transforms.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/transforms.base.rgb24.ref.png
diff --git a/cairo/test/reference/transforms.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/transforms.image16.ref.png
similarity index 100%
rename from cairo/test/reference/transforms.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/transforms.image16.ref.png
diff --git a/cairo/test/reference/transforms.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/transforms.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/transforms.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/transforms.ps2.ref.png
diff --git a/cairo/test/reference/transforms.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/transforms.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/transforms.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/transforms.ps3.ref.png
diff --git a/cairo/test/reference/transforms.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/transforms.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/transforms.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/transforms.rgb24.ref.png
diff --git a/cairo/test/reference/transforms.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/transforms.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/transforms.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/transforms.traps.argb32.ref.png
diff --git a/cairo/test/reference/transforms.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/transforms.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/transforms.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/transforms.traps.rgb24.ref.png
diff --git a/cairo/test/reference/translate-show-surface.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/translate-show-surface.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/translate-show-surface.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/translate-show-surface.base.argb32.ref.png
diff --git a/cairo/test/reference/translate-show-surface.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/translate-show-surface.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/translate-show-surface.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/translate-show-surface.base.rgb24.ref.png
diff --git a/cairo/test/reference/translate-show-surface.ref.png b/io2d/src/3rd-party/cairo/test/reference/translate-show-surface.ref.png
similarity index 100%
rename from cairo/test/reference/translate-show-surface.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/translate-show-surface.ref.png
diff --git a/cairo/test/reference/trap-clip.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/trap-clip.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/trap-clip.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/trap-clip.argb32.ref.png
diff --git a/cairo/test/reference/trap-clip.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/trap-clip.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/trap-clip.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/trap-clip.base.argb32.ref.png
diff --git a/cairo/test/reference/trap-clip.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/trap-clip.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/trap-clip.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/trap-clip.base.rgb24.ref.png
diff --git a/cairo/test/reference/trap-clip.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/trap-clip.image16.ref.png
similarity index 100%
rename from cairo/test/reference/trap-clip.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/trap-clip.image16.ref.png
diff --git a/cairo/test/reference/trap-clip.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/trap-clip.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/trap-clip.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/trap-clip.mask.argb32.ref.png
diff --git a/cairo/test/reference/trap-clip.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/trap-clip.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/trap-clip.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/trap-clip.mask.rgb24.ref.png
diff --git a/cairo/test/reference/trap-clip.ps2.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/trap-clip.ps2.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/trap-clip.ps2.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/trap-clip.ps2.argb32.ref.png
diff --git a/cairo/test/reference/trap-clip.ps2.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/trap-clip.ps2.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/trap-clip.ps2.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/trap-clip.ps2.rgb24.ref.png
diff --git a/cairo/test/reference/trap-clip.ps3.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/trap-clip.ps3.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/trap-clip.ps3.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/trap-clip.ps3.argb32.ref.png
diff --git a/cairo/test/reference/trap-clip.ps3.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/trap-clip.ps3.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/trap-clip.ps3.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/trap-clip.ps3.rgb24.ref.png
diff --git a/cairo/test/reference/trap-clip.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/trap-clip.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/trap-clip.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/trap-clip.quartz.argb32.ref.png
diff --git a/cairo/test/reference/trap-clip.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/trap-clip.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/trap-clip.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/trap-clip.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/trap-clip.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/trap-clip.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/trap-clip.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/trap-clip.rgb24.ref.png
diff --git a/cairo/test/reference/trap-clip.test-paginated.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/trap-clip.test-paginated.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/trap-clip.test-paginated.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/trap-clip.test-paginated.argb32.ref.png
diff --git a/cairo/test/reference/trap-clip.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/trap-clip.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/trap-clip.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/trap-clip.traps.argb32.ref.png
diff --git a/cairo/test/reference/trap-clip.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/trap-clip.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/trap-clip.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/trap-clip.traps.rgb24.ref.png
diff --git a/cairo/test/reference/twin-antialias-gray.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-gray.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-gray.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-gray.base.argb32.ref.png
diff --git a/cairo/test/reference/twin-antialias-gray.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-gray.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-gray.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-gray.base.rgb24.ref.png
diff --git a/cairo/test/reference/twin-antialias-gray.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-gray.image16.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-gray.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-gray.image16.ref.png
diff --git a/cairo/test/reference/twin-antialias-gray.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-gray.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-gray.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-gray.mask.argb32.ref.png
diff --git a/cairo/test/reference/twin-antialias-gray.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-gray.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-gray.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-gray.mask.rgb24.ref.png
diff --git a/cairo/test/reference/twin-antialias-gray.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-gray.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-gray.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-gray.ref.png
diff --git a/cairo/test/reference/twin-antialias-gray.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-gray.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-gray.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-gray.traps.argb32.ref.png
diff --git a/cairo/test/reference/twin-antialias-gray.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-gray.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-gray.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-gray.traps.rgb24.ref.png
diff --git a/cairo/test/reference/twin-antialias-mixed.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-mixed.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-mixed.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-mixed.argb32.ref.png
diff --git a/cairo/test/reference/twin-antialias-mixed.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-mixed.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-mixed.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-mixed.base.argb32.ref.png
diff --git a/cairo/test/reference/twin-antialias-mixed.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-mixed.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-mixed.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-mixed.base.rgb24.ref.png
diff --git a/cairo/test/reference/twin-antialias-mixed.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-mixed.image16.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-mixed.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-mixed.image16.ref.png
diff --git a/cairo/test/reference/twin-antialias-mixed.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-mixed.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-mixed.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-mixed.rgb24.ref.png
diff --git a/cairo/test/reference/twin-antialias-mixed.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-mixed.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-mixed.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-mixed.traps.argb32.ref.png
diff --git a/cairo/test/reference/twin-antialias-mixed.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-mixed.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-mixed.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-mixed.traps.rgb24.ref.png
diff --git a/cairo/test/reference/twin-antialias-none.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-none.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-none.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-none.argb32.ref.png
diff --git a/cairo/test/reference/twin-antialias-none.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-none.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-none.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-none.base.argb32.ref.png
diff --git a/cairo/test/reference/twin-antialias-none.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-none.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-none.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-none.base.rgb24.ref.png
diff --git a/cairo/test/reference/twin-antialias-none.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-none.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-none.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-none.rgb24.ref.png
diff --git a/cairo/test/reference/twin-antialias-none.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-none.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-none.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-none.traps.argb32.ref.png
diff --git a/cairo/test/reference/twin-antialias-none.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-none.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-none.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-none.traps.rgb24.ref.png
diff --git a/cairo/test/reference/twin-antialias-subpixel.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-subpixel.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-subpixel.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-subpixel.base.argb32.ref.png
diff --git a/cairo/test/reference/twin-antialias-subpixel.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-subpixel.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-subpixel.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-subpixel.base.rgb24.ref.png
diff --git a/cairo/test/reference/twin-antialias-subpixel.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-subpixel.image16.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-subpixel.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-subpixel.image16.ref.png
diff --git a/cairo/test/reference/twin-antialias-subpixel.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-subpixel.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-subpixel.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-subpixel.mask.argb32.ref.png
diff --git a/cairo/test/reference/twin-antialias-subpixel.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-subpixel.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-subpixel.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-subpixel.mask.rgb24.ref.png
diff --git a/cairo/test/reference/twin-antialias-subpixel.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-subpixel.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-subpixel.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-subpixel.ref.png
diff --git a/cairo/test/reference/twin-antialias-subpixel.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-subpixel.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-subpixel.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-subpixel.traps.argb32.ref.png
diff --git a/cairo/test/reference/twin-antialias-subpixel.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin-antialias-subpixel.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/twin-antialias-subpixel.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin-antialias-subpixel.traps.rgb24.ref.png
diff --git a/cairo/test/reference/twin.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/twin.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin.base.argb32.ref.png
diff --git a/cairo/test/reference/twin.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/twin.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin.base.rgb24.ref.png
diff --git a/cairo/test/reference/twin.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin.image16.ref.png
similarity index 100%
rename from cairo/test/reference/twin.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin.image16.ref.png
diff --git a/cairo/test/reference/twin.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/twin.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin.mask.argb32.ref.png
diff --git a/cairo/test/reference/twin.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/twin.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin.mask.rgb24.ref.png
diff --git a/cairo/test/reference/twin.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin.ps.ref.png
similarity index 100%
rename from cairo/test/reference/twin.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin.ps.ref.png
diff --git a/cairo/test/reference/twin.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin.ref.png
similarity index 100%
rename from cairo/test/reference/twin.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin.ref.png
diff --git a/cairo/test/reference/twin.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin.svg.ref.png
similarity index 100%
rename from cairo/test/reference/twin.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin.svg.ref.png
diff --git a/cairo/test/reference/twin.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/twin.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin.traps.argb32.ref.png
diff --git a/cairo/test/reference/twin.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/twin.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/twin.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/twin.traps.rgb24.ref.png
diff --git a/cairo/test/reference/unaligned-box.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/unaligned-box.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/unaligned-box.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unaligned-box.base.argb32.ref.png
diff --git a/cairo/test/reference/unaligned-box.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/unaligned-box.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/unaligned-box.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unaligned-box.base.rgb24.ref.png
diff --git a/cairo/test/reference/unaligned-box.ref.png b/io2d/src/3rd-party/cairo/test/reference/unaligned-box.ref.png
similarity index 100%
rename from cairo/test/reference/unaligned-box.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unaligned-box.ref.png
diff --git a/cairo/test/reference/unaligned-box.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/unaligned-box.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/unaligned-box.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unaligned-box.traps.argb32.ref.png
diff --git a/cairo/test/reference/unaligned-box.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/unaligned-box.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/unaligned-box.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unaligned-box.traps.rgb24.ref.png
diff --git a/cairo/test/reference/unantialiased-shapes.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/unantialiased-shapes.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/unantialiased-shapes.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unantialiased-shapes.base.argb32.ref.png
diff --git a/cairo/test/reference/unantialiased-shapes.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/unantialiased-shapes.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/unantialiased-shapes.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unantialiased-shapes.base.rgb24.ref.png
diff --git a/cairo/test/reference/unantialiased-shapes.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/unantialiased-shapes.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/unantialiased-shapes.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unantialiased-shapes.quartz.ref.png
diff --git a/cairo/test/reference/unantialiased-shapes.ref.png b/io2d/src/3rd-party/cairo/test/reference/unantialiased-shapes.ref.png
similarity index 100%
rename from cairo/test/reference/unantialiased-shapes.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unantialiased-shapes.ref.png
diff --git a/cairo/test/reference/unantialiased-shapes.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/unantialiased-shapes.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/unantialiased-shapes.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unantialiased-shapes.traps.argb32.ref.png
diff --git a/cairo/test/reference/unantialiased-shapes.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/unantialiased-shapes.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/unantialiased-shapes.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unantialiased-shapes.traps.rgb24.ref.png
diff --git a/cairo/test/reference/unbounded-operator.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/unbounded-operator.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/unbounded-operator.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unbounded-operator.argb32.ref.png
diff --git a/cairo/test/reference/unbounded-operator.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/unbounded-operator.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/unbounded-operator.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unbounded-operator.base.argb32.ref.png
diff --git a/cairo/test/reference/unbounded-operator.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/unbounded-operator.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/unbounded-operator.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unbounded-operator.base.rgb24.ref.png
diff --git a/cairo/test/reference/unbounded-operator.gl.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/unbounded-operator.gl.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/unbounded-operator.gl.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/unbounded-operator.gl.argb32.xfail.png
diff --git a/cairo/test/reference/unbounded-operator.gl.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/unbounded-operator.gl.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/unbounded-operator.gl.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/unbounded-operator.gl.rgb24.xfail.png
diff --git a/cairo/test/reference/unbounded-operator.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/unbounded-operator.image16.ref.png
similarity index 100%
rename from cairo/test/reference/unbounded-operator.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unbounded-operator.image16.ref.png
diff --git a/cairo/test/reference/unbounded-operator.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/unbounded-operator.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/unbounded-operator.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unbounded-operator.mask.argb32.ref.png
diff --git a/cairo/test/reference/unbounded-operator.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/unbounded-operator.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/unbounded-operator.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unbounded-operator.mask.rgb24.ref.png
diff --git a/cairo/test/reference/unbounded-operator.pdf.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/unbounded-operator.pdf.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/unbounded-operator.pdf.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unbounded-operator.pdf.argb32.ref.png
diff --git a/cairo/test/reference/unbounded-operator.ps2.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/unbounded-operator.ps2.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/unbounded-operator.ps2.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unbounded-operator.ps2.argb32.ref.png
diff --git a/cairo/test/reference/unbounded-operator.ps3.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/unbounded-operator.ps3.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/unbounded-operator.ps3.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unbounded-operator.ps3.argb32.ref.png
diff --git a/cairo/test/reference/unbounded-operator.quartz.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/unbounded-operator.quartz.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/unbounded-operator.quartz.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unbounded-operator.quartz.argb32.ref.png
diff --git a/cairo/test/reference/unbounded-operator.quartz.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/unbounded-operator.quartz.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/unbounded-operator.quartz.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unbounded-operator.quartz.rgb24.ref.png
diff --git a/cairo/test/reference/unbounded-operator.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/unbounded-operator.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/unbounded-operator.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unbounded-operator.rgb24.ref.png
diff --git a/cairo/test/reference/unbounded-operator.svg12.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/unbounded-operator.svg12.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/unbounded-operator.svg12.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unbounded-operator.svg12.argb32.ref.png
diff --git a/cairo/test/reference/unbounded-operator.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/unbounded-operator.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/unbounded-operator.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/unbounded-operator.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/unbounded-operator.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/unbounded-operator.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/unbounded-operator.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unbounded-operator.traps.argb32.ref.png
diff --git a/cairo/test/reference/unbounded-operator.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/unbounded-operator.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/unbounded-operator.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unbounded-operator.traps.rgb24.ref.png
diff --git a/cairo/test/reference/unclosed-strokes.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/unclosed-strokes.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/unclosed-strokes.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unclosed-strokes.argb32.ref.png
diff --git a/cairo/test/reference/unclosed-strokes.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/unclosed-strokes.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/unclosed-strokes.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unclosed-strokes.base.argb32.ref.png
diff --git a/cairo/test/reference/unclosed-strokes.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/unclosed-strokes.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/unclosed-strokes.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unclosed-strokes.base.rgb24.ref.png
diff --git a/cairo/test/reference/unclosed-strokes.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/unclosed-strokes.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/unclosed-strokes.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unclosed-strokes.rgb24.ref.png
diff --git a/cairo/test/reference/unclosed-strokes.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/unclosed-strokes.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/unclosed-strokes.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unclosed-strokes.traps.argb32.ref.png
diff --git a/cairo/test/reference/unclosed-strokes.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/unclosed-strokes.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/unclosed-strokes.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/unclosed-strokes.traps.rgb24.ref.png
diff --git a/cairo/test/reference/user-font-mask.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-mask.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-mask.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-mask.base.argb32.ref.png
diff --git a/cairo/test/reference/user-font-mask.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-mask.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-mask.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-mask.base.rgb24.ref.png
diff --git a/cairo/test/reference/user-font-mask.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-mask.image16.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-mask.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-mask.image16.ref.png
diff --git a/cairo/test/reference/user-font-mask.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-mask.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-mask.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-mask.pdf.ref.png
diff --git a/cairo/test/reference/user-font-mask.ps2.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-mask.ps2.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-mask.ps2.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-mask.ps2.ref.png
diff --git a/cairo/test/reference/user-font-mask.ps3.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-mask.ps3.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-mask.ps3.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-mask.ps3.ref.png
diff --git a/cairo/test/reference/user-font-mask.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-mask.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-mask.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-mask.ref.png
diff --git a/cairo/test/reference/user-font-mask.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-mask.svg.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-mask.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-mask.svg.ref.png
diff --git a/cairo/test/reference/user-font-proxy.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-proxy.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-proxy.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-proxy.argb32.ref.png
diff --git a/cairo/test/reference/user-font-proxy.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-proxy.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-proxy.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-proxy.base.argb32.ref.png
diff --git a/cairo/test/reference/user-font-proxy.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-proxy.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-proxy.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-proxy.base.rgb24.ref.png
diff --git a/cairo/test/reference/user-font-proxy.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-proxy.image16.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-proxy.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-proxy.image16.ref.png
diff --git a/cairo/test/reference/user-font-proxy.pdf.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-proxy.pdf.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-proxy.pdf.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-proxy.pdf.argb32.ref.png
diff --git a/cairo/test/reference/user-font-proxy.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-proxy.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-proxy.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-proxy.pdf.ref.png
diff --git a/cairo/test/reference/user-font-proxy.pdf.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-proxy.pdf.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-proxy.pdf.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-proxy.pdf.rgb24.ref.png
diff --git a/cairo/test/reference/user-font-proxy.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-proxy.ps.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-proxy.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-proxy.ps.ref.png
diff --git a/cairo/test/reference/user-font-proxy.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-proxy.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-proxy.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-proxy.quartz.ref.png
diff --git a/cairo/test/reference/user-font-proxy.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-proxy.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-proxy.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-proxy.rgb24.ref.png
diff --git a/cairo/test/reference/user-font-proxy.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-proxy.svg.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-proxy.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-proxy.svg.ref.png
diff --git a/cairo/test/reference/user-font-proxy.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-proxy.traps.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-proxy.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-proxy.traps.ref.png
diff --git a/cairo/test/reference/user-font-rescale.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-rescale.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-rescale.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-rescale.argb32.ref.png
diff --git a/cairo/test/reference/user-font-rescale.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-rescale.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-rescale.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-rescale.base.argb32.ref.png
diff --git a/cairo/test/reference/user-font-rescale.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-rescale.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-rescale.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-rescale.base.rgb24.ref.png
diff --git a/cairo/test/reference/user-font-rescale.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-rescale.image16.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-rescale.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-rescale.image16.ref.png
diff --git a/cairo/test/reference/user-font-rescale.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-rescale.ps.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-rescale.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-rescale.ps.ref.png
diff --git a/cairo/test/reference/user-font-rescale.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-rescale.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-rescale.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-rescale.quartz.ref.png
diff --git a/cairo/test/reference/user-font-rescale.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-rescale.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-rescale.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-rescale.rgb24.ref.png
diff --git a/cairo/test/reference/user-font-rescale.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-rescale.svg.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-rescale.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-rescale.svg.ref.png
diff --git a/cairo/test/reference/user-font-rescale.traps.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font-rescale.traps.ref.png
similarity index 100%
rename from cairo/test/reference/user-font-rescale.traps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font-rescale.traps.ref.png
diff --git a/cairo/test/reference/user-font.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/user-font.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font.base.argb32.ref.png
diff --git a/cairo/test/reference/user-font.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/user-font.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font.base.rgb24.ref.png
diff --git a/cairo/test/reference/user-font.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font.image16.ref.png
similarity index 100%
rename from cairo/test/reference/user-font.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font.image16.ref.png
diff --git a/cairo/test/reference/user-font.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/user-font.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font.mask.argb32.ref.png
diff --git a/cairo/test/reference/user-font.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/user-font.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font.mask.rgb24.ref.png
diff --git a/cairo/test/reference/user-font.pdf.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font.pdf.ref.png
similarity index 100%
rename from cairo/test/reference/user-font.pdf.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font.pdf.ref.png
diff --git a/cairo/test/reference/user-font.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font.ps.ref.png
similarity index 100%
rename from cairo/test/reference/user-font.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font.ps.ref.png
diff --git a/cairo/test/reference/user-font.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/user-font.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font.quartz.ref.png
diff --git a/cairo/test/reference/user-font.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font.ref.png
similarity index 100%
rename from cairo/test/reference/user-font.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font.ref.png
diff --git a/cairo/test/reference/user-font.svg.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font.svg.ref.png
similarity index 100%
rename from cairo/test/reference/user-font.svg.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font.svg.ref.png
diff --git a/cairo/test/reference/user-font.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/user-font.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font.traps.argb32.ref.png
diff --git a/cairo/test/reference/user-font.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/user-font.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/user-font.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/user-font.traps.rgb24.ref.png
diff --git a/cairo/test/reference/white-in-noop.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/white-in-noop.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/white-in-noop.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/white-in-noop.base.argb32.ref.png
diff --git a/cairo/test/reference/white-in-noop.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/white-in-noop.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/white-in-noop.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/white-in-noop.base.rgb24.ref.png
diff --git a/cairo/test/reference/white-in-noop.ref.png b/io2d/src/3rd-party/cairo/test/reference/white-in-noop.ref.png
similarity index 100%
rename from cairo/test/reference/white-in-noop.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/white-in-noop.ref.png
diff --git a/cairo/test/reference/world-map-fill.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map-fill.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/world-map-fill.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map-fill.argb32.ref.png
diff --git a/cairo/test/reference/world-map-fill.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map-fill.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/world-map-fill.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map-fill.base.argb32.ref.png
diff --git a/cairo/test/reference/world-map-fill.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map-fill.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/world-map-fill.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map-fill.base.rgb24.ref.png
diff --git a/cairo/test/reference/world-map-fill.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map-fill.image16.ref.png
similarity index 100%
rename from cairo/test/reference/world-map-fill.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map-fill.image16.ref.png
diff --git a/cairo/test/reference/world-map-fill.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map-fill.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/world-map-fill.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map-fill.rgb24.ref.png
diff --git a/cairo/test/reference/world-map-fill.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map-fill.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/world-map-fill.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map-fill.traps.argb32.ref.png
diff --git a/cairo/test/reference/world-map-fill.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map-fill.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/world-map-fill.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map-fill.traps.rgb24.ref.png
diff --git a/cairo/test/reference/world-map-stroke.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map-stroke.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/world-map-stroke.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map-stroke.argb32.ref.png
diff --git a/cairo/test/reference/world-map-stroke.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map-stroke.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/world-map-stroke.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map-stroke.base.argb32.ref.png
diff --git a/cairo/test/reference/world-map-stroke.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map-stroke.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/world-map-stroke.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map-stroke.base.rgb24.ref.png
diff --git a/cairo/test/reference/world-map-stroke.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map-stroke.image16.ref.png
similarity index 100%
rename from cairo/test/reference/world-map-stroke.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map-stroke.image16.ref.png
diff --git a/cairo/test/reference/world-map-stroke.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map-stroke.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/world-map-stroke.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map-stroke.mask.argb32.ref.png
diff --git a/cairo/test/reference/world-map-stroke.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map-stroke.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/world-map-stroke.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map-stroke.mask.rgb24.ref.png
diff --git a/cairo/test/reference/world-map-stroke.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map-stroke.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/world-map-stroke.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map-stroke.rgb24.ref.png
diff --git a/cairo/test/reference/world-map-stroke.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map-stroke.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/world-map-stroke.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map-stroke.traps.argb32.ref.png
diff --git a/cairo/test/reference/world-map-stroke.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map-stroke.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/world-map-stroke.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map-stroke.traps.rgb24.ref.png
diff --git a/cairo/test/reference/world-map.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/world-map.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map.argb32.ref.png
diff --git a/cairo/test/reference/world-map.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/world-map.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map.base.argb32.ref.png
diff --git a/cairo/test/reference/world-map.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/world-map.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map.base.rgb24.ref.png
diff --git a/cairo/test/reference/world-map.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map.image16.ref.png
similarity index 100%
rename from cairo/test/reference/world-map.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map.image16.ref.png
diff --git a/cairo/test/reference/world-map.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/world-map.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map.mask.argb32.ref.png
diff --git a/cairo/test/reference/world-map.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/world-map.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map.mask.rgb24.ref.png
diff --git a/cairo/test/reference/world-map.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/world-map.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map.rgb24.ref.png
diff --git a/cairo/test/reference/world-map.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/world-map.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map.traps.argb32.ref.png
diff --git a/cairo/test/reference/world-map.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/world-map.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/world-map.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/world-map.traps.rgb24.ref.png
diff --git a/cairo/test/reference/xcb-huge-image-shm.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcb-huge-image-shm.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/xcb-huge-image-shm.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcb-huge-image-shm.base.argb32.ref.png
diff --git a/cairo/test/reference/xcb-huge-image-shm.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcb-huge-image-shm.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/xcb-huge-image-shm.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcb-huge-image-shm.base.rgb24.ref.png
diff --git a/cairo/test/reference/xcb-huge-image-shm.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcb-huge-image-shm.ref.png
similarity index 100%
rename from cairo/test/reference/xcb-huge-image-shm.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcb-huge-image-shm.ref.png
diff --git a/cairo/test/reference/xcb-huge-subimage.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcb-huge-subimage.ref.png
similarity index 100%
rename from cairo/test/reference/xcb-huge-subimage.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcb-huge-subimage.ref.png
diff --git a/cairo/test/reference/xcb-snapshot-assert.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcb-snapshot-assert.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/xcb-snapshot-assert.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcb-snapshot-assert.base.argb32.ref.png
diff --git a/cairo/test/reference/xcb-snapshot-assert.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcb-snapshot-assert.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/xcb-snapshot-assert.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcb-snapshot-assert.base.rgb24.ref.png
diff --git a/cairo/test/reference/xcb-snapshot-assert.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcb-snapshot-assert.ref.png
similarity index 100%
rename from cairo/test/reference/xcb-snapshot-assert.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcb-snapshot-assert.ref.png
diff --git a/cairo/test/reference/xcb-stress-cache.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcb-stress-cache.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/xcb-stress-cache.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcb-stress-cache.base.argb32.ref.png
diff --git a/cairo/test/reference/xcb-stress-cache.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcb-stress-cache.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/xcb-stress-cache.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcb-stress-cache.base.rgb24.ref.png
diff --git a/cairo/test/reference/xcb-stress-cache.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcb-stress-cache.ref.png
similarity index 100%
rename from cairo/test/reference/xcb-stress-cache.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcb-stress-cache.ref.png
diff --git a/cairo/test/reference/xcb-surface-source.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcb-surface-source.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/xcb-surface-source.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcb-surface-source.argb32.ref.png
diff --git a/cairo/test/reference/xcb-surface-source.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcb-surface-source.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/xcb-surface-source.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcb-surface-source.base.argb32.ref.png
diff --git a/cairo/test/reference/xcb-surface-source.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcb-surface-source.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/xcb-surface-source.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcb-surface-source.base.rgb24.ref.png
diff --git a/cairo/test/reference/xcb-surface-source.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcb-surface-source.image16.ref.png
similarity index 100%
rename from cairo/test/reference/xcb-surface-source.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcb-surface-source.image16.ref.png
diff --git a/cairo/test/reference/xcb-surface-source.ps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcb-surface-source.ps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/xcb-surface-source.ps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcb-surface-source.ps.argb32.ref.png
diff --git a/cairo/test/reference/xcb-surface-source.ps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcb-surface-source.ps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/xcb-surface-source.ps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcb-surface-source.ps.rgb24.ref.png
diff --git a/cairo/test/reference/xcb-surface-source.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcb-surface-source.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/xcb-surface-source.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcb-surface-source.rgb24.ref.png
diff --git a/cairo/test/reference/xcomposite-projection.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcomposite-projection.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/xcomposite-projection.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcomposite-projection.base.argb32.ref.png
diff --git a/cairo/test/reference/xcomposite-projection.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcomposite-projection.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/xcomposite-projection.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcomposite-projection.base.rgb24.ref.png
diff --git a/cairo/test/reference/xcomposite-projection.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcomposite-projection.image16.ref.png
similarity index 100%
rename from cairo/test/reference/xcomposite-projection.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcomposite-projection.image16.ref.png
diff --git a/cairo/test/reference/xcomposite-projection.mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcomposite-projection.mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/xcomposite-projection.mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcomposite-projection.mask.argb32.ref.png
diff --git a/cairo/test/reference/xcomposite-projection.mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcomposite-projection.mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/xcomposite-projection.mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcomposite-projection.mask.rgb24.ref.png
diff --git a/cairo/test/reference/xcomposite-projection.quartz.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcomposite-projection.quartz.ref.png
similarity index 100%
rename from cairo/test/reference/xcomposite-projection.quartz.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcomposite-projection.quartz.ref.png
diff --git a/cairo/test/reference/xcomposite-projection.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcomposite-projection.ref.png
similarity index 100%
rename from cairo/test/reference/xcomposite-projection.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcomposite-projection.ref.png
diff --git a/cairo/test/reference/xcomposite-projection.traps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcomposite-projection.traps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/xcomposite-projection.traps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcomposite-projection.traps.argb32.ref.png
diff --git a/cairo/test/reference/xcomposite-projection.traps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/xcomposite-projection.traps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/xcomposite-projection.traps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xcomposite-projection.traps.rgb24.ref.png
diff --git a/cairo/test/reference/xlib-expose-event.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/xlib-expose-event.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/xlib-expose-event.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xlib-expose-event.base.argb32.ref.png
diff --git a/cairo/test/reference/xlib-expose-event.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/xlib-expose-event.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/xlib-expose-event.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xlib-expose-event.base.rgb24.ref.png
diff --git a/cairo/test/reference/xlib-expose-event.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/xlib-expose-event.image16.ref.png
similarity index 100%
rename from cairo/test/reference/xlib-expose-event.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xlib-expose-event.image16.ref.png
diff --git a/cairo/test/reference/xlib-expose-event.ps.ref.png b/io2d/src/3rd-party/cairo/test/reference/xlib-expose-event.ps.ref.png
similarity index 100%
rename from cairo/test/reference/xlib-expose-event.ps.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xlib-expose-event.ps.ref.png
diff --git a/cairo/test/reference/xlib-expose-event.ref.png b/io2d/src/3rd-party/cairo/test/reference/xlib-expose-event.ref.png
similarity index 100%
rename from cairo/test/reference/xlib-expose-event.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xlib-expose-event.ref.png
diff --git a/cairo/test/reference/xlib-surface-source.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/xlib-surface-source.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/xlib-surface-source.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xlib-surface-source.argb32.ref.png
diff --git a/cairo/test/reference/xlib-surface-source.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/xlib-surface-source.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/xlib-surface-source.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xlib-surface-source.base.argb32.ref.png
diff --git a/cairo/test/reference/xlib-surface-source.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/xlib-surface-source.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/xlib-surface-source.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xlib-surface-source.base.rgb24.ref.png
diff --git a/cairo/test/reference/xlib-surface-source.image16.ref.png b/io2d/src/3rd-party/cairo/test/reference/xlib-surface-source.image16.ref.png
similarity index 100%
rename from cairo/test/reference/xlib-surface-source.image16.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xlib-surface-source.image16.ref.png
diff --git a/cairo/test/reference/xlib-surface-source.ps.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/xlib-surface-source.ps.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/xlib-surface-source.ps.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xlib-surface-source.ps.argb32.ref.png
diff --git a/cairo/test/reference/xlib-surface-source.ps.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/xlib-surface-source.ps.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/xlib-surface-source.ps.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xlib-surface-source.ps.rgb24.ref.png
diff --git a/cairo/test/reference/xlib-surface-source.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/xlib-surface-source.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/xlib-surface-source.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/xlib-surface-source.rgb24.ref.png
diff --git a/cairo/test/reference/xlib-surface-source.svg12.argb32.xfail.png b/io2d/src/3rd-party/cairo/test/reference/xlib-surface-source.svg12.argb32.xfail.png
similarity index 100%
rename from cairo/test/reference/xlib-surface-source.svg12.argb32.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/xlib-surface-source.svg12.argb32.xfail.png
diff --git a/cairo/test/reference/xlib-surface-source.svg12.rgb24.xfail.png b/io2d/src/3rd-party/cairo/test/reference/xlib-surface-source.svg12.rgb24.xfail.png
similarity index 100%
rename from cairo/test/reference/xlib-surface-source.svg12.rgb24.xfail.png
rename to io2d/src/3rd-party/cairo/test/reference/xlib-surface-source.svg12.rgb24.xfail.png
diff --git a/cairo/test/reference/zero-alpha.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/zero-alpha.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/zero-alpha.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/zero-alpha.base.argb32.ref.png
diff --git a/cairo/test/reference/zero-alpha.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/zero-alpha.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/zero-alpha.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/zero-alpha.base.rgb24.ref.png
diff --git a/cairo/test/reference/zero-alpha.ref.png b/io2d/src/3rd-party/cairo/test/reference/zero-alpha.ref.png
similarity index 100%
rename from cairo/test/reference/zero-alpha.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/zero-alpha.ref.png
diff --git a/cairo/test/reference/zero-mask.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/zero-mask.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/zero-mask.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/zero-mask.argb32.ref.png
diff --git a/cairo/test/reference/zero-mask.base.argb32.ref.png b/io2d/src/3rd-party/cairo/test/reference/zero-mask.base.argb32.ref.png
similarity index 100%
rename from cairo/test/reference/zero-mask.base.argb32.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/zero-mask.base.argb32.ref.png
diff --git a/cairo/test/reference/zero-mask.base.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/zero-mask.base.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/zero-mask.base.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/zero-mask.base.rgb24.ref.png
diff --git a/cairo/test/reference/zero-mask.rgb24.ref.png b/io2d/src/3rd-party/cairo/test/reference/zero-mask.rgb24.ref.png
similarity index 100%
rename from cairo/test/reference/zero-mask.rgb24.ref.png
rename to io2d/src/3rd-party/cairo/test/reference/zero-mask.rgb24.ref.png
diff --git a/cairo/test/reflected-stroke.c b/io2d/src/3rd-party/cairo/test/reflected-stroke.c
similarity index 100%
rename from cairo/test/reflected-stroke.c
rename to io2d/src/3rd-party/cairo/test/reflected-stroke.c
diff --git a/cairo/test/rel-path.c b/io2d/src/3rd-party/cairo/test/rel-path.c
similarity index 100%
rename from cairo/test/rel-path.c
rename to io2d/src/3rd-party/cairo/test/rel-path.c
diff --git a/cairo/test/rgb24-ignore-alpha.c b/io2d/src/3rd-party/cairo/test/rgb24-ignore-alpha.c
similarity index 100%
rename from cairo/test/rgb24-ignore-alpha.c
rename to io2d/src/3rd-party/cairo/test/rgb24-ignore-alpha.c
diff --git a/cairo/test/romedalen.jpg b/io2d/src/3rd-party/cairo/test/romedalen.jpg
similarity index 100%
rename from cairo/test/romedalen.jpg
rename to io2d/src/3rd-party/cairo/test/romedalen.jpg
diff --git a/cairo/test/romedalen.png b/io2d/src/3rd-party/cairo/test/romedalen.png
similarity index 100%
rename from cairo/test/romedalen.png
rename to io2d/src/3rd-party/cairo/test/romedalen.png
diff --git a/cairo/test/rotate-image-surface-paint.c b/io2d/src/3rd-party/cairo/test/rotate-image-surface-paint.c
similarity index 100%
rename from cairo/test/rotate-image-surface-paint.c
rename to io2d/src/3rd-party/cairo/test/rotate-image-surface-paint.c
diff --git a/cairo/test/rotated-clip.c b/io2d/src/3rd-party/cairo/test/rotated-clip.c
similarity index 100%
rename from cairo/test/rotated-clip.c
rename to io2d/src/3rd-party/cairo/test/rotated-clip.c
diff --git a/cairo/test/rounded-rectangle-fill.c b/io2d/src/3rd-party/cairo/test/rounded-rectangle-fill.c
similarity index 100%
rename from cairo/test/rounded-rectangle-fill.c
rename to io2d/src/3rd-party/cairo/test/rounded-rectangle-fill.c
diff --git a/cairo/test/rounded-rectangle-stroke.c b/io2d/src/3rd-party/cairo/test/rounded-rectangle-stroke.c
similarity index 100%
rename from cairo/test/rounded-rectangle-stroke.c
rename to io2d/src/3rd-party/cairo/test/rounded-rectangle-stroke.c
diff --git a/cairo/test/run-cairo-test-suite.sh b/io2d/src/3rd-party/cairo/test/run-cairo-test-suite.sh
similarity index 100%
rename from cairo/test/run-cairo-test-suite.sh
rename to io2d/src/3rd-party/cairo/test/run-cairo-test-suite.sh
diff --git a/cairo/test/sample.c b/io2d/src/3rd-party/cairo/test/sample.c
similarity index 100%
rename from cairo/test/sample.c
rename to io2d/src/3rd-party/cairo/test/sample.c
diff --git a/cairo/test/scale-down-source-surface-paint.c b/io2d/src/3rd-party/cairo/test/scale-down-source-surface-paint.c
similarity index 100%
rename from cairo/test/scale-down-source-surface-paint.c
rename to io2d/src/3rd-party/cairo/test/scale-down-source-surface-paint.c
diff --git a/cairo/test/scale-offset-image.c b/io2d/src/3rd-party/cairo/test/scale-offset-image.c
similarity index 100%
rename from cairo/test/scale-offset-image.c
rename to io2d/src/3rd-party/cairo/test/scale-offset-image.c
diff --git a/cairo/test/scale-offset-similar.c b/io2d/src/3rd-party/cairo/test/scale-offset-similar.c
similarity index 100%
rename from cairo/test/scale-offset-similar.c
rename to io2d/src/3rd-party/cairo/test/scale-offset-similar.c
diff --git a/cairo/test/scale-source-surface-paint.c b/io2d/src/3rd-party/cairo/test/scale-source-surface-paint.c
similarity index 100%
rename from cairo/test/scale-source-surface-paint.c
rename to io2d/src/3rd-party/cairo/test/scale-source-surface-paint.c
diff --git a/cairo/test/scaled-font-zero-matrix.c b/io2d/src/3rd-party/cairo/test/scaled-font-zero-matrix.c
similarity index 100%
rename from cairo/test/scaled-font-zero-matrix.c
rename to io2d/src/3rd-party/cairo/test/scaled-font-zero-matrix.c
diff --git a/cairo/test/scarab.jpg b/io2d/src/3rd-party/cairo/test/scarab.jpg
similarity index 100%
rename from cairo/test/scarab.jpg
rename to io2d/src/3rd-party/cairo/test/scarab.jpg
diff --git a/cairo/test/select-font-face.c b/io2d/src/3rd-party/cairo/test/select-font-face.c
similarity index 100%
rename from cairo/test/select-font-face.c
rename to io2d/src/3rd-party/cairo/test/select-font-face.c
diff --git a/cairo/test/select-font-no-show-text.c b/io2d/src/3rd-party/cairo/test/select-font-no-show-text.c
similarity index 100%
rename from cairo/test/select-font-no-show-text.c
rename to io2d/src/3rd-party/cairo/test/select-font-no-show-text.c
diff --git a/cairo/test/self-copy-overlap.c b/io2d/src/3rd-party/cairo/test/self-copy-overlap.c
similarity index 100%
rename from cairo/test/self-copy-overlap.c
rename to io2d/src/3rd-party/cairo/test/self-copy-overlap.c
diff --git a/cairo/test/self-copy.c b/io2d/src/3rd-party/cairo/test/self-copy.c
similarity index 100%
rename from cairo/test/self-copy.c
rename to io2d/src/3rd-party/cairo/test/self-copy.c
diff --git a/cairo/test/self-intersecting.c b/io2d/src/3rd-party/cairo/test/self-intersecting.c
similarity index 100%
rename from cairo/test/self-intersecting.c
rename to io2d/src/3rd-party/cairo/test/self-intersecting.c
diff --git a/cairo/test/set-source.c b/io2d/src/3rd-party/cairo/test/set-source.c
similarity index 100%
rename from cairo/test/set-source.c
rename to io2d/src/3rd-party/cairo/test/set-source.c
diff --git a/cairo/test/shape-general-convex.c b/io2d/src/3rd-party/cairo/test/shape-general-convex.c
similarity index 100%
rename from cairo/test/shape-general-convex.c
rename to io2d/src/3rd-party/cairo/test/shape-general-convex.c
diff --git a/cairo/test/shape-sierpinski.c b/io2d/src/3rd-party/cairo/test/shape-sierpinski.c
similarity index 100%
rename from cairo/test/shape-sierpinski.c
rename to io2d/src/3rd-party/cairo/test/shape-sierpinski.c
diff --git a/cairo/test/show-glyphs-advance.c b/io2d/src/3rd-party/cairo/test/show-glyphs-advance.c
similarity index 100%
rename from cairo/test/show-glyphs-advance.c
rename to io2d/src/3rd-party/cairo/test/show-glyphs-advance.c
diff --git a/cairo/test/show-glyphs-many.c b/io2d/src/3rd-party/cairo/test/show-glyphs-many.c
similarity index 100%
rename from cairo/test/show-glyphs-many.c
rename to io2d/src/3rd-party/cairo/test/show-glyphs-many.c
diff --git a/cairo/test/show-text-current-point.c b/io2d/src/3rd-party/cairo/test/show-text-current-point.c
similarity index 100%
rename from cairo/test/show-text-current-point.c
rename to io2d/src/3rd-party/cairo/test/show-text-current-point.c
diff --git a/cairo/test/skew-extreme.c b/io2d/src/3rd-party/cairo/test/skew-extreme.c
similarity index 100%
rename from cairo/test/skew-extreme.c
rename to io2d/src/3rd-party/cairo/test/skew-extreme.c
diff --git a/cairo/test/smask-fill.c b/io2d/src/3rd-party/cairo/test/smask-fill.c
similarity index 100%
rename from cairo/test/smask-fill.c
rename to io2d/src/3rd-party/cairo/test/smask-fill.c
diff --git a/cairo/test/smask-image-mask.c b/io2d/src/3rd-party/cairo/test/smask-image-mask.c
similarity index 100%
rename from cairo/test/smask-image-mask.c
rename to io2d/src/3rd-party/cairo/test/smask-image-mask.c
diff --git a/cairo/test/smask-mask.c b/io2d/src/3rd-party/cairo/test/smask-mask.c
similarity index 100%
rename from cairo/test/smask-mask.c
rename to io2d/src/3rd-party/cairo/test/smask-mask.c
diff --git a/cairo/test/smask-paint.c b/io2d/src/3rd-party/cairo/test/smask-paint.c
similarity index 100%
rename from cairo/test/smask-paint.c
rename to io2d/src/3rd-party/cairo/test/smask-paint.c
diff --git a/cairo/test/smask-stroke.c b/io2d/src/3rd-party/cairo/test/smask-stroke.c
similarity index 100%
rename from cairo/test/smask-stroke.c
rename to io2d/src/3rd-party/cairo/test/smask-stroke.c
diff --git a/cairo/test/smask-text.c b/io2d/src/3rd-party/cairo/test/smask-text.c
similarity index 100%
rename from cairo/test/smask-text.c
rename to io2d/src/3rd-party/cairo/test/smask-text.c
diff --git a/cairo/test/smask.c b/io2d/src/3rd-party/cairo/test/smask.c
similarity index 100%
rename from cairo/test/smask.c
rename to io2d/src/3rd-party/cairo/test/smask.c
diff --git a/cairo/test/solid-pattern-cache-stress.c b/io2d/src/3rd-party/cairo/test/solid-pattern-cache-stress.c
similarity index 100%
rename from cairo/test/solid-pattern-cache-stress.c
rename to io2d/src/3rd-party/cairo/test/solid-pattern-cache-stress.c
diff --git a/cairo/test/source-clip-scale.c b/io2d/src/3rd-party/cairo/test/source-clip-scale.c
similarity index 100%
rename from cairo/test/source-clip-scale.c
rename to io2d/src/3rd-party/cairo/test/source-clip-scale.c
diff --git a/cairo/test/source-clip.c b/io2d/src/3rd-party/cairo/test/source-clip.c
similarity index 100%
rename from cairo/test/source-clip.c
rename to io2d/src/3rd-party/cairo/test/source-clip.c
diff --git a/cairo/test/source-surface-scale-paint.c b/io2d/src/3rd-party/cairo/test/source-surface-scale-paint.c
similarity index 100%
rename from cairo/test/source-surface-scale-paint.c
rename to io2d/src/3rd-party/cairo/test/source-surface-scale-paint.c
diff --git a/cairo/test/spline-decomposition.c b/io2d/src/3rd-party/cairo/test/spline-decomposition.c
similarity index 100%
rename from cairo/test/spline-decomposition.c
rename to io2d/src/3rd-party/cairo/test/spline-decomposition.c
diff --git a/cairo/test/stride-12-image.c b/io2d/src/3rd-party/cairo/test/stride-12-image.c
similarity index 100%
rename from cairo/test/stride-12-image.c
rename to io2d/src/3rd-party/cairo/test/stride-12-image.c
diff --git a/cairo/test/stroke-clipped.c b/io2d/src/3rd-party/cairo/test/stroke-clipped.c
similarity index 100%
rename from cairo/test/stroke-clipped.c
rename to io2d/src/3rd-party/cairo/test/stroke-clipped.c
diff --git a/cairo/test/stroke-ctm-caps.c b/io2d/src/3rd-party/cairo/test/stroke-ctm-caps.c
similarity index 100%
rename from cairo/test/stroke-ctm-caps.c
rename to io2d/src/3rd-party/cairo/test/stroke-ctm-caps.c
diff --git a/cairo/test/stroke-image.c b/io2d/src/3rd-party/cairo/test/stroke-image.c
similarity index 100%
rename from cairo/test/stroke-image.c
rename to io2d/src/3rd-party/cairo/test/stroke-image.c
diff --git a/cairo/test/stroke-open-box.c b/io2d/src/3rd-party/cairo/test/stroke-open-box.c
similarity index 100%
rename from cairo/test/stroke-open-box.c
rename to io2d/src/3rd-party/cairo/test/stroke-open-box.c
diff --git a/cairo/test/stroke-pattern.c b/io2d/src/3rd-party/cairo/test/stroke-pattern.c
similarity index 100%
rename from cairo/test/stroke-pattern.c
rename to io2d/src/3rd-party/cairo/test/stroke-pattern.c
diff --git a/cairo/test/subsurface-image-repeat.c b/io2d/src/3rd-party/cairo/test/subsurface-image-repeat.c
similarity index 100%
rename from cairo/test/subsurface-image-repeat.c
rename to io2d/src/3rd-party/cairo/test/subsurface-image-repeat.c
diff --git a/cairo/test/subsurface-modify-child.c b/io2d/src/3rd-party/cairo/test/subsurface-modify-child.c
similarity index 100%
rename from cairo/test/subsurface-modify-child.c
rename to io2d/src/3rd-party/cairo/test/subsurface-modify-child.c
diff --git a/cairo/test/subsurface-modify-parent.c b/io2d/src/3rd-party/cairo/test/subsurface-modify-parent.c
similarity index 100%
rename from cairo/test/subsurface-modify-parent.c
rename to io2d/src/3rd-party/cairo/test/subsurface-modify-parent.c
diff --git a/cairo/test/subsurface-outside-target.c b/io2d/src/3rd-party/cairo/test/subsurface-outside-target.c
similarity index 100%
rename from cairo/test/subsurface-outside-target.c
rename to io2d/src/3rd-party/cairo/test/subsurface-outside-target.c
diff --git a/cairo/test/subsurface-pad.c b/io2d/src/3rd-party/cairo/test/subsurface-pad.c
similarity index 100%
rename from cairo/test/subsurface-pad.c
rename to io2d/src/3rd-party/cairo/test/subsurface-pad.c
diff --git a/cairo/test/subsurface-reflect.c b/io2d/src/3rd-party/cairo/test/subsurface-reflect.c
similarity index 100%
rename from cairo/test/subsurface-reflect.c
rename to io2d/src/3rd-party/cairo/test/subsurface-reflect.c
diff --git a/cairo/test/subsurface-repeat.c b/io2d/src/3rd-party/cairo/test/subsurface-repeat.c
similarity index 100%
rename from cairo/test/subsurface-repeat.c
rename to io2d/src/3rd-party/cairo/test/subsurface-repeat.c
diff --git a/cairo/test/subsurface-scale.c b/io2d/src/3rd-party/cairo/test/subsurface-scale.c
similarity index 100%
rename from cairo/test/subsurface-scale.c
rename to io2d/src/3rd-party/cairo/test/subsurface-scale.c
diff --git a/cairo/test/subsurface-similar-repeat.c b/io2d/src/3rd-party/cairo/test/subsurface-similar-repeat.c
similarity index 100%
rename from cairo/test/subsurface-similar-repeat.c
rename to io2d/src/3rd-party/cairo/test/subsurface-similar-repeat.c
diff --git a/cairo/test/subsurface.c b/io2d/src/3rd-party/cairo/test/subsurface.c
similarity index 100%
rename from cairo/test/subsurface.c
rename to io2d/src/3rd-party/cairo/test/subsurface.c
diff --git a/cairo/test/surface-finish-twice.c b/io2d/src/3rd-party/cairo/test/surface-finish-twice.c
similarity index 100%
rename from cairo/test/surface-finish-twice.c
rename to io2d/src/3rd-party/cairo/test/surface-finish-twice.c
diff --git a/cairo/test/surface-pattern-big-scale-down.c b/io2d/src/3rd-party/cairo/test/surface-pattern-big-scale-down.c
similarity index 100%
rename from cairo/test/surface-pattern-big-scale-down.c
rename to io2d/src/3rd-party/cairo/test/surface-pattern-big-scale-down.c
diff --git a/cairo/test/surface-pattern-operator.c b/io2d/src/3rd-party/cairo/test/surface-pattern-operator.c
similarity index 100%
rename from cairo/test/surface-pattern-operator.c
rename to io2d/src/3rd-party/cairo/test/surface-pattern-operator.c
diff --git a/cairo/test/surface-pattern-scale-down-extend.c b/io2d/src/3rd-party/cairo/test/surface-pattern-scale-down-extend.c
similarity index 100%
rename from cairo/test/surface-pattern-scale-down-extend.c
rename to io2d/src/3rd-party/cairo/test/surface-pattern-scale-down-extend.c
diff --git a/cairo/test/surface-pattern-scale-down.c b/io2d/src/3rd-party/cairo/test/surface-pattern-scale-down.c
similarity index 100%
rename from cairo/test/surface-pattern-scale-down.c
rename to io2d/src/3rd-party/cairo/test/surface-pattern-scale-down.c
diff --git a/cairo/test/surface-pattern-scale-up.c b/io2d/src/3rd-party/cairo/test/surface-pattern-scale-up.c
similarity index 100%
rename from cairo/test/surface-pattern-scale-up.c
rename to io2d/src/3rd-party/cairo/test/surface-pattern-scale-up.c
diff --git a/cairo/test/surface-pattern.c b/io2d/src/3rd-party/cairo/test/surface-pattern.c
similarity index 100%
rename from cairo/test/surface-pattern.c
rename to io2d/src/3rd-party/cairo/test/surface-pattern.c
diff --git a/cairo/test/surface-source.c b/io2d/src/3rd-party/cairo/test/surface-source.c
similarity index 100%
rename from cairo/test/surface-source.c
rename to io2d/src/3rd-party/cairo/test/surface-source.c
diff --git a/cairo/test/svg-clip.c b/io2d/src/3rd-party/cairo/test/svg-clip.c
similarity index 100%
rename from cairo/test/svg-clip.c
rename to io2d/src/3rd-party/cairo/test/svg-clip.c
diff --git a/cairo/test/svg-surface-source.c b/io2d/src/3rd-party/cairo/test/svg-surface-source.c
similarity index 100%
rename from cairo/test/svg-surface-source.c
rename to io2d/src/3rd-party/cairo/test/svg-surface-source.c
diff --git a/cairo/test/svg-surface.c b/io2d/src/3rd-party/cairo/test/svg-surface.c
similarity index 100%
rename from cairo/test/svg-surface.c
rename to io2d/src/3rd-party/cairo/test/svg-surface.c
diff --git a/cairo/test/svg2png.c b/io2d/src/3rd-party/cairo/test/svg2png.c
similarity index 100%
rename from cairo/test/svg2png.c
rename to io2d/src/3rd-party/cairo/test/svg2png.c
diff --git a/cairo/test/testsvg b/io2d/src/3rd-party/cairo/test/testsvg
similarity index 100%
rename from cairo/test/testsvg
rename to io2d/src/3rd-party/cairo/test/testsvg
diff --git a/cairo/test/testtable.js b/io2d/src/3rd-party/cairo/test/testtable.js
similarity index 100%
rename from cairo/test/testtable.js
rename to io2d/src/3rd-party/cairo/test/testtable.js
diff --git a/cairo/test/text-antialias-subpixel.c b/io2d/src/3rd-party/cairo/test/text-antialias-subpixel.c
similarity index 100%
rename from cairo/test/text-antialias-subpixel.c
rename to io2d/src/3rd-party/cairo/test/text-antialias-subpixel.c
diff --git a/cairo/test/text-antialias.c b/io2d/src/3rd-party/cairo/test/text-antialias.c
similarity index 100%
rename from cairo/test/text-antialias.c
rename to io2d/src/3rd-party/cairo/test/text-antialias.c
diff --git a/cairo/test/text-cache-crash.c b/io2d/src/3rd-party/cairo/test/text-cache-crash.c
similarity index 100%
rename from cairo/test/text-cache-crash.c
rename to io2d/src/3rd-party/cairo/test/text-cache-crash.c
diff --git a/cairo/test/text-glyph-range.c b/io2d/src/3rd-party/cairo/test/text-glyph-range.c
similarity index 100%
rename from cairo/test/text-glyph-range.c
rename to io2d/src/3rd-party/cairo/test/text-glyph-range.c
diff --git a/cairo/test/text-pattern.c b/io2d/src/3rd-party/cairo/test/text-pattern.c
similarity index 100%
rename from cairo/test/text-pattern.c
rename to io2d/src/3rd-party/cairo/test/text-pattern.c
diff --git a/cairo/test/text-rotate.c b/io2d/src/3rd-party/cairo/test/text-rotate.c
similarity index 100%
rename from cairo/test/text-rotate.c
rename to io2d/src/3rd-party/cairo/test/text-rotate.c
diff --git a/cairo/test/text-transform.c b/io2d/src/3rd-party/cairo/test/text-transform.c
similarity index 100%
rename from cairo/test/text-transform.c
rename to io2d/src/3rd-party/cairo/test/text-transform.c
diff --git a/cairo/test/text-zero-len.c b/io2d/src/3rd-party/cairo/test/text-zero-len.c
similarity index 100%
rename from cairo/test/text-zero-len.c
rename to io2d/src/3rd-party/cairo/test/text-zero-len.c
diff --git a/cairo/test/tiger.c b/io2d/src/3rd-party/cairo/test/tiger.c
similarity index 100%
rename from cairo/test/tiger.c
rename to io2d/src/3rd-party/cairo/test/tiger.c
diff --git a/cairo/test/tiger.inc b/io2d/src/3rd-party/cairo/test/tiger.inc
similarity index 100%
rename from cairo/test/tiger.inc
rename to io2d/src/3rd-party/cairo/test/tiger.inc
diff --git a/cairo/test/tighten-bounds.c b/io2d/src/3rd-party/cairo/test/tighten-bounds.c
similarity index 100%
rename from cairo/test/tighten-bounds.c
rename to io2d/src/3rd-party/cairo/test/tighten-bounds.c
diff --git a/cairo/test/toy-font-face.c b/io2d/src/3rd-party/cairo/test/toy-font-face.c
similarity index 100%
rename from cairo/test/toy-font-face.c
rename to io2d/src/3rd-party/cairo/test/toy-font-face.c
diff --git a/cairo/test/transforms.c b/io2d/src/3rd-party/cairo/test/transforms.c
similarity index 100%
rename from cairo/test/transforms.c
rename to io2d/src/3rd-party/cairo/test/transforms.c
diff --git a/cairo/test/translate-show-surface.c b/io2d/src/3rd-party/cairo/test/translate-show-surface.c
similarity index 100%
rename from cairo/test/translate-show-surface.c
rename to io2d/src/3rd-party/cairo/test/translate-show-surface.c
diff --git a/cairo/test/trap-clip.c b/io2d/src/3rd-party/cairo/test/trap-clip.c
similarity index 100%
rename from cairo/test/trap-clip.c
rename to io2d/src/3rd-party/cairo/test/trap-clip.c
diff --git a/cairo/test/twin-antialias-gray.c b/io2d/src/3rd-party/cairo/test/twin-antialias-gray.c
similarity index 100%
rename from cairo/test/twin-antialias-gray.c
rename to io2d/src/3rd-party/cairo/test/twin-antialias-gray.c
diff --git a/cairo/test/twin-antialias-mixed.c b/io2d/src/3rd-party/cairo/test/twin-antialias-mixed.c
similarity index 100%
rename from cairo/test/twin-antialias-mixed.c
rename to io2d/src/3rd-party/cairo/test/twin-antialias-mixed.c
diff --git a/cairo/test/twin-antialias-none.c b/io2d/src/3rd-party/cairo/test/twin-antialias-none.c
similarity index 100%
rename from cairo/test/twin-antialias-none.c
rename to io2d/src/3rd-party/cairo/test/twin-antialias-none.c
diff --git a/cairo/test/twin-antialias-subpixel.c b/io2d/src/3rd-party/cairo/test/twin-antialias-subpixel.c
similarity index 100%
rename from cairo/test/twin-antialias-subpixel.c
rename to io2d/src/3rd-party/cairo/test/twin-antialias-subpixel.c
diff --git a/cairo/test/twin.c b/io2d/src/3rd-party/cairo/test/twin.c
similarity index 100%
rename from cairo/test/twin.c
rename to io2d/src/3rd-party/cairo/test/twin.c
diff --git a/cairo/test/unaligned-box.c b/io2d/src/3rd-party/cairo/test/unaligned-box.c
similarity index 100%
rename from cairo/test/unaligned-box.c
rename to io2d/src/3rd-party/cairo/test/unaligned-box.c
diff --git a/cairo/test/unantialiased-shapes.c b/io2d/src/3rd-party/cairo/test/unantialiased-shapes.c
similarity index 100%
rename from cairo/test/unantialiased-shapes.c
rename to io2d/src/3rd-party/cairo/test/unantialiased-shapes.c
diff --git a/cairo/test/unbounded-operator.c b/io2d/src/3rd-party/cairo/test/unbounded-operator.c
similarity index 100%
rename from cairo/test/unbounded-operator.c
rename to io2d/src/3rd-party/cairo/test/unbounded-operator.c
diff --git a/cairo/test/unclosed-strokes.c b/io2d/src/3rd-party/cairo/test/unclosed-strokes.c
similarity index 100%
rename from cairo/test/unclosed-strokes.c
rename to io2d/src/3rd-party/cairo/test/unclosed-strokes.c
diff --git a/cairo/test/user-data.c b/io2d/src/3rd-party/cairo/test/user-data.c
similarity index 100%
rename from cairo/test/user-data.c
rename to io2d/src/3rd-party/cairo/test/user-data.c
diff --git a/cairo/test/user-font-mask.c b/io2d/src/3rd-party/cairo/test/user-font-mask.c
similarity index 100%
rename from cairo/test/user-font-mask.c
rename to io2d/src/3rd-party/cairo/test/user-font-mask.c
diff --git a/cairo/test/user-font-proxy.c b/io2d/src/3rd-party/cairo/test/user-font-proxy.c
similarity index 100%
rename from cairo/test/user-font-proxy.c
rename to io2d/src/3rd-party/cairo/test/user-font-proxy.c
diff --git a/cairo/test/user-font-rescale.c b/io2d/src/3rd-party/cairo/test/user-font-rescale.c
similarity index 100%
rename from cairo/test/user-font-rescale.c
rename to io2d/src/3rd-party/cairo/test/user-font-rescale.c
diff --git a/cairo/test/user-font.c b/io2d/src/3rd-party/cairo/test/user-font.c
similarity index 100%
rename from cairo/test/user-font.c
rename to io2d/src/3rd-party/cairo/test/user-font.c
diff --git a/cairo/test/white-in-noop.c b/io2d/src/3rd-party/cairo/test/white-in-noop.c
similarity index 100%
rename from cairo/test/white-in-noop.c
rename to io2d/src/3rd-party/cairo/test/white-in-noop.c
diff --git a/cairo/test/world-map.c b/io2d/src/3rd-party/cairo/test/world-map.c
similarity index 100%
rename from cairo/test/world-map.c
rename to io2d/src/3rd-party/cairo/test/world-map.c
diff --git a/cairo/test/world-map.h b/io2d/src/3rd-party/cairo/test/world-map.h
similarity index 100%
rename from cairo/test/world-map.h
rename to io2d/src/3rd-party/cairo/test/world-map.h
diff --git a/cairo/test/xcb-huge-image-shm.c b/io2d/src/3rd-party/cairo/test/xcb-huge-image-shm.c
similarity index 100%
rename from cairo/test/xcb-huge-image-shm.c
rename to io2d/src/3rd-party/cairo/test/xcb-huge-image-shm.c
diff --git a/cairo/test/xcb-huge-subimage.c b/io2d/src/3rd-party/cairo/test/xcb-huge-subimage.c
similarity index 100%
rename from cairo/test/xcb-huge-subimage.c
rename to io2d/src/3rd-party/cairo/test/xcb-huge-subimage.c
diff --git a/cairo/test/xcb-snapshot-assert.c b/io2d/src/3rd-party/cairo/test/xcb-snapshot-assert.c
similarity index 100%
rename from cairo/test/xcb-snapshot-assert.c
rename to io2d/src/3rd-party/cairo/test/xcb-snapshot-assert.c
diff --git a/cairo/test/xcb-stress-cache.c b/io2d/src/3rd-party/cairo/test/xcb-stress-cache.c
similarity index 100%
rename from cairo/test/xcb-stress-cache.c
rename to io2d/src/3rd-party/cairo/test/xcb-stress-cache.c
diff --git a/cairo/test/xcb-surface-source.c b/io2d/src/3rd-party/cairo/test/xcb-surface-source.c
similarity index 100%
rename from cairo/test/xcb-surface-source.c
rename to io2d/src/3rd-party/cairo/test/xcb-surface-source.c
diff --git a/cairo/test/xcomposite-projection.c b/io2d/src/3rd-party/cairo/test/xcomposite-projection.c
similarity index 100%
rename from cairo/test/xcomposite-projection.c
rename to io2d/src/3rd-party/cairo/test/xcomposite-projection.c
diff --git a/cairo/test/xlib-expose-event.c b/io2d/src/3rd-party/cairo/test/xlib-expose-event.c
similarity index 100%
rename from cairo/test/xlib-expose-event.c
rename to io2d/src/3rd-party/cairo/test/xlib-expose-event.c
diff --git a/cairo/test/xlib-surface-source.c b/io2d/src/3rd-party/cairo/test/xlib-surface-source.c
similarity index 100%
rename from cairo/test/xlib-surface-source.c
rename to io2d/src/3rd-party/cairo/test/xlib-surface-source.c
diff --git a/cairo/test/xlib-surface.c b/io2d/src/3rd-party/cairo/test/xlib-surface.c
similarity index 100%
rename from cairo/test/xlib-surface.c
rename to io2d/src/3rd-party/cairo/test/xlib-surface.c
diff --git a/cairo/test/zero-alpha.c b/io2d/src/3rd-party/cairo/test/zero-alpha.c
similarity index 100%
rename from cairo/test/zero-alpha.c
rename to io2d/src/3rd-party/cairo/test/zero-alpha.c
diff --git a/cairo/test/zero-mask.c b/io2d/src/3rd-party/cairo/test/zero-mask.c
similarity index 100%
rename from cairo/test/zero-mask.c
rename to io2d/src/3rd-party/cairo/test/zero-mask.c
diff --git a/cairo/util/.gitignore b/io2d/src/3rd-party/cairo/util/.gitignore
similarity index 100%
rename from cairo/util/.gitignore
rename to io2d/src/3rd-party/cairo/util/.gitignore
diff --git a/cairo/util/COPYING b/io2d/src/3rd-party/cairo/util/COPYING
similarity index 100%
rename from cairo/util/COPYING
rename to io2d/src/3rd-party/cairo/util/COPYING
diff --git a/cairo/util/Makefile.am b/io2d/src/3rd-party/cairo/util/Makefile.am
similarity index 100%
rename from cairo/util/Makefile.am
rename to io2d/src/3rd-party/cairo/util/Makefile.am
diff --git a/cairo/util/README b/io2d/src/3rd-party/cairo/util/README
similarity index 100%
rename from cairo/util/README
rename to io2d/src/3rd-party/cairo/util/README
diff --git a/cairo/util/backtrace-symbols.c b/io2d/src/3rd-party/cairo/util/backtrace-symbols.c
similarity index 100%
rename from cairo/util/backtrace-symbols.c
rename to io2d/src/3rd-party/cairo/util/backtrace-symbols.c
diff --git a/cairo/util/cairo-api-update b/io2d/src/3rd-party/cairo/util/cairo-api-update
similarity index 100%
rename from cairo/util/cairo-api-update
rename to io2d/src/3rd-party/cairo/util/cairo-api-update
diff --git a/cairo/util/cairo-fdr/Makefile.am b/io2d/src/3rd-party/cairo/util/cairo-fdr/Makefile.am
similarity index 100%
rename from cairo/util/cairo-fdr/Makefile.am
rename to io2d/src/3rd-party/cairo/util/cairo-fdr/Makefile.am
diff --git a/cairo/util/cairo-fdr/fdr.c b/io2d/src/3rd-party/cairo/util/cairo-fdr/fdr.c
similarity index 100%
rename from cairo/util/cairo-fdr/fdr.c
rename to io2d/src/3rd-party/cairo/util/cairo-fdr/fdr.c
diff --git a/cairo/util/cairo-gobject/Makefile.am b/io2d/src/3rd-party/cairo/util/cairo-gobject/Makefile.am
similarity index 100%
rename from cairo/util/cairo-gobject/Makefile.am
rename to io2d/src/3rd-party/cairo/util/cairo-gobject/Makefile.am
diff --git a/cairo/util/cairo-gobject/cairo-gobject-enums.c b/io2d/src/3rd-party/cairo/util/cairo-gobject/cairo-gobject-enums.c
similarity index 100%
rename from cairo/util/cairo-gobject/cairo-gobject-enums.c
rename to io2d/src/3rd-party/cairo/util/cairo-gobject/cairo-gobject-enums.c
diff --git a/cairo/util/cairo-gobject/cairo-gobject-structs.c b/io2d/src/3rd-party/cairo/util/cairo-gobject/cairo-gobject-structs.c
similarity index 100%
rename from cairo/util/cairo-gobject/cairo-gobject-structs.c
rename to io2d/src/3rd-party/cairo/util/cairo-gobject/cairo-gobject-structs.c
diff --git a/cairo/util/cairo-gobject/cairo-gobject.h b/io2d/src/3rd-party/cairo/util/cairo-gobject/cairo-gobject.h
similarity index 100%
rename from cairo/util/cairo-gobject/cairo-gobject.h
rename to io2d/src/3rd-party/cairo/util/cairo-gobject/cairo-gobject.h
diff --git a/cairo/util/cairo-missing/Makefile.am b/io2d/src/3rd-party/cairo/util/cairo-missing/Makefile.am
similarity index 100%
rename from cairo/util/cairo-missing/Makefile.am
rename to io2d/src/3rd-party/cairo/util/cairo-missing/Makefile.am
diff --git a/cairo/util/cairo-missing/Makefile.sources b/io2d/src/3rd-party/cairo/util/cairo-missing/Makefile.sources
similarity index 100%
rename from cairo/util/cairo-missing/Makefile.sources
rename to io2d/src/3rd-party/cairo/util/cairo-missing/Makefile.sources
diff --git a/cairo/util/cairo-missing/Makefile.win32 b/io2d/src/3rd-party/cairo/util/cairo-missing/Makefile.win32
similarity index 100%
rename from cairo/util/cairo-missing/Makefile.win32
rename to io2d/src/3rd-party/cairo/util/cairo-missing/Makefile.win32
diff --git a/cairo/util/cairo-missing/cairo-missing.h b/io2d/src/3rd-party/cairo/util/cairo-missing/cairo-missing.h
similarity index 100%
rename from cairo/util/cairo-missing/cairo-missing.h
rename to io2d/src/3rd-party/cairo/util/cairo-missing/cairo-missing.h
diff --git a/cairo/util/cairo-missing/getline.c b/io2d/src/3rd-party/cairo/util/cairo-missing/getline.c
similarity index 100%
rename from cairo/util/cairo-missing/getline.c
rename to io2d/src/3rd-party/cairo/util/cairo-missing/getline.c
diff --git a/cairo/util/cairo-missing/strndup.c b/io2d/src/3rd-party/cairo/util/cairo-missing/strndup.c
similarity index 100%
rename from cairo/util/cairo-missing/strndup.c
rename to io2d/src/3rd-party/cairo/util/cairo-missing/strndup.c
diff --git a/cairo/util/cairo-script/.gitignore b/io2d/src/3rd-party/cairo/util/cairo-script/.gitignore
similarity index 100%
rename from cairo/util/cairo-script/.gitignore
rename to io2d/src/3rd-party/cairo/util/cairo-script/.gitignore
diff --git a/cairo/util/cairo-script/COPYING b/io2d/src/3rd-party/cairo/util/cairo-script/COPYING
similarity index 100%
rename from cairo/util/cairo-script/COPYING
rename to io2d/src/3rd-party/cairo/util/cairo-script/COPYING
diff --git a/cairo/util/cairo-script/Makefile.am b/io2d/src/3rd-party/cairo/util/cairo-script/Makefile.am
similarity index 100%
rename from cairo/util/cairo-script/Makefile.am
rename to io2d/src/3rd-party/cairo/util/cairo-script/Makefile.am
diff --git a/cairo/util/cairo-script/Makefile.sources b/io2d/src/3rd-party/cairo/util/cairo-script/Makefile.sources
similarity index 100%
rename from cairo/util/cairo-script/Makefile.sources
rename to io2d/src/3rd-party/cairo/util/cairo-script/Makefile.sources
diff --git a/cairo/util/cairo-script/Makefile.win32 b/io2d/src/3rd-party/cairo/util/cairo-script/Makefile.win32
similarity index 100%
rename from cairo/util/cairo-script/Makefile.win32
rename to io2d/src/3rd-party/cairo/util/cairo-script/Makefile.win32
diff --git a/cairo/util/cairo-script/cairo-script-file.c b/io2d/src/3rd-party/cairo/util/cairo-script/cairo-script-file.c
similarity index 100%
rename from cairo/util/cairo-script/cairo-script-file.c
rename to io2d/src/3rd-party/cairo/util/cairo-script/cairo-script-file.c
diff --git a/cairo/util/cairo-script/cairo-script-hash.c b/io2d/src/3rd-party/cairo/util/cairo-script/cairo-script-hash.c
similarity index 100%
rename from cairo/util/cairo-script/cairo-script-hash.c
rename to io2d/src/3rd-party/cairo/util/cairo-script/cairo-script-hash.c
diff --git a/cairo/util/cairo-script/cairo-script-interpreter.c b/io2d/src/3rd-party/cairo/util/cairo-script/cairo-script-interpreter.c
similarity index 100%
rename from cairo/util/cairo-script/cairo-script-interpreter.c
rename to io2d/src/3rd-party/cairo/util/cairo-script/cairo-script-interpreter.c
diff --git a/cairo/util/cairo-script/cairo-script-interpreter.h b/io2d/src/3rd-party/cairo/util/cairo-script/cairo-script-interpreter.h
similarity index 100%
rename from cairo/util/cairo-script/cairo-script-interpreter.h
rename to io2d/src/3rd-party/cairo/util/cairo-script/cairo-script-interpreter.h
diff --git a/cairo/util/cairo-script/cairo-script-objects.c b/io2d/src/3rd-party/cairo/util/cairo-script/cairo-script-objects.c
similarity index 100%
rename from cairo/util/cairo-script/cairo-script-objects.c
rename to io2d/src/3rd-party/cairo/util/cairo-script/cairo-script-objects.c
diff --git a/cairo/util/cairo-script/cairo-script-operators.c b/io2d/src/3rd-party/cairo/util/cairo-script/cairo-script-operators.c
similarity index 100%
rename from cairo/util/cairo-script/cairo-script-operators.c
rename to io2d/src/3rd-party/cairo/util/cairo-script/cairo-script-operators.c
diff --git a/cairo/util/cairo-script/cairo-script-private.h b/io2d/src/3rd-party/cairo/util/cairo-script/cairo-script-private.h
similarity index 100%
rename from cairo/util/cairo-script/cairo-script-private.h
rename to io2d/src/3rd-party/cairo/util/cairo-script/cairo-script-private.h
diff --git a/cairo/util/cairo-script/cairo-script-scanner.c b/io2d/src/3rd-party/cairo/util/cairo-script/cairo-script-scanner.c
similarity index 100%
rename from cairo/util/cairo-script/cairo-script-scanner.c
rename to io2d/src/3rd-party/cairo/util/cairo-script/cairo-script-scanner.c
diff --git a/cairo/util/cairo-script/cairo-script-stack.c b/io2d/src/3rd-party/cairo/util/cairo-script/cairo-script-stack.c
similarity index 100%
rename from cairo/util/cairo-script/cairo-script-stack.c
rename to io2d/src/3rd-party/cairo/util/cairo-script/cairo-script-stack.c
diff --git a/cairo/util/cairo-script/csi-bind.c b/io2d/src/3rd-party/cairo/util/cairo-script/csi-bind.c
similarity index 100%
rename from cairo/util/cairo-script/csi-bind.c
rename to io2d/src/3rd-party/cairo/util/cairo-script/csi-bind.c
diff --git a/cairo/util/cairo-script/csi-exec.c b/io2d/src/3rd-party/cairo/util/cairo-script/csi-exec.c
similarity index 100%
rename from cairo/util/cairo-script/csi-exec.c
rename to io2d/src/3rd-party/cairo/util/cairo-script/csi-exec.c
diff --git a/cairo/util/cairo-script/csi-replay.c b/io2d/src/3rd-party/cairo/util/cairo-script/csi-replay.c
similarity index 100%
rename from cairo/util/cairo-script/csi-replay.c
rename to io2d/src/3rd-party/cairo/util/cairo-script/csi-replay.c
diff --git a/cairo/util/cairo-script/csi-trace.c b/io2d/src/3rd-party/cairo/util/cairo-script/csi-trace.c
similarity index 100%
rename from cairo/util/cairo-script/csi-trace.c
rename to io2d/src/3rd-party/cairo/util/cairo-script/csi-trace.c
diff --git a/cairo/util/cairo-script/examples/Makefile.am b/io2d/src/3rd-party/cairo/util/cairo-script/examples/Makefile.am
similarity index 100%
rename from cairo/util/cairo-script/examples/Makefile.am
rename to io2d/src/3rd-party/cairo/util/cairo-script/examples/Makefile.am
diff --git a/cairo/util/cairo-script/examples/dragon.cs b/io2d/src/3rd-party/cairo/util/cairo-script/examples/dragon.cs
similarity index 100%
rename from cairo/util/cairo-script/examples/dragon.cs
rename to io2d/src/3rd-party/cairo/util/cairo-script/examples/dragon.cs
diff --git a/cairo/util/cairo-script/examples/hilbert.cs b/io2d/src/3rd-party/cairo/util/cairo-script/examples/hilbert.cs
similarity index 100%
rename from cairo/util/cairo-script/examples/hilbert.cs
rename to io2d/src/3rd-party/cairo/util/cairo-script/examples/hilbert.cs
diff --git a/cairo/util/cairo-script/examples/infinichess.cs b/io2d/src/3rd-party/cairo/util/cairo-script/examples/infinichess.cs
similarity index 100%
rename from cairo/util/cairo-script/examples/infinichess.cs
rename to io2d/src/3rd-party/cairo/util/cairo-script/examples/infinichess.cs
diff --git a/cairo/util/cairo-script/examples/interference.cs b/io2d/src/3rd-party/cairo/util/cairo-script/examples/interference.cs
similarity index 100%
rename from cairo/util/cairo-script/examples/interference.cs
rename to io2d/src/3rd-party/cairo/util/cairo-script/examples/interference.cs
diff --git a/cairo/util/cairo-script/examples/pythagoras-tree.cs b/io2d/src/3rd-party/cairo/util/cairo-script/examples/pythagoras-tree.cs
similarity index 100%
rename from cairo/util/cairo-script/examples/pythagoras-tree.cs
rename to io2d/src/3rd-party/cairo/util/cairo-script/examples/pythagoras-tree.cs
diff --git a/cairo/util/cairo-script/examples/sierpinski.cs b/io2d/src/3rd-party/cairo/util/cairo-script/examples/sierpinski.cs
similarity index 100%
rename from cairo/util/cairo-script/examples/sierpinski.cs
rename to io2d/src/3rd-party/cairo/util/cairo-script/examples/sierpinski.cs
diff --git a/cairo/util/cairo-script/examples/wedgeAnnulus_crop_ybRings.cs b/io2d/src/3rd-party/cairo/util/cairo-script/examples/wedgeAnnulus_crop_ybRings.cs
similarity index 100%
rename from cairo/util/cairo-script/examples/wedgeAnnulus_crop_ybRings.cs
rename to io2d/src/3rd-party/cairo/util/cairo-script/examples/wedgeAnnulus_crop_ybRings.cs
diff --git a/cairo/util/cairo-script/examples/world-map.cs b/io2d/src/3rd-party/cairo/util/cairo-script/examples/world-map.cs
similarity index 100%
rename from cairo/util/cairo-script/examples/world-map.cs
rename to io2d/src/3rd-party/cairo/util/cairo-script/examples/world-map.cs
diff --git a/cairo/util/cairo-script/examples/zrusin.cs b/io2d/src/3rd-party/cairo/util/cairo-script/examples/zrusin.cs
similarity index 100%
rename from cairo/util/cairo-script/examples/zrusin.cs
rename to io2d/src/3rd-party/cairo/util/cairo-script/examples/zrusin.cs
diff --git a/cairo/util/cairo-sphinx/.gitignore b/io2d/src/3rd-party/cairo/util/cairo-sphinx/.gitignore
similarity index 100%
rename from cairo/util/cairo-sphinx/.gitignore
rename to io2d/src/3rd-party/cairo/util/cairo-sphinx/.gitignore
diff --git a/cairo/util/cairo-sphinx/Makefile.am b/io2d/src/3rd-party/cairo/util/cairo-sphinx/Makefile.am
similarity index 100%
rename from cairo/util/cairo-sphinx/Makefile.am
rename to io2d/src/3rd-party/cairo/util/cairo-sphinx/Makefile.am
diff --git a/cairo/util/cairo-sphinx/fdr.c b/io2d/src/3rd-party/cairo/util/cairo-sphinx/fdr.c
similarity index 100%
rename from cairo/util/cairo-sphinx/fdr.c
rename to io2d/src/3rd-party/cairo/util/cairo-sphinx/fdr.c
diff --git a/cairo/util/cairo-sphinx/sphinx.c b/io2d/src/3rd-party/cairo/util/cairo-sphinx/sphinx.c
similarity index 100%
rename from cairo/util/cairo-sphinx/sphinx.c
rename to io2d/src/3rd-party/cairo/util/cairo-sphinx/sphinx.c
diff --git a/cairo/util/cairo-trace/.gitignore b/io2d/src/3rd-party/cairo/util/cairo-trace/.gitignore
similarity index 100%
rename from cairo/util/cairo-trace/.gitignore
rename to io2d/src/3rd-party/cairo/util/cairo-trace/.gitignore
diff --git a/cairo/util/cairo-trace/COPYING b/io2d/src/3rd-party/cairo/util/cairo-trace/COPYING
similarity index 100%
rename from cairo/util/cairo-trace/COPYING
rename to io2d/src/3rd-party/cairo/util/cairo-trace/COPYING
diff --git a/cairo/util/cairo-trace/COPYING-GPL-3 b/io2d/src/3rd-party/cairo/util/cairo-trace/COPYING-GPL-3
similarity index 100%
rename from cairo/util/cairo-trace/COPYING-GPL-3
rename to io2d/src/3rd-party/cairo/util/cairo-trace/COPYING-GPL-3
diff --git a/cairo/util/cairo-trace/Makefile.am b/io2d/src/3rd-party/cairo/util/cairo-trace/Makefile.am
similarity index 100%
rename from cairo/util/cairo-trace/Makefile.am
rename to io2d/src/3rd-party/cairo/util/cairo-trace/Makefile.am
diff --git a/cairo/util/cairo-trace/cairo-trace.in b/io2d/src/3rd-party/cairo/util/cairo-trace/cairo-trace.in
similarity index 100%
rename from cairo/util/cairo-trace/cairo-trace.in
rename to io2d/src/3rd-party/cairo/util/cairo-trace/cairo-trace.in
diff --git a/cairo/util/cairo-trace/lookup-symbol.c b/io2d/src/3rd-party/cairo/util/cairo-trace/lookup-symbol.c
similarity index 100%
rename from cairo/util/cairo-trace/lookup-symbol.c
rename to io2d/src/3rd-party/cairo/util/cairo-trace/lookup-symbol.c
diff --git a/cairo/util/cairo-trace/lookup-symbol.h b/io2d/src/3rd-party/cairo/util/cairo-trace/lookup-symbol.h
similarity index 100%
rename from cairo/util/cairo-trace/lookup-symbol.h
rename to io2d/src/3rd-party/cairo/util/cairo-trace/lookup-symbol.h
diff --git a/cairo/util/cairo-trace/trace.c b/io2d/src/3rd-party/cairo/util/cairo-trace/trace.c
similarity index 100%
rename from cairo/util/cairo-trace/trace.c
rename to io2d/src/3rd-party/cairo/util/cairo-trace/trace.c
diff --git a/cairo/util/cairo-view b/io2d/src/3rd-party/cairo/util/cairo-view
similarity index 100%
rename from cairo/util/cairo-view
rename to io2d/src/3rd-party/cairo/util/cairo-view
diff --git a/cairo/util/cairo.modules b/io2d/src/3rd-party/cairo/util/cairo.modules
similarity index 100%
rename from cairo/util/cairo.modules
rename to io2d/src/3rd-party/cairo/util/cairo.modules
diff --git a/cairo/util/font-view.c b/io2d/src/3rd-party/cairo/util/font-view.c
similarity index 100%
rename from cairo/util/font-view.c
rename to io2d/src/3rd-party/cairo/util/font-view.c
diff --git a/cairo/util/malloc-stats.c b/io2d/src/3rd-party/cairo/util/malloc-stats.c
similarity index 100%
rename from cairo/util/malloc-stats.c
rename to io2d/src/3rd-party/cairo/util/malloc-stats.c
diff --git a/cairo/util/show-contour.c b/io2d/src/3rd-party/cairo/util/show-contour.c
similarity index 100%
rename from cairo/util/show-contour.c
rename to io2d/src/3rd-party/cairo/util/show-contour.c
diff --git a/cairo/util/show-edges.c b/io2d/src/3rd-party/cairo/util/show-edges.c
similarity index 100%
rename from cairo/util/show-edges.c
rename to io2d/src/3rd-party/cairo/util/show-edges.c
diff --git a/cairo/util/show-events.c b/io2d/src/3rd-party/cairo/util/show-events.c
similarity index 100%
rename from cairo/util/show-events.c
rename to io2d/src/3rd-party/cairo/util/show-events.c
diff --git a/cairo/util/show-polygon.c b/io2d/src/3rd-party/cairo/util/show-polygon.c
similarity index 100%
rename from cairo/util/show-polygon.c
rename to io2d/src/3rd-party/cairo/util/show-polygon.c
diff --git a/cairo/util/show-traps.c b/io2d/src/3rd-party/cairo/util/show-traps.c
similarity index 100%
rename from cairo/util/show-traps.c
rename to io2d/src/3rd-party/cairo/util/show-traps.c
diff --git a/cairo/util/trace-to-xml.c b/io2d/src/3rd-party/cairo/util/trace-to-xml.c
similarity index 100%
rename from cairo/util/trace-to-xml.c
rename to io2d/src/3rd-party/cairo/util/trace-to-xml.c
diff --git a/cairo/util/waterfall b/io2d/src/3rd-party/cairo/util/waterfall
similarity index 100%
rename from cairo/util/waterfall
rename to io2d/src/3rd-party/cairo/util/waterfall
diff --git a/cairo/util/xml-to-trace.c b/io2d/src/3rd-party/cairo/util/xml-to-trace.c
similarity index 100%
rename from cairo/util/xml-to-trace.c
rename to io2d/src/3rd-party/cairo/util/xml-to-trace.c
diff --git a/cairo/util/xr2cairo b/io2d/src/3rd-party/cairo/util/xr2cairo
similarity index 100%
rename from cairo/util/xr2cairo
rename to io2d/src/3rd-party/cairo/util/xr2cairo
diff --git a/pixman/.gitignore b/io2d/src/3rd-party/pixman/.gitignore
similarity index 100%
rename from pixman/.gitignore
rename to io2d/src/3rd-party/pixman/.gitignore
diff --git a/pixman/AUTHORS b/io2d/src/3rd-party/pixman/AUTHORS
similarity index 100%
rename from pixman/AUTHORS
rename to io2d/src/3rd-party/pixman/AUTHORS
diff --git a/io2d/src/3rd-party/pixman/CMakeLists.txt b/io2d/src/3rd-party/pixman/CMakeLists.txt
new file mode 100644
index 0000000..2294069
--- /dev/null
+++ b/io2d/src/3rd-party/pixman/CMakeLists.txt
@@ -0,0 +1,47 @@
+cmake_minimum_required(VERSION 2.8.12)
+
+project(pixman C)
+
+set(PIXMAN_SRC
+ pixman/pixman.c pixman/pixman-access.c
+ pixman/pixman-access-accessors.c pixman/pixman-bits-image.c
+ pixman/pixman-combine32.c pixman/pixman-combine-float.c
+ pixman/pixman-conical-gradient.c pixman/pixman-filter.c
+ pixman/pixman-x86.c pixman/pixman-mips.c
+ pixman/pixman-arm.c pixman/pixman-ppc.c
+ pixman/pixman-edge.c pixman/pixman-edge-accessors.c
+ pixman/pixman-fast-path.c pixman/pixman-glyph.c
+ pixman/pixman-general.c pixman/pixman-gradient-walker.c
+ pixman/pixman-image.c pixman/pixman-implementation.c
+ pixman/pixman-linear-gradient.c pixman/pixman-matrix.c
+ pixman/pixman-noop.c pixman/pixman-radial-gradient.c
+ pixman/pixman-region16.c pixman/pixman-region32.c
+ pixman/pixman-solid-fill.c pixman/pixman-timer.c
+ pixman/pixman-trap.c pixman/pixman-utils.c
+)
+
+add_library(pixman ${PIXMAN_SRC})
+
+target_include_directories(pixman PRIVATE
+ ${CMAKE_CURRENT_SOURCE_DIR}/pixman
+ ${CMAKE_CURRENT_BINARY_DIR}
+)
+
+option(USE_SSE2 "use SSE2 compiler intrinsics" ON)
+if (USE_SSE2 AND CMAKE_COMPILER_IS_GNU_C)
+ list(APPEND PIXMAN_SRC pixman/pixman-sse2.c)
+ target_compile_definitions(pixman PRIVATE USE_SSE2)
+endif()
+
+include(CheckIncludeFiles)
+target_compile_definitions(pixman PRIVATE HAVE_CONFIG_H)
+check_include_files(pthread.h HAVE_PTHREADS)
+configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.cmake
+ ${CMAKE_CURRENT_BINARY_DIR}/config.h)
+
+set(PIXMAN_VERSION_MAJOR 0)
+set(PIXMAN_VERSION_MINOR 33)
+set(PIXMAN_VERSION_MICRO 1)
+
+configure_file(${CMAKE_CURRENT_SOURCE_DIR}/pixman/pixman-version.h.in
+ ${CMAKE_CURRENT_BINARY_DIR}/pixman-version.h)
diff --git a/pixman/CODING_STYLE b/io2d/src/3rd-party/pixman/CODING_STYLE
similarity index 100%
rename from pixman/CODING_STYLE
rename to io2d/src/3rd-party/pixman/CODING_STYLE
diff --git a/pixman/COPYING b/io2d/src/3rd-party/pixman/COPYING
similarity index 100%
rename from pixman/COPYING
rename to io2d/src/3rd-party/pixman/COPYING
diff --git a/pixman/ChangeLog b/io2d/src/3rd-party/pixman/ChangeLog
similarity index 100%
rename from pixman/ChangeLog
rename to io2d/src/3rd-party/pixman/ChangeLog
diff --git a/pixman/INSTALL b/io2d/src/3rd-party/pixman/INSTALL
similarity index 100%
rename from pixman/INSTALL
rename to io2d/src/3rd-party/pixman/INSTALL
diff --git a/pixman/Makefile.am b/io2d/src/3rd-party/pixman/Makefile.am
similarity index 100%
rename from pixman/Makefile.am
rename to io2d/src/3rd-party/pixman/Makefile.am
diff --git a/pixman/Makefile.win32 b/io2d/src/3rd-party/pixman/Makefile.win32
similarity index 100%
rename from pixman/Makefile.win32
rename to io2d/src/3rd-party/pixman/Makefile.win32
diff --git a/pixman/Makefile.win32.common b/io2d/src/3rd-party/pixman/Makefile.win32.common
similarity index 100%
rename from pixman/Makefile.win32.common
rename to io2d/src/3rd-party/pixman/Makefile.win32.common
diff --git a/pixman/NEWS b/io2d/src/3rd-party/pixman/NEWS
similarity index 100%
rename from pixman/NEWS
rename to io2d/src/3rd-party/pixman/NEWS
diff --git a/pixman/README b/io2d/src/3rd-party/pixman/README
similarity index 100%
rename from pixman/README
rename to io2d/src/3rd-party/pixman/README
diff --git a/pixman/RELEASING b/io2d/src/3rd-party/pixman/RELEASING
similarity index 100%
rename from pixman/RELEASING
rename to io2d/src/3rd-party/pixman/RELEASING
diff --git a/pixman/autogen.sh b/io2d/src/3rd-party/pixman/autogen.sh
similarity index 100%
rename from pixman/autogen.sh
rename to io2d/src/3rd-party/pixman/autogen.sh
diff --git a/io2d/src/3rd-party/pixman/config.h.cmake b/io2d/src/3rd-party/pixman/config.h.cmake
new file mode 100644
index 0000000..1f022ce
--- /dev/null
+++ b/io2d/src/3rd-party/pixman/config.h.cmake
@@ -0,0 +1,2 @@
+#cmakedefine HAVE_PTHREADS 1
+#define PACKAGE 1
diff --git a/pixman/configure.ac b/io2d/src/3rd-party/pixman/configure.ac
similarity index 100%
rename from pixman/configure.ac
rename to io2d/src/3rd-party/pixman/configure.ac
diff --git a/pixman/demos/Makefile.am b/io2d/src/3rd-party/pixman/demos/Makefile.am
similarity index 100%
rename from pixman/demos/Makefile.am
rename to io2d/src/3rd-party/pixman/demos/Makefile.am
diff --git a/pixman/demos/alpha-test.c b/io2d/src/3rd-party/pixman/demos/alpha-test.c
similarity index 100%
rename from pixman/demos/alpha-test.c
rename to io2d/src/3rd-party/pixman/demos/alpha-test.c
diff --git a/pixman/demos/checkerboard.c b/io2d/src/3rd-party/pixman/demos/checkerboard.c
similarity index 100%
rename from pixman/demos/checkerboard.c
rename to io2d/src/3rd-party/pixman/demos/checkerboard.c
diff --git a/pixman/demos/clip-in.c b/io2d/src/3rd-party/pixman/demos/clip-in.c
similarity index 100%
rename from pixman/demos/clip-in.c
rename to io2d/src/3rd-party/pixman/demos/clip-in.c
diff --git a/pixman/demos/clip-test.c b/io2d/src/3rd-party/pixman/demos/clip-test.c
similarity index 100%
rename from pixman/demos/clip-test.c
rename to io2d/src/3rd-party/pixman/demos/clip-test.c
diff --git a/pixman/demos/composite-test.c b/io2d/src/3rd-party/pixman/demos/composite-test.c
similarity index 100%
rename from pixman/demos/composite-test.c
rename to io2d/src/3rd-party/pixman/demos/composite-test.c
diff --git a/pixman/demos/conical-test.c b/io2d/src/3rd-party/pixman/demos/conical-test.c
similarity index 100%
rename from pixman/demos/conical-test.c
rename to io2d/src/3rd-party/pixman/demos/conical-test.c
diff --git a/pixman/demos/convolution-test.c b/io2d/src/3rd-party/pixman/demos/convolution-test.c
similarity index 100%
rename from pixman/demos/convolution-test.c
rename to io2d/src/3rd-party/pixman/demos/convolution-test.c
diff --git a/pixman/demos/gradient-test.c b/io2d/src/3rd-party/pixman/demos/gradient-test.c
similarity index 100%
rename from pixman/demos/gradient-test.c
rename to io2d/src/3rd-party/pixman/demos/gradient-test.c
diff --git a/pixman/demos/gtk-utils.c b/io2d/src/3rd-party/pixman/demos/gtk-utils.c
similarity index 100%
rename from pixman/demos/gtk-utils.c
rename to io2d/src/3rd-party/pixman/demos/gtk-utils.c
diff --git a/pixman/demos/gtk-utils.h b/io2d/src/3rd-party/pixman/demos/gtk-utils.h
similarity index 100%
rename from pixman/demos/gtk-utils.h
rename to io2d/src/3rd-party/pixman/demos/gtk-utils.h
diff --git a/pixman/demos/linear-gradient.c b/io2d/src/3rd-party/pixman/demos/linear-gradient.c
similarity index 100%
rename from pixman/demos/linear-gradient.c
rename to io2d/src/3rd-party/pixman/demos/linear-gradient.c
diff --git a/pixman/demos/parrot.c b/io2d/src/3rd-party/pixman/demos/parrot.c
similarity index 100%
rename from pixman/demos/parrot.c
rename to io2d/src/3rd-party/pixman/demos/parrot.c
diff --git a/pixman/demos/parrot.jpg b/io2d/src/3rd-party/pixman/demos/parrot.jpg
similarity index 100%
rename from pixman/demos/parrot.jpg
rename to io2d/src/3rd-party/pixman/demos/parrot.jpg
diff --git a/pixman/demos/quad2quad.c b/io2d/src/3rd-party/pixman/demos/quad2quad.c
similarity index 100%
rename from pixman/demos/quad2quad.c
rename to io2d/src/3rd-party/pixman/demos/quad2quad.c
diff --git a/pixman/demos/radial-test.c b/io2d/src/3rd-party/pixman/demos/radial-test.c
similarity index 100%
rename from pixman/demos/radial-test.c
rename to io2d/src/3rd-party/pixman/demos/radial-test.c
diff --git a/pixman/demos/scale.c b/io2d/src/3rd-party/pixman/demos/scale.c
similarity index 100%
rename from pixman/demos/scale.c
rename to io2d/src/3rd-party/pixman/demos/scale.c
diff --git a/pixman/demos/scale.ui b/io2d/src/3rd-party/pixman/demos/scale.ui
similarity index 100%
rename from pixman/demos/scale.ui
rename to io2d/src/3rd-party/pixman/demos/scale.ui
diff --git a/pixman/demos/screen-test.c b/io2d/src/3rd-party/pixman/demos/screen-test.c
similarity index 100%
rename from pixman/demos/screen-test.c
rename to io2d/src/3rd-party/pixman/demos/screen-test.c
diff --git a/pixman/demos/srgb-test.c b/io2d/src/3rd-party/pixman/demos/srgb-test.c
similarity index 100%
rename from pixman/demos/srgb-test.c
rename to io2d/src/3rd-party/pixman/demos/srgb-test.c
diff --git a/pixman/demos/srgb-trap-test.c b/io2d/src/3rd-party/pixman/demos/srgb-trap-test.c
similarity index 100%
rename from pixman/demos/srgb-trap-test.c
rename to io2d/src/3rd-party/pixman/demos/srgb-trap-test.c
diff --git a/pixman/demos/trap-test.c b/io2d/src/3rd-party/pixman/demos/trap-test.c
similarity index 100%
rename from pixman/demos/trap-test.c
rename to io2d/src/3rd-party/pixman/demos/trap-test.c
diff --git a/pixman/demos/tri-test.c b/io2d/src/3rd-party/pixman/demos/tri-test.c
similarity index 100%
rename from pixman/demos/tri-test.c
rename to io2d/src/3rd-party/pixman/demos/tri-test.c
diff --git a/pixman/demos/zone_plate.png b/io2d/src/3rd-party/pixman/demos/zone_plate.png
similarity index 100%
rename from pixman/demos/zone_plate.png
rename to io2d/src/3rd-party/pixman/demos/zone_plate.png
diff --git a/pixman/pixman-1-uninstalled.pc.in b/io2d/src/3rd-party/pixman/pixman-1-uninstalled.pc.in
similarity index 100%
rename from pixman/pixman-1-uninstalled.pc.in
rename to io2d/src/3rd-party/pixman/pixman-1-uninstalled.pc.in
diff --git a/pixman/pixman-1.pc.in b/io2d/src/3rd-party/pixman/pixman-1.pc.in
similarity index 100%
rename from pixman/pixman-1.pc.in
rename to io2d/src/3rd-party/pixman/pixman-1.pc.in
diff --git a/pixman/pixman/Makefile.am b/io2d/src/3rd-party/pixman/pixman/Makefile.am
similarity index 100%
rename from pixman/pixman/Makefile.am
rename to io2d/src/3rd-party/pixman/pixman/Makefile.am
diff --git a/pixman/pixman/Makefile.sources b/io2d/src/3rd-party/pixman/pixman/Makefile.sources
similarity index 100%
rename from pixman/pixman/Makefile.sources
rename to io2d/src/3rd-party/pixman/pixman/Makefile.sources
diff --git a/pixman/pixman/Makefile.win32 b/io2d/src/3rd-party/pixman/pixman/Makefile.win32
similarity index 100%
rename from pixman/pixman/Makefile.win32
rename to io2d/src/3rd-party/pixman/pixman/Makefile.win32
diff --git a/pixman/pixman/loongson-mmintrin.h b/io2d/src/3rd-party/pixman/pixman/loongson-mmintrin.h
similarity index 100%
rename from pixman/pixman/loongson-mmintrin.h
rename to io2d/src/3rd-party/pixman/pixman/loongson-mmintrin.h
diff --git a/pixman/pixman/make-srgb.pl b/io2d/src/3rd-party/pixman/pixman/make-srgb.pl
similarity index 100%
rename from pixman/pixman/make-srgb.pl
rename to io2d/src/3rd-party/pixman/pixman/make-srgb.pl
diff --git a/pixman/pixman/pixman-access-accessors.c b/io2d/src/3rd-party/pixman/pixman/pixman-access-accessors.c
similarity index 100%
rename from pixman/pixman/pixman-access-accessors.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-access-accessors.c
diff --git a/pixman/pixman/pixman-access.c b/io2d/src/3rd-party/pixman/pixman/pixman-access.c
similarity index 100%
rename from pixman/pixman/pixman-access.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-access.c
diff --git a/pixman/pixman/pixman-accessor.h b/io2d/src/3rd-party/pixman/pixman/pixman-accessor.h
similarity index 100%
rename from pixman/pixman/pixman-accessor.h
rename to io2d/src/3rd-party/pixman/pixman/pixman-accessor.h
diff --git a/pixman/pixman/pixman-arm-common.h b/io2d/src/3rd-party/pixman/pixman/pixman-arm-common.h
similarity index 100%
rename from pixman/pixman/pixman-arm-common.h
rename to io2d/src/3rd-party/pixman/pixman/pixman-arm-common.h
diff --git a/pixman/pixman/pixman-arm-detect-win32.asm b/io2d/src/3rd-party/pixman/pixman/pixman-arm-detect-win32.asm
similarity index 100%
rename from pixman/pixman/pixman-arm-detect-win32.asm
rename to io2d/src/3rd-party/pixman/pixman/pixman-arm-detect-win32.asm
diff --git a/pixman/pixman/pixman-arm-neon-asm-bilinear.S b/io2d/src/3rd-party/pixman/pixman/pixman-arm-neon-asm-bilinear.S
similarity index 100%
rename from pixman/pixman/pixman-arm-neon-asm-bilinear.S
rename to io2d/src/3rd-party/pixman/pixman/pixman-arm-neon-asm-bilinear.S
diff --git a/pixman/pixman/pixman-arm-neon-asm.S b/io2d/src/3rd-party/pixman/pixman/pixman-arm-neon-asm.S
similarity index 100%
rename from pixman/pixman/pixman-arm-neon-asm.S
rename to io2d/src/3rd-party/pixman/pixman/pixman-arm-neon-asm.S
diff --git a/pixman/pixman/pixman-arm-neon-asm.h b/io2d/src/3rd-party/pixman/pixman/pixman-arm-neon-asm.h
similarity index 100%
rename from pixman/pixman/pixman-arm-neon-asm.h
rename to io2d/src/3rd-party/pixman/pixman/pixman-arm-neon-asm.h
diff --git a/pixman/pixman/pixman-arm-neon.c b/io2d/src/3rd-party/pixman/pixman/pixman-arm-neon.c
similarity index 100%
rename from pixman/pixman/pixman-arm-neon.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-arm-neon.c
diff --git a/pixman/pixman/pixman-arm-simd-asm-scaled.S b/io2d/src/3rd-party/pixman/pixman/pixman-arm-simd-asm-scaled.S
similarity index 100%
rename from pixman/pixman/pixman-arm-simd-asm-scaled.S
rename to io2d/src/3rd-party/pixman/pixman/pixman-arm-simd-asm-scaled.S
diff --git a/pixman/pixman/pixman-arm-simd-asm.S b/io2d/src/3rd-party/pixman/pixman/pixman-arm-simd-asm.S
similarity index 100%
rename from pixman/pixman/pixman-arm-simd-asm.S
rename to io2d/src/3rd-party/pixman/pixman/pixman-arm-simd-asm.S
diff --git a/pixman/pixman/pixman-arm-simd-asm.h b/io2d/src/3rd-party/pixman/pixman/pixman-arm-simd-asm.h
similarity index 100%
rename from pixman/pixman/pixman-arm-simd-asm.h
rename to io2d/src/3rd-party/pixman/pixman/pixman-arm-simd-asm.h
diff --git a/pixman/pixman/pixman-arm-simd.c b/io2d/src/3rd-party/pixman/pixman/pixman-arm-simd.c
similarity index 100%
rename from pixman/pixman/pixman-arm-simd.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-arm-simd.c
diff --git a/pixman/pixman/pixman-arm.c b/io2d/src/3rd-party/pixman/pixman/pixman-arm.c
similarity index 100%
rename from pixman/pixman/pixman-arm.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-arm.c
diff --git a/pixman/pixman/pixman-bits-image.c b/io2d/src/3rd-party/pixman/pixman/pixman-bits-image.c
similarity index 100%
rename from pixman/pixman/pixman-bits-image.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-bits-image.c
diff --git a/pixman/pixman/pixman-combine-float.c b/io2d/src/3rd-party/pixman/pixman/pixman-combine-float.c
similarity index 100%
rename from pixman/pixman/pixman-combine-float.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-combine-float.c
diff --git a/pixman/pixman/pixman-combine32.c b/io2d/src/3rd-party/pixman/pixman/pixman-combine32.c
similarity index 100%
rename from pixman/pixman/pixman-combine32.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-combine32.c
diff --git a/pixman/pixman/pixman-combine32.h b/io2d/src/3rd-party/pixman/pixman/pixman-combine32.h
similarity index 100%
rename from pixman/pixman/pixman-combine32.h
rename to io2d/src/3rd-party/pixman/pixman/pixman-combine32.h
diff --git a/pixman/pixman/pixman-compiler.h b/io2d/src/3rd-party/pixman/pixman/pixman-compiler.h
similarity index 100%
rename from pixman/pixman/pixman-compiler.h
rename to io2d/src/3rd-party/pixman/pixman/pixman-compiler.h
diff --git a/pixman/pixman/pixman-conical-gradient.c b/io2d/src/3rd-party/pixman/pixman/pixman-conical-gradient.c
similarity index 100%
rename from pixman/pixman/pixman-conical-gradient.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-conical-gradient.c
diff --git a/pixman/pixman/pixman-edge-accessors.c b/io2d/src/3rd-party/pixman/pixman/pixman-edge-accessors.c
similarity index 100%
rename from pixman/pixman/pixman-edge-accessors.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-edge-accessors.c
diff --git a/pixman/pixman/pixman-edge-imp.h b/io2d/src/3rd-party/pixman/pixman/pixman-edge-imp.h
similarity index 100%
rename from pixman/pixman/pixman-edge-imp.h
rename to io2d/src/3rd-party/pixman/pixman/pixman-edge-imp.h
diff --git a/pixman/pixman/pixman-edge.c b/io2d/src/3rd-party/pixman/pixman/pixman-edge.c
similarity index 100%
rename from pixman/pixman/pixman-edge.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-edge.c
diff --git a/pixman/pixman/pixman-fast-path.c b/io2d/src/3rd-party/pixman/pixman/pixman-fast-path.c
similarity index 100%
rename from pixman/pixman/pixman-fast-path.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-fast-path.c
diff --git a/pixman/pixman/pixman-filter.c b/io2d/src/3rd-party/pixman/pixman/pixman-filter.c
similarity index 100%
rename from pixman/pixman/pixman-filter.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-filter.c
diff --git a/pixman/pixman/pixman-general.c b/io2d/src/3rd-party/pixman/pixman/pixman-general.c
similarity index 100%
rename from pixman/pixman/pixman-general.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-general.c
diff --git a/pixman/pixman/pixman-glyph.c b/io2d/src/3rd-party/pixman/pixman/pixman-glyph.c
similarity index 100%
rename from pixman/pixman/pixman-glyph.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-glyph.c
diff --git a/pixman/pixman/pixman-gradient-walker.c b/io2d/src/3rd-party/pixman/pixman/pixman-gradient-walker.c
similarity index 100%
rename from pixman/pixman/pixman-gradient-walker.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-gradient-walker.c
diff --git a/pixman/pixman/pixman-image.c b/io2d/src/3rd-party/pixman/pixman/pixman-image.c
similarity index 100%
rename from pixman/pixman/pixman-image.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-image.c
diff --git a/pixman/pixman/pixman-implementation.c b/io2d/src/3rd-party/pixman/pixman/pixman-implementation.c
similarity index 100%
rename from pixman/pixman/pixman-implementation.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-implementation.c
diff --git a/pixman/pixman/pixman-inlines.h b/io2d/src/3rd-party/pixman/pixman/pixman-inlines.h
similarity index 100%
rename from pixman/pixman/pixman-inlines.h
rename to io2d/src/3rd-party/pixman/pixman/pixman-inlines.h
diff --git a/pixman/pixman/pixman-linear-gradient.c b/io2d/src/3rd-party/pixman/pixman/pixman-linear-gradient.c
similarity index 100%
rename from pixman/pixman/pixman-linear-gradient.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-linear-gradient.c
diff --git a/pixman/pixman/pixman-matrix.c b/io2d/src/3rd-party/pixman/pixman/pixman-matrix.c
similarity index 100%
rename from pixman/pixman/pixman-matrix.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-matrix.c
diff --git a/pixman/pixman/pixman-mips-dspr2-asm.S b/io2d/src/3rd-party/pixman/pixman/pixman-mips-dspr2-asm.S
similarity index 100%
rename from pixman/pixman/pixman-mips-dspr2-asm.S
rename to io2d/src/3rd-party/pixman/pixman/pixman-mips-dspr2-asm.S
diff --git a/pixman/pixman/pixman-mips-dspr2-asm.h b/io2d/src/3rd-party/pixman/pixman/pixman-mips-dspr2-asm.h
similarity index 100%
rename from pixman/pixman/pixman-mips-dspr2-asm.h
rename to io2d/src/3rd-party/pixman/pixman/pixman-mips-dspr2-asm.h
diff --git a/pixman/pixman/pixman-mips-dspr2.c b/io2d/src/3rd-party/pixman/pixman/pixman-mips-dspr2.c
similarity index 100%
rename from pixman/pixman/pixman-mips-dspr2.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-mips-dspr2.c
diff --git a/pixman/pixman/pixman-mips-dspr2.h b/io2d/src/3rd-party/pixman/pixman/pixman-mips-dspr2.h
similarity index 100%
rename from pixman/pixman/pixman-mips-dspr2.h
rename to io2d/src/3rd-party/pixman/pixman/pixman-mips-dspr2.h
diff --git a/pixman/pixman/pixman-mips-memcpy-asm.S b/io2d/src/3rd-party/pixman/pixman/pixman-mips-memcpy-asm.S
similarity index 100%
rename from pixman/pixman/pixman-mips-memcpy-asm.S
rename to io2d/src/3rd-party/pixman/pixman/pixman-mips-memcpy-asm.S
diff --git a/pixman/pixman/pixman-mips.c b/io2d/src/3rd-party/pixman/pixman/pixman-mips.c
similarity index 100%
rename from pixman/pixman/pixman-mips.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-mips.c
diff --git a/pixman/pixman/pixman-mmx.c b/io2d/src/3rd-party/pixman/pixman/pixman-mmx.c
similarity index 100%
rename from pixman/pixman/pixman-mmx.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-mmx.c
diff --git a/pixman/pixman/pixman-noop.c b/io2d/src/3rd-party/pixman/pixman/pixman-noop.c
similarity index 100%
rename from pixman/pixman/pixman-noop.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-noop.c
diff --git a/pixman/pixman/pixman-ppc.c b/io2d/src/3rd-party/pixman/pixman/pixman-ppc.c
similarity index 100%
rename from pixman/pixman/pixman-ppc.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-ppc.c
diff --git a/pixman/pixman/pixman-private.h b/io2d/src/3rd-party/pixman/pixman/pixman-private.h
similarity index 100%
rename from pixman/pixman/pixman-private.h
rename to io2d/src/3rd-party/pixman/pixman/pixman-private.h
diff --git a/pixman/pixman/pixman-radial-gradient.c b/io2d/src/3rd-party/pixman/pixman/pixman-radial-gradient.c
similarity index 100%
rename from pixman/pixman/pixman-radial-gradient.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-radial-gradient.c
diff --git a/pixman/pixman/pixman-region.c b/io2d/src/3rd-party/pixman/pixman/pixman-region.c
similarity index 100%
rename from pixman/pixman/pixman-region.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-region.c
diff --git a/pixman/pixman/pixman-region16.c b/io2d/src/3rd-party/pixman/pixman/pixman-region16.c
similarity index 100%
rename from pixman/pixman/pixman-region16.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-region16.c
diff --git a/pixman/pixman/pixman-region32.c b/io2d/src/3rd-party/pixman/pixman/pixman-region32.c
similarity index 100%
rename from pixman/pixman/pixman-region32.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-region32.c
diff --git a/pixman/pixman/pixman-solid-fill.c b/io2d/src/3rd-party/pixman/pixman/pixman-solid-fill.c
similarity index 100%
rename from pixman/pixman/pixman-solid-fill.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-solid-fill.c
diff --git a/pixman/pixman/pixman-sse2.c b/io2d/src/3rd-party/pixman/pixman/pixman-sse2.c
similarity index 100%
rename from pixman/pixman/pixman-sse2.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-sse2.c
diff --git a/pixman/pixman/pixman-ssse3.c b/io2d/src/3rd-party/pixman/pixman/pixman-ssse3.c
similarity index 100%
rename from pixman/pixman/pixman-ssse3.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-ssse3.c
diff --git a/pixman/pixman/pixman-timer.c b/io2d/src/3rd-party/pixman/pixman/pixman-timer.c
similarity index 100%
rename from pixman/pixman/pixman-timer.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-timer.c
diff --git a/pixman/pixman/pixman-trap.c b/io2d/src/3rd-party/pixman/pixman/pixman-trap.c
similarity index 100%
rename from pixman/pixman/pixman-trap.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-trap.c
diff --git a/pixman/pixman/pixman-utils.c b/io2d/src/3rd-party/pixman/pixman/pixman-utils.c
similarity index 100%
rename from pixman/pixman/pixman-utils.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-utils.c
diff --git a/pixman/pixman/pixman-version.h.in b/io2d/src/3rd-party/pixman/pixman/pixman-version.h.in
similarity index 100%
rename from pixman/pixman/pixman-version.h.in
rename to io2d/src/3rd-party/pixman/pixman/pixman-version.h.in
diff --git a/pixman/pixman/pixman-vmx.c b/io2d/src/3rd-party/pixman/pixman/pixman-vmx.c
similarity index 100%
rename from pixman/pixman/pixman-vmx.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-vmx.c
diff --git a/pixman/pixman/pixman-x86.c b/io2d/src/3rd-party/pixman/pixman/pixman-x86.c
similarity index 100%
rename from pixman/pixman/pixman-x86.c
rename to io2d/src/3rd-party/pixman/pixman/pixman-x86.c
diff --git a/pixman/pixman/pixman.c b/io2d/src/3rd-party/pixman/pixman/pixman.c
similarity index 100%
rename from pixman/pixman/pixman.c
rename to io2d/src/3rd-party/pixman/pixman/pixman.c
diff --git a/pixman/pixman/pixman.h b/io2d/src/3rd-party/pixman/pixman/pixman.h
similarity index 100%
rename from pixman/pixman/pixman.h
rename to io2d/src/3rd-party/pixman/pixman/pixman.h
diff --git a/pixman/pixman/rounding.txt b/io2d/src/3rd-party/pixman/pixman/rounding.txt
similarity index 100%
rename from pixman/pixman/rounding.txt
rename to io2d/src/3rd-party/pixman/pixman/rounding.txt
diff --git a/pixman/pixman/solaris-hwcap.mapfile b/io2d/src/3rd-party/pixman/pixman/solaris-hwcap.mapfile
similarity index 100%
rename from pixman/pixman/solaris-hwcap.mapfile
rename to io2d/src/3rd-party/pixman/pixman/solaris-hwcap.mapfile
diff --git a/pixman/test/Makefile.am b/io2d/src/3rd-party/pixman/test/Makefile.am
similarity index 100%
rename from pixman/test/Makefile.am
rename to io2d/src/3rd-party/pixman/test/Makefile.am
diff --git a/pixman/test/Makefile.sources b/io2d/src/3rd-party/pixman/test/Makefile.sources
similarity index 100%
rename from pixman/test/Makefile.sources
rename to io2d/src/3rd-party/pixman/test/Makefile.sources
diff --git a/pixman/test/Makefile.win32 b/io2d/src/3rd-party/pixman/test/Makefile.win32
similarity index 100%
rename from pixman/test/Makefile.win32
rename to io2d/src/3rd-party/pixman/test/Makefile.win32
diff --git a/pixman/test/a1-trap-test.c b/io2d/src/3rd-party/pixman/test/a1-trap-test.c
similarity index 100%
rename from pixman/test/a1-trap-test.c
rename to io2d/src/3rd-party/pixman/test/a1-trap-test.c
diff --git a/pixman/test/affine-test.c b/io2d/src/3rd-party/pixman/test/affine-test.c
similarity index 100%
rename from pixman/test/affine-test.c
rename to io2d/src/3rd-party/pixman/test/affine-test.c
diff --git a/pixman/test/alpha-loop.c b/io2d/src/3rd-party/pixman/test/alpha-loop.c
similarity index 100%
rename from pixman/test/alpha-loop.c
rename to io2d/src/3rd-party/pixman/test/alpha-loop.c
diff --git a/pixman/test/alphamap.c b/io2d/src/3rd-party/pixman/test/alphamap.c
similarity index 100%
rename from pixman/test/alphamap.c
rename to io2d/src/3rd-party/pixman/test/alphamap.c
diff --git a/pixman/test/blitters-test.c b/io2d/src/3rd-party/pixman/test/blitters-test.c
similarity index 100%
rename from pixman/test/blitters-test.c
rename to io2d/src/3rd-party/pixman/test/blitters-test.c
diff --git a/pixman/test/check-formats.c b/io2d/src/3rd-party/pixman/test/check-formats.c
similarity index 100%
rename from pixman/test/check-formats.c
rename to io2d/src/3rd-party/pixman/test/check-formats.c
diff --git a/pixman/test/combiner-test.c b/io2d/src/3rd-party/pixman/test/combiner-test.c
similarity index 100%
rename from pixman/test/combiner-test.c
rename to io2d/src/3rd-party/pixman/test/combiner-test.c
diff --git a/pixman/test/composite-traps-test.c b/io2d/src/3rd-party/pixman/test/composite-traps-test.c
similarity index 100%
rename from pixman/test/composite-traps-test.c
rename to io2d/src/3rd-party/pixman/test/composite-traps-test.c
diff --git a/pixman/test/composite.c b/io2d/src/3rd-party/pixman/test/composite.c
similarity index 100%
rename from pixman/test/composite.c
rename to io2d/src/3rd-party/pixman/test/composite.c
diff --git a/pixman/test/fetch-test.c b/io2d/src/3rd-party/pixman/test/fetch-test.c
similarity index 100%
rename from pixman/test/fetch-test.c
rename to io2d/src/3rd-party/pixman/test/fetch-test.c
diff --git a/pixman/test/fuzzer-find-diff.pl b/io2d/src/3rd-party/pixman/test/fuzzer-find-diff.pl
similarity index 100%
rename from pixman/test/fuzzer-find-diff.pl
rename to io2d/src/3rd-party/pixman/test/fuzzer-find-diff.pl
diff --git a/pixman/test/glyph-test.c b/io2d/src/3rd-party/pixman/test/glyph-test.c
similarity index 100%
rename from pixman/test/glyph-test.c
rename to io2d/src/3rd-party/pixman/test/glyph-test.c
diff --git a/pixman/test/gradient-crash-test.c b/io2d/src/3rd-party/pixman/test/gradient-crash-test.c
similarity index 100%
rename from pixman/test/gradient-crash-test.c
rename to io2d/src/3rd-party/pixman/test/gradient-crash-test.c
diff --git a/pixman/test/infinite-loop.c b/io2d/src/3rd-party/pixman/test/infinite-loop.c
similarity index 100%
rename from pixman/test/infinite-loop.c
rename to io2d/src/3rd-party/pixman/test/infinite-loop.c
diff --git a/pixman/test/lowlevel-blt-bench.c b/io2d/src/3rd-party/pixman/test/lowlevel-blt-bench.c
similarity index 100%
rename from pixman/test/lowlevel-blt-bench.c
rename to io2d/src/3rd-party/pixman/test/lowlevel-blt-bench.c
diff --git a/pixman/test/matrix-test.c b/io2d/src/3rd-party/pixman/test/matrix-test.c
similarity index 100%
rename from pixman/test/matrix-test.c
rename to io2d/src/3rd-party/pixman/test/matrix-test.c
diff --git a/pixman/test/oob-test.c b/io2d/src/3rd-party/pixman/test/oob-test.c
similarity index 100%
rename from pixman/test/oob-test.c
rename to io2d/src/3rd-party/pixman/test/oob-test.c
diff --git a/pixman/test/pdf-op-test.c b/io2d/src/3rd-party/pixman/test/pdf-op-test.c
similarity index 100%
rename from pixman/test/pdf-op-test.c
rename to io2d/src/3rd-party/pixman/test/pdf-op-test.c
diff --git a/pixman/test/pixel-test.c b/io2d/src/3rd-party/pixman/test/pixel-test.c
similarity index 100%
rename from pixman/test/pixel-test.c
rename to io2d/src/3rd-party/pixman/test/pixel-test.c
diff --git a/pixman/test/prng-test.c b/io2d/src/3rd-party/pixman/test/prng-test.c
similarity index 100%
rename from pixman/test/prng-test.c
rename to io2d/src/3rd-party/pixman/test/prng-test.c
diff --git a/pixman/test/radial-perf-test.c b/io2d/src/3rd-party/pixman/test/radial-perf-test.c
similarity index 100%
rename from pixman/test/radial-perf-test.c
rename to io2d/src/3rd-party/pixman/test/radial-perf-test.c
diff --git a/pixman/test/region-contains-test.c b/io2d/src/3rd-party/pixman/test/region-contains-test.c
similarity index 100%
rename from pixman/test/region-contains-test.c
rename to io2d/src/3rd-party/pixman/test/region-contains-test.c
diff --git a/pixman/test/region-test.c b/io2d/src/3rd-party/pixman/test/region-test.c
similarity index 100%
rename from pixman/test/region-test.c
rename to io2d/src/3rd-party/pixman/test/region-test.c
diff --git a/pixman/test/region-translate-test.c b/io2d/src/3rd-party/pixman/test/region-translate-test.c
similarity index 100%
rename from pixman/test/region-translate-test.c
rename to io2d/src/3rd-party/pixman/test/region-translate-test.c
diff --git a/pixman/test/rotate-test.c b/io2d/src/3rd-party/pixman/test/rotate-test.c
similarity index 100%
rename from pixman/test/rotate-test.c
rename to io2d/src/3rd-party/pixman/test/rotate-test.c
diff --git a/pixman/test/scaling-bench.c b/io2d/src/3rd-party/pixman/test/scaling-bench.c
similarity index 100%
rename from pixman/test/scaling-bench.c
rename to io2d/src/3rd-party/pixman/test/scaling-bench.c
diff --git a/pixman/test/scaling-crash-test.c b/io2d/src/3rd-party/pixman/test/scaling-crash-test.c
similarity index 100%
rename from pixman/test/scaling-crash-test.c
rename to io2d/src/3rd-party/pixman/test/scaling-crash-test.c
diff --git a/pixman/test/scaling-helpers-test.c b/io2d/src/3rd-party/pixman/test/scaling-helpers-test.c
similarity index 100%
rename from pixman/test/scaling-helpers-test.c
rename to io2d/src/3rd-party/pixman/test/scaling-helpers-test.c
diff --git a/pixman/test/scaling-test.c b/io2d/src/3rd-party/pixman/test/scaling-test.c
similarity index 100%
rename from pixman/test/scaling-test.c
rename to io2d/src/3rd-party/pixman/test/scaling-test.c
diff --git a/pixman/test/stress-test.c b/io2d/src/3rd-party/pixman/test/stress-test.c
similarity index 100%
rename from pixman/test/stress-test.c
rename to io2d/src/3rd-party/pixman/test/stress-test.c
diff --git a/pixman/test/thread-test.c b/io2d/src/3rd-party/pixman/test/thread-test.c
similarity index 100%
rename from pixman/test/thread-test.c
rename to io2d/src/3rd-party/pixman/test/thread-test.c
diff --git a/pixman/test/trap-crasher.c b/io2d/src/3rd-party/pixman/test/trap-crasher.c
similarity index 100%
rename from pixman/test/trap-crasher.c
rename to io2d/src/3rd-party/pixman/test/trap-crasher.c
diff --git a/pixman/test/utils-prng.c b/io2d/src/3rd-party/pixman/test/utils-prng.c
similarity index 100%
rename from pixman/test/utils-prng.c
rename to io2d/src/3rd-party/pixman/test/utils-prng.c
diff --git a/pixman/test/utils-prng.h b/io2d/src/3rd-party/pixman/test/utils-prng.h
similarity index 100%
rename from pixman/test/utils-prng.h
rename to io2d/src/3rd-party/pixman/test/utils-prng.h
diff --git a/pixman/test/utils.c b/io2d/src/3rd-party/pixman/test/utils.c
similarity index 100%
rename from pixman/test/utils.c
rename to io2d/src/3rd-party/pixman/test/utils.c
diff --git a/pixman/test/utils.h b/io2d/src/3rd-party/pixman/test/utils.h
similarity index 100%
rename from pixman/test/utils.h
rename to io2d/src/3rd-party/pixman/test/utils.h
diff --git a/io2d/src/CMakeLists.txt b/io2d/src/CMakeLists.txt
new file mode 100644
index 0000000..4841a05
--- /dev/null
+++ b/io2d/src/CMakeLists.txt
@@ -0,0 +1,68 @@
+cmake_minimum_required(VERSION 2.8.12)
+
+project(io2d CXX)
+
+set(CMAKE_CXX_STANDARD 14)
+set(CMAKE_CXX_EXTENSIONS OFF)
+
+add_subdirectory(3rd-party)
+set(CAIRO_INCLUDE_DIR
+ ${CMAKE_CURRENT_SOURCE_DIR}/3rd-party/cairo/src
+ ${CMAKE_CURRENT_SOURCE_DIR}/3rd-party/cairo/
+ ${CMAKE_CURRENT_BINARY_DIR}/3rd-party/cairo)
+set(CAIRO_LIBRARY cairo)
+
+set(IO2D_SRC
+ brush.cpp
+ device.cpp
+ display_surface-common.cpp
+ font_extents.cpp
+ font_resource.cpp
+ font_resource_factory.cpp
+ font_options.cpp
+ glyph_run.cpp
+ image_surface.cpp
+ io2d_error_category.cpp
+ linear_brush_factory.cpp
+ mapped_surface.cpp
+ matrix_2d.cpp
+ mesh_brush_factory.cpp
+ path.cpp
+ path_data.cpp
+ path_data_item.cpp
+ path_factory.cpp
+ radial_brush_factory.cpp
+ rectangle.cpp
+ rgba_color.cpp
+ solid_color_brush_factory.cpp
+ standalone_functions.cpp
+ surface.cpp
+ surface_brush_factory.cpp
+ text_extents.cpp
+ vector_2d.cpp
+)
+
+if (WIN32)
+ list(APPEND IO2D_SRC display_surface-win32.cpp)
+endif()
+
+if (CAIRO_HAS_XCB_SURFACE)
+ list(APPEND IO2D_SRC display_surface-xcb.cpp)
+endif()
+
+
+add_library(io2d ${IO2D_SRC})
+target_link_libraries(io2d ${CAIRO_LIBRARY})
+target_include_directories(io2d PRIVATE
+ ${CMAKE_CURRENT_SOURCE_DIR}/../include
+ ${CAIRO_INCLUDE_DIR}
+)
+
+if (WIN32)
+ target_compile_definitions(io2d PUBLIC
+ _WIN32_WINNT=0x0600 CAIRO_WIN32_STATIC_BUILD UNICODE)
+endif()
+
+if (CAIRO_HAS_XCB_SURFACE)
+ target_compile_definitions(io2d PUBLIC USE_XCB)
+endif()
diff --git a/N3888_RefImpl/src/brush.cpp b/io2d/src/brush.cpp
similarity index 100%
rename from N3888_RefImpl/src/brush.cpp
rename to io2d/src/brush.cpp
diff --git a/N3888_RefImpl/src/device.cpp b/io2d/src/device.cpp
similarity index 100%
rename from N3888_RefImpl/src/device.cpp
rename to io2d/src/device.cpp
diff --git a/N3888_RefImpl/src/display_surface-common.cpp b/io2d/src/display_surface-common.cpp
similarity index 73%
rename from N3888_RefImpl/src/display_surface-common.cpp
rename to io2d/src/display_surface-common.cpp
index b40ba19..f0d214b 100644
--- a/N3888_RefImpl/src/display_surface-common.cpp
+++ b/io2d/src/display_surface-common.cpp
@@ -1,10 +1,14 @@
#include "io2d.h"
#include "xio2dhelpers.h"
#include "xcairoenumhelpers.h"
+#include
+#include
+#include
using namespace std;
using namespace std::experimental;
using namespace std::experimental::io2d;
+using namespace std::chrono;
void display_surface::_All_dimensions(int w, int h, int dw, int dh) {
dimensions(w, h);
@@ -14,25 +18,19 @@ void display_surface::_All_dimensions(int w, int h, int dw, int dh) {
// Note: cairo_surface_flush(_Native_surface.get()); must be called after calling this function.
void display_surface::_Render_for_scaling_uniform_or_letterbox() {
const cairo_filter_t cairoFilter = CAIRO_FILTER_GOOD;
+
+// static auto previousTime = steady_clock::now();
+
if (_Width == _Display_width && _Height == _Display_height) {
cairo_set_source_surface(_Native_context.get(), _Surface.get(), 0.0, 0.0);
cairo_paint(_Native_context.get());
}
else {
- if (_Scaling == std::experimental::io2d::scaling::letterbox) {
- cairo_pattern_set_extend(_Letterbox_brush.native_handle(), _Extend_to_cairo_extend_t(_Letterbox_brush.extend()));
- cairo_pattern_set_filter(_Letterbox_brush.native_handle(), _Filter_to_cairo_filter_t(_Letterbox_brush.filter()));
- cairo_matrix_t cPttnMatrix;
- cairo_matrix_init(&cPttnMatrix, _Letterbox_brush.matrix().m00(), _Letterbox_brush.matrix().m01(), _Letterbox_brush.matrix().m10(), _Letterbox_brush.matrix().m11(), _Letterbox_brush.matrix().m20(), _Letterbox_brush.matrix().m21());
- cairo_pattern_set_matrix(_Letterbox_brush.native_handle(), &cPttnMatrix);
- cairo_set_source(_Native_context.get(), _Letterbox_brush.native_handle());
- cairo_paint(_Native_context.get());
- }
const auto whRatio = static_cast(_Width) / static_cast(_Height);
const auto displayWHRatio = static_cast(_Display_width) / static_cast(_Display_height);
cairo_matrix_t ctm;
auto nativeContext = _Native_context.get();
- cairo_save(nativeContext);
+ //cairo_save(nativeContext);
double rectX, rectY, rectWidth, rectHeight;
if (whRatio < displayWHRatio) {
cairo_new_path(nativeContext);
@@ -46,6 +44,25 @@ void display_surface::_Render_for_scaling_uniform_or_letterbox() {
const auto heightRatio = static_cast(_Height) / static_cast(_Display_height);
cairo_matrix_init_scale(&ctm, heightRatio, heightRatio);
cairo_matrix_translate(&ctm, -rectX, 0.0);
+ unique_ptr pat(cairo_pattern_create_for_surface(_Surface.get()), &cairo_pattern_destroy);
+ cairo_pattern_set_matrix(pat.get(), &ctm);
+ cairo_pattern_set_extend(pat.get(), CAIRO_EXTEND_NONE);
+ cairo_pattern_set_filter(pat.get(), cairoFilter);
+ cairo_set_source(_Native_context.get(), pat.get());
+ cairo_fill(_Native_context.get());
+ //cairo_restore(nativeContext);
+ if (_Scaling == std::experimental::io2d::scaling::letterbox) {
+ const auto lboxWidth = trunc((static_cast(_Display_width) - rectWidth) / 2.0);
+ cairo_rectangle(nativeContext, 0.0, 0.0, lboxWidth, rectHeight);
+ cairo_rectangle(nativeContext, rectWidth + lboxWidth, 0.0, lboxWidth, rectHeight);
+ cairo_pattern_set_extend(_Letterbox_brush.native_handle(), _Extend_to_cairo_extend_t(_Letterbox_brush.extend()));
+ cairo_pattern_set_filter(_Letterbox_brush.native_handle(), _Filter_to_cairo_filter_t(_Letterbox_brush.filter()));
+ cairo_matrix_t cPttnMatrix;
+ cairo_matrix_init(&cPttnMatrix, _Letterbox_brush.matrix().m00(), _Letterbox_brush.matrix().m01(), _Letterbox_brush.matrix().m10(), _Letterbox_brush.matrix().m11(), _Letterbox_brush.matrix().m20(), _Letterbox_brush.matrix().m21());
+ cairo_pattern_set_matrix(_Letterbox_brush.native_handle(), &cPttnMatrix);
+ cairo_set_source(_Native_context.get(), _Letterbox_brush.native_handle());
+ cairo_fill(_Native_context.get());
+ }
}
else {
cairo_new_path(nativeContext);
@@ -59,21 +76,40 @@ void display_surface::_Render_for_scaling_uniform_or_letterbox() {
const auto widthRatio = static_cast(_Width) / static_cast(_Display_width);
cairo_matrix_init_scale(&ctm, widthRatio, widthRatio);
cairo_matrix_translate(&ctm, 0.0, -rectY);
+ unique_ptr pat(cairo_pattern_create_for_surface(_Surface.get()), &cairo_pattern_destroy);
+ cairo_pattern_set_matrix(pat.get(), &ctm);
+ cairo_pattern_set_extend(pat.get(), CAIRO_EXTEND_NONE);
+ cairo_pattern_set_filter(pat.get(), cairoFilter);
+ cairo_set_source(_Native_context.get(), pat.get());
+ cairo_fill(_Native_context.get());
+ //cairo_restore(nativeContext);
+ if (_Scaling == std::experimental::io2d::scaling::letterbox) {
+ const auto lboxHeight = trunc((static_cast(_Display_height) - rectHeight) / 2.0);
+ cairo_rectangle(nativeContext, 0.0, 0.0, rectWidth, lboxHeight);
+ cairo_rectangle(nativeContext, 0.0, rectHeight + lboxHeight, rectWidth, lboxHeight);
+ cairo_pattern_set_extend(_Letterbox_brush.native_handle(), _Extend_to_cairo_extend_t(_Letterbox_brush.extend()));
+ cairo_pattern_set_filter(_Letterbox_brush.native_handle(), _Filter_to_cairo_filter_t(_Letterbox_brush.filter()));
+ cairo_matrix_t cPttnMatrix;
+ cairo_matrix_init(&cPttnMatrix, _Letterbox_brush.matrix().m00(), _Letterbox_brush.matrix().m01(), _Letterbox_brush.matrix().m10(), _Letterbox_brush.matrix().m11(), _Letterbox_brush.matrix().m20(), _Letterbox_brush.matrix().m21());
+ cairo_pattern_set_matrix(_Letterbox_brush.native_handle(), &cPttnMatrix);
+ cairo_set_source(_Native_context.get(), _Letterbox_brush.native_handle());
+ cairo_fill(_Native_context.get());
+ }
}
- unique_ptr pat(cairo_pattern_create_for_surface(_Surface.get()), &cairo_pattern_destroy);
- cairo_pattern_set_matrix(pat.get(), &ctm);
- cairo_pattern_set_extend(pat.get(), CAIRO_EXTEND_NONE);
- cairo_pattern_set_filter(pat.get(), cairoFilter);
- cairo_set_source(_Native_context.get(), pat.get());
- cairo_fill(_Native_context.get());
- cairo_restore(nativeContext);
}
+
+// auto currentTime = steady_clock::now();
+// auto elapsedTimeIncrement = static_cast(duration_cast(currentTime - previousTime).count());
+// previousTime = currentTime;
+// stringstream timingStr;
+// timingStr << "timing: " << elapsedTimeIncrement / 1'000'000.0 << endl;
+// cerr << timingStr.str().c_str();
}
void display_surface::_Render_to_native_surface() {
const cairo_filter_t cairoFilter = CAIRO_FILTER_GOOD;
cairo_surface_flush(_Surface.get());
- cairo_save(_Native_context.get());
+// cairo_save(_Native_context.get());
cairo_set_operator(_Native_context.get(), CAIRO_OPERATOR_SOURCE);
if (_User_scaling_fn != nullptr) {
bool letterbox = false;
@@ -182,7 +218,7 @@ void display_surface::_Render_to_native_surface() {
}
}
- cairo_restore(_Native_context.get());
+// cairo_restore(_Native_context.get());
// This call to cairo_surface_flush is needed for Win32 surfaces to update.
cairo_surface_flush(_Native_surface.get());
}
@@ -305,6 +341,34 @@ void display_surface::auto_clear(bool val) noexcept {
_Auto_clear = val;
}
+void display_surface::refresh_rate(experimental::io2d::refresh_rate rr) noexcept {
+ if (rr == experimental::io2d::refresh_rate::fixed && _Refresh_rate != rr) {
+ _Elapsed_draw_time = 0.0;
+ }
+ _Refresh_rate = rr;
+}
+
+bool display_surface::desired_frame_rate(double fps) noexcept {
+ if (!isfinite(fps)) {
+ return true;
+ }
+ if (fps < _Minimum_frame_rate) {
+ _Desired_frame_rate = _Minimum_frame_rate;
+ return true;
+ }
+ if (fps > _Maximum_frame_rate) {
+ _Desired_frame_rate = _Maximum_frame_rate;
+ return true;
+ }
+ _Desired_frame_rate = fps;
+
+ return false;
+}
+
+void display_surface::redraw_required() noexcept {
+ _Redraw_requested.store(true, std::memory_order_release);
+}
+
format display_surface::format() const noexcept {
return _Format;
}
@@ -359,3 +423,15 @@ experimental::io2d::brush display_surface::letterbox_brush() const noexcept {
bool display_surface::auto_clear() const noexcept {
return _Auto_clear;
}
+
+experimental::io2d::refresh_rate display_surface::refresh_rate() const noexcept {
+ return _Refresh_rate;
+}
+
+double display_surface::desired_frame_rate() const noexcept {
+ return _Desired_frame_rate;
+}
+
+double display_surface::elapsed_draw_time() const noexcept {
+ return _Elapsed_draw_time / 1'000'000.0;
+}
diff --git a/N3888_RefImpl/src/display_surface-win32.cpp b/io2d/src/display_surface-win32.cpp
similarity index 83%
rename from N3888_RefImpl/src/display_surface-win32.cpp
rename to io2d/src/display_surface-win32.cpp
index 1355ffd..a6bb82e 100644
--- a/N3888_RefImpl/src/display_surface-win32.cpp
+++ b/io2d/src/display_surface-win32.cpp
@@ -2,8 +2,10 @@
#include "xio2dhelpers.h"
#include "xcairoenumhelpers.h"
#include "cairo-win32.h"
+#include
using namespace std;
+using namespace std::chrono;
using namespace std::experimental::io2d;
[[noreturn]]
@@ -213,6 +215,10 @@ display_surface::display_surface(display_surface&& other) noexcept
, _Auto_clear(move(other._Auto_clear))
, _Window_style(move(other._Window_style))
, _Hwnd(move(other._Hwnd))
+ , _Refresh_rate(move(other._Refresh_rate))
+ , _Desired_frame_rate(move(other._Desired_frame_rate))
+ , _Redraw_requested(other._Redraw_requested.load())
+ , _Elapsed_draw_time(move(other._Elapsed_draw_time))
, _Native_surface(move(other._Native_surface))
, _Native_context(move(other._Native_context)) {
other._Draw_fn = nullptr;
@@ -236,6 +242,10 @@ display_surface& display_surface::operator=(display_surface&& other) noexcept {
_Auto_clear = move(other._Auto_clear);
_Window_style = move(other._Window_style);
_Hwnd = move(other._Hwnd);
+ _Refresh_rate = move(other._Refresh_rate);
+ _Desired_frame_rate = move(other._Desired_frame_rate);
+ _Redraw_requested = other._Redraw_requested.load();
+ _Elapsed_draw_time = move(other._Elapsed_draw_time);
_Native_surface = move(other._Native_surface);
_Native_context = move(other._Native_context);
@@ -251,11 +261,11 @@ namespace {
once_flag _Window_class_registered_flag;
}
-display_surface::display_surface(int preferredWidth, int preferredHeight, experimental::io2d::format preferredFormat, experimental::io2d::scaling scl)
- : display_surface(preferredWidth, preferredHeight, preferredFormat, preferredWidth, preferredHeight, scl) {
+display_surface::display_surface(int preferredWidth, int preferredHeight, experimental::io2d::format preferredFormat, experimental::io2d::scaling scl, experimental::io2d::refresh_rate rr, double desiredFramerate)
+ : display_surface(preferredWidth, preferredHeight, preferredFormat, preferredWidth, preferredHeight, scl, rr, desiredFramerate) {
}
-display_surface::display_surface(int preferredWidth, int preferredHeight, experimental::io2d::format preferredFormat, int preferredDisplayWidth, int preferredDisplayHeight, experimental::io2d::scaling scl)
+display_surface::display_surface(int preferredWidth, int preferredHeight, experimental::io2d::format preferredFormat, int preferredDisplayWidth, int preferredDisplayHeight, experimental::io2d::scaling scl, experimental::io2d::refresh_rate rr, double fps)
: surface({ nullptr, nullptr }, preferredFormat, _Cairo_content_t_to_content(_Cairo_content_t_for_cairo_format_t(_Format_to_cairo_format_t(preferredFormat))))
, _Default_brush(cairo_pattern_create_rgba(0.0, 0.0, 0.0, 1.0))
, _Display_width(preferredDisplayWidth)
@@ -270,6 +280,9 @@ display_surface::display_surface(int preferredWidth, int preferredHeight, experi
, _Auto_clear(false)
, _Window_style(WS_OVERLAPPEDWINDOW | WS_VISIBLE)
, _Hwnd(nullptr)
+ , _Refresh_rate(rr)
+ , _Desired_frame_rate(fps)
+ , _Redraw_requested(true)
, _Native_surface(nullptr, &cairo_surface_destroy)
, _Native_context(nullptr, &cairo_destroy) {
call_once(_Window_class_registered_flag, _MyRegisterClass, static_cast(GetModuleHandleW(nullptr)));
@@ -278,6 +291,9 @@ display_surface::display_surface(int preferredWidth, int preferredHeight, experi
if (preferredDisplayWidth <= 0 || preferredDisplayHeight <= 0 || preferredWidth <= 0 || preferredHeight <= 0 || preferredFormat == experimental::io2d::format::invalid) {
throw invalid_argument("Invalid parameter.");
}
+ if (fps <= _Minimum_frame_rate || !isfinite(fps)) {
+ throw system_error(make_error_code(errc::argument_out_of_domain));
+ }
RECT rc;
rc.top = rc.left = 0;
rc.right = preferredDisplayWidth;
@@ -347,6 +363,7 @@ display_surface::display_surface(int preferredWidth, int preferredHeight, experi
// We render to the fixed size surface.
_Surface = unique_ptr(cairo_image_surface_create(_Format_to_cairo_format_t(_Format), _Width, _Height), &cairo_surface_destroy);
_Context = unique_ptr(cairo_create(_Surface.get()), &cairo_destroy);
+ _Ensure_state();
}
display_surface::~display_surface() {
@@ -362,30 +379,65 @@ int display_surface::show() {
if (_Draw_fn == nullptr) {
throw system_error(make_error_code(errc::operation_would_block));
}
+ auto previousTime = steady_clock::now();
+ _Elapsed_draw_time = 0.0;
while (msg.message != WM_QUIT) {
+ auto currentTime = steady_clock::now();
+ auto elapsedTimeIncrement = static_cast(duration_cast(currentTime - previousTime).count());
+ _Elapsed_draw_time += elapsedTimeIncrement;
+ previousTime = currentTime;
+
if (!PeekMessageW(&msg, NULL, 0, 0, PM_REMOVE)) {
if (_Native_surface.get() != nullptr) {
RECT clientRect;
GetClientRect(_Hwnd, &clientRect);
if (clientRect.right - clientRect.left != _Display_width || clientRect.bottom - clientRect.top != _Display_height) {
// If there is a size mismatch we skip painting and resize the window instead.
+ auto dw = _Display_width;
+ auto dh = _Display_height;
_Resize_window();
_Make_native_surface_and_context();
+ if (dw != _Display_width || dh != _Display_height) {
+ if (_Size_change_fn != nullptr) {
+ _Size_change_fn(*this);
+ }
+ }
continue;
}
else {
- // Run user draw function:
- if (_Draw_fn != nullptr) {
- if (_Auto_clear) {
- clear();
- }
- _Draw_fn(*this);
+ bool redraw = true;
+ if (_Refresh_rate == experimental::io2d::refresh_rate::as_needed) {
+ redraw = _Redraw_requested.exchange(false, std::memory_order_acquire);
}
- else {
- throw system_error(make_error_code(errc::operation_would_block));
+
+ const auto desiredElapsed = 1'000'000'000.0 / _Desired_frame_rate;
+
+ if (_Refresh_rate == experimental::io2d::refresh_rate::fixed) {
+ // desiredElapsed is the amount of time, in nanoseconds, that must have passed before we should redraw.
+ redraw = _Elapsed_draw_time >= desiredElapsed;
+ }
+ if (redraw) {
+ // Run user draw function:
+ if (_Draw_fn != nullptr) {
+ if (_Auto_clear) {
+ clear();
+ }
+ _Draw_fn(*this);
+ }
+ else {
+ throw system_error(make_error_code(errc::operation_would_block));
+ }
+ _Render_to_native_surface();
+ if (_Refresh_rate == experimental::io2d::refresh_rate::fixed) {
+ while (_Elapsed_draw_time >= desiredElapsed) {
+ _Elapsed_draw_time -= desiredElapsed;
+ }
+ }
+ else {
+ _Elapsed_draw_time = 0.0;
+ }
}
- _Render_to_native_surface();
}
}
}
@@ -393,10 +445,20 @@ int display_surface::show() {
if (msg.message != WM_QUIT) {
TranslateMessage(&msg);
DispatchMessage(&msg);
+
+ if (msg.message == WM_PAINT) {
+ _Elapsed_draw_time = 0.0;
+ //if (_Refresh_rate == experimental::io2d::refresh_rate::fixed) {
+ // _Elapsed_draw_time -= elapsedTimeIncrement;
+ //}
+ //else {
+ // _Elapsed_draw_time = 0.0;
+ //}
+ }
}
}
}
-
+ _Elapsed_draw_time = 0.0;
// I know that the C-style cast works and have not had a chance to come up with a safer C++-style cast that I can be sure also works so I'm disabling the warning.
#ifdef _WIN32
#ifdef __clang__
@@ -415,4 +477,4 @@ int display_surface::show() {
void display_surface::exit_show(int ms) noexcept {
PostQuitMessage(0);
-}
\ No newline at end of file
+}
diff --git a/io2d/src/display_surface-xcb.cpp b/io2d/src/display_surface-xcb.cpp
new file mode 100644
index 0000000..6294966
--- /dev/null
+++ b/io2d/src/display_surface-xcb.cpp
@@ -0,0 +1,519 @@
+#include "io2d.h"
+#include "xio2dhelpers.h"
+#include "xcairoenumhelpers.h"
+#include
+// #include
+// #include
+// #include
+#include
+
+using namespace std;
+using namespace std::chrono;
+using namespace std::experimental::io2d;
+
+display_surface::native_handle_type display_surface::native_handle() const {
+ return{ { _Surface.get(), _Context.get() }, { _Native_surface.get(), _Native_context.get() }, _Connection.get(), _Connection_mutex, _Connection_ref_count, _Screen, _Wndw };
+}
+
+display_surface::display_surface(display_surface&& other) noexcept
+ : surface(move(other))
+ , _Default_brush(move(other._Default_brush))
+ , _Display_width(move(other._Display_width))
+ , _Display_height(move(other._Display_height))
+ , _Scaling(move(other._Scaling))
+ , _Width(move(other._Width))
+ , _Height(move(other._Height))
+ , _Draw_fn(move(other._Draw_fn))
+ , _Size_change_fn(move(other._Size_change_fn))
+ , _User_scaling_fn(move(other._User_scaling_fn))
+ , _Letterbox_brush(move(other._Letterbox_brush))
+ , _Auto_clear(move(other._Auto_clear))
+ , _Screen(move(other._Screen))
+ , _Wndw(move(other._Wndw))
+ , _Can_draw(move(other._Can_draw))
+ , _Refresh_rate(move(other._Refresh_rate))
+ , _Desired_frame_rate(move(other._Desired_frame_rate))
+ , _Redraw_requested(other._Redraw_requested.load())
+ , _Elapsed_draw_time(move(other._Elapsed_draw_time))
+ , _Native_surface(move(other._Native_surface))
+ , _Native_context(move(other._Native_context)) {
+ other._Draw_fn = nullptr;
+ other._Size_change_fn = nullptr;
+ other._Screen = nullptr;
+ other._Wndw = 0;
+}
+
+display_surface& display_surface::operator=(display_surface&& other) noexcept {
+ if (this != &other) {
+ surface::operator=(move(other));
+ _Default_brush = move(other._Default_brush);
+ _Display_width = move(other._Display_width);
+ _Display_height = move(other._Display_height);
+ _Scaling = move(other._Scaling);
+ _Width = move(other._Width);
+ _Height = move(other._Height);
+ _Draw_fn = move(other._Draw_fn);
+ _Size_change_fn = move(other._Size_change_fn);
+ _User_scaling_fn = move(other._User_scaling_fn);
+ _Letterbox_brush = move(other._Letterbox_brush);
+ _Auto_clear = move(other._Auto_clear);
+ _Screen = move(other._Screen);
+ _Wndw = move(other._Wndw);
+ _Can_draw = move(other._Can_draw);
+ _Refresh_rate = move(other._Refresh_rate);
+ _Desired_frame_rate = move(other._Desired_frame_rate);
+ _Redraw_requested = other._Redraw_requested.load();
+ _Elapsed_draw_time = move(other._Elapsed_draw_time);
+ _Native_surface = move(other._Native_surface);
+ _Native_context = move(other._Native_context);
+
+ other._Screen = nullptr;
+ other._Wndw = 0;
+ other._Draw_fn = nullptr;
+ other._Size_change_fn = nullptr;
+ other._Can_draw = false;
+ }
+
+ return *this;
+}
+
+mutex display_surface::_Connection_mutex;
+unique_ptr display_surface::_Connection{ nullptr, &xcb_disconnect };
+int display_surface::_Connection_ref_count = 0;
+
+namespace {
+ xcb_atom_t _Wm_protocols;
+ xcb_atom_t _Wm_delete_window;
+}
+
+void display_surface::_Make_native_surface_and_context() {
+ auto depthIter = xcb_screen_allowed_depths_iterator(_Screen);
+ xcb_visualtype_t* visual = nullptr;
+ for (; depthIter.rem != 0; xcb_depth_next(&depthIter)) {
+ auto visualIter = xcb_depth_visuals_iterator(depthIter.data);
+ for (; visualIter.rem != 0; xcb_visualtype_next(&visualIter)) {
+ if (_Screen->root_visual == visualIter.data->visual_id) {
+ visual = visualIter.data;
+ break;
+ }
+ }
+ }
+
+ if (visual == nullptr) {
+ _Throw_if_failed_cairo_status_t(CAIRO_STATUS_NULL_POINTER);
+ }
+
+ _Native_surface = unique_ptr(cairo_xcb_surface_create(_Connection.get(), _Wndw, visual, _Display_width, _Display_height), &cairo_surface_destroy);
+ _Native_context = unique_ptr(cairo_create(_Native_surface.get()), &cairo_destroy);
+ _Throw_if_failed_cairo_status_t(cairo_surface_status(_Native_surface.get()));
+ _Throw_if_failed_cairo_status_t(cairo_status(_Native_context.get()));
+}
+
+void display_surface::_Resize_window() {
+ auto geometryCookie = xcb_get_geometry(_Connection.get(), _Wndw);
+ unique_ptr geometryReply(xcb_get_geometry_reply(_Connection.get(), geometryCookie, nullptr), &::free);
+ if (geometryReply == nullptr) {
+ _Throw_if_failed_cairo_status_t(CAIRO_STATUS_INVALID_STATUS);
+ }
+
+ const uint32_t values[] = { static_cast(_Display_width), static_cast(_Display_height) };
+ xcb_configure_window(_Connection.get(), _Wndw, XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT, values);
+ xcb_flush(_Connection.get());
+}
+
+display_surface::display_surface(int preferredWidth, int preferredHeight, experimental::io2d::format preferredFormat, experimental::io2d::scaling scl, experimental::io2d::refresh_rate rr, double fps)
+ : display_surface(preferredWidth, preferredHeight, preferredFormat, preferredWidth, preferredHeight, scl, rr, fps) {
+}
+
+display_surface::display_surface(int preferredWidth, int preferredHeight, experimental::io2d::format preferredFormat, int preferredDisplayWidth, int preferredDisplayHeight, experimental::io2d::scaling scl, experimental::io2d::refresh_rate rr, double fps)
+ : surface({ nullptr, nullptr }, preferredFormat, _Cairo_content_t_to_content(_Cairo_content_t_for_cairo_format_t(_Format_to_cairo_format_t(preferredFormat))))
+ , _Default_brush(cairo_pattern_create_rgba(0.0, 0.0, 0.0, 1.0))
+ , _Display_width(preferredDisplayWidth)
+ , _Display_height(preferredDisplayHeight)
+ , _Scaling(scl)
+ , _Width(preferredWidth)
+ , _Height(preferredHeight)
+ , _Draw_fn()
+ , _Size_change_fn()
+ , _User_scaling_fn()
+ , _Letterbox_brush(cairo_pattern_create_rgba(0.0, 0.0, 0.0, 1.0))
+ , _Auto_clear(false)
+ , _Screen(nullptr)
+ , _Wndw()
+ , _Can_draw(false)
+ , _Refresh_rate(rr)
+ , _Desired_frame_rate(fps)
+ , _Redraw_requested(true)
+ , _Native_surface(nullptr, &cairo_surface_destroy)
+ , _Native_context(nullptr, &cairo_destroy) {
+ if (preferredDisplayWidth <= 0 || preferredDisplayHeight <= 0 || preferredWidth <= 0 || preferredHeight <= 0 || preferredFormat == experimental::io2d::format::invalid) {
+ throw invalid_argument("Invalid parameter.");
+ }
+ if (fps <= _Minimum_frame_rate || !isfinite(fps)) {
+ throw system_error(make_error_code(errc::argument_out_of_domain));
+ }
+ xcb_connection_t* connection = nullptr;
+ // Lock to increment the ref count.
+ {
+ lock_guard lg(_Connection_mutex);
+ _Connection_ref_count++;
+ }
+ int screenNumber = 0;
+ if (_Connection == nullptr) {
+ lock_guard lg(_Connection_mutex);
+ if (_Connection == nullptr) {
+ connection = xcb_connect(nullptr, &screenNumber);
+ if (connection == nullptr) {
+ _Connection_ref_count--;
+ throw system_error(make_error_code(errc::connection_refused));
+ }
+ _Connection = unique_ptr(connection, &::xcb_disconnect);
+ }
+ }
+ auto setup = xcb_get_setup(connection);
+ _Screen = nullptr;
+ auto screenIter = xcb_setup_roots_iterator(setup);
+ for (; screenIter.rem != 0; --screenNumber, xcb_screen_next(&screenIter)) {
+ if (screenNumber == 0) {
+ _Screen = screenIter.data;
+ break;
+ }
+ }
+ if (_Screen == nullptr) {
+ lock_guard lg(_Connection_mutex);
+ _Connection_ref_count--;
+ throw system_error(make_error_code(errc::connection_aborted));
+ }
+
+ _Wndw = xcb_generate_id(connection);
+ uint32_t mask = XCB_CW_BACK_PIXEL | XCB_CW_EVENT_MASK;
+ uint32_t values[2];
+ values[0] = _Screen->black_pixel;
+ values[1] = XCB_EVENT_MASK_EXPOSURE | XCB_EVENT_MASK_STRUCTURE_NOTIFY | XCB_EVENT_MASK_PROPERTY_CHANGE;
+ uint16_t x = 0;
+ uint16_t y = 0;
+ auto windowCookie = xcb_create_window_checked(connection, _Screen->root_depth, _Wndw, _Screen->root, x, y, static_cast(preferredDisplayWidth), static_cast(preferredDisplayHeight), _Window_border_width, XCB_WINDOW_CLASS_INPUT_OUTPUT, _Screen->root_visual, mask, values);
+
+ xcb_generic_error_t* error = xcb_request_check(connection, windowCookie);
+ if (error != nullptr) {
+ lock_guard lg(_Connection_mutex);
+ _Connection_ref_count--;
+ throw system_error(make_error_code(errc::connection_aborted));
+ }
+
+ auto mapCookie = xcb_map_window_checked(connection, _Wndw);
+ xcb_generic_error_t* mapError = xcb_request_check(connection, mapCookie);
+ if (mapError != nullptr) {
+ lock_guard lg(_Connection_mutex);
+ _Connection_ref_count--;
+ throw system_error(make_error_code(errc::connection_aborted));
+ }
+
+ string wmProtocols = "WM_PROTOCOLS";
+ auto wmProtocolsCookie = xcb_intern_atom(connection, 0, wmProtocols.size(), wmProtocols.c_str());
+ unique_ptr wmProtocolsReply(xcb_intern_atom_reply(connection, wmProtocolsCookie, nullptr), &::free);
+ if (wmProtocolsReply == nullptr) {
+ lock_guard lg(_Connection_mutex);
+ _Connection_ref_count--;
+ throw system_error(make_error_code(errc::connection_aborted));
+ }
+ _Wm_protocols = wmProtocolsReply->atom;
+ string wmDelWin = "WM_DELETE_WINDOW";
+ auto wmDelWinCookie = xcb_intern_atom(connection, 0, wmDelWin.size(), wmDelWin.c_str());
+ unique_ptr wmDelWinReply(xcb_intern_atom_reply(connection, wmDelWinCookie, nullptr), &::free);
+ if (wmDelWinReply == nullptr) {
+ lock_guard lg(_Connection_mutex);
+ _Connection_ref_count--;
+ throw system_error(make_error_code(errc::connection_aborted));
+ }
+ _Wm_delete_window = (wmDelWinReply.get())->atom;
+ const uint8_t wmProtocolsDataFormat = 32;
+ const uint32_t wmProtocolsNumDataElements = 1;
+ xcb_change_property(connection, XCB_PROP_MODE_REPLACE, _Wndw, _Wm_protocols, XCB_ATOM_ATOM, wmProtocolsDataFormat, wmProtocolsNumDataElements, static_cast(&_Wm_delete_window));
+// stringstream wmAtomsStr;
+// wmAtomsStr << "WM_PROTOCOLS: '" << to_string(_Wm_protocols) << "'" << endl << "WM_DELETE_WINDOW: '" << to_string(_Wm_delete_window) << "'" << endl;
+// cerr << wmAtomsStr.str().c_str();
+ xcb_flush(connection);
+
+ _Surface = unique_ptr(cairo_image_surface_create(_Format_to_cairo_format_t(_Format), _Width, _Height), &cairo_surface_destroy);
+ _Context = unique_ptr(cairo_create(_Surface.get()), &cairo_destroy);
+ _Ensure_state();
+}
+
+display_surface::~display_surface() {
+ _Native_context.reset();
+ _Native_surface.reset();
+ if (_Wndw != 0) {
+ xcb_destroy_window(_Connection.get(), _Wndw);
+ _Wndw = 0;
+ }
+ lock_guard lg(_Connection_mutex);
+ _Connection_ref_count--;
+ assert(_Connection_ref_count >= 0);
+ if (_Connection_ref_count <= 0) {
+ _Connection_ref_count = 0;
+ _Connection = nullptr;
+ }
+}
+
+namespace {
+ bool _Poll_for_xcb_event(unique_ptr& event, xcb_connection_t* c) {
+ event.reset(xcb_poll_for_event(c));
+// if (event != nullptr) {
+// stringstream errorString;
+// errorString << "response_type: '" << to_string(event->response_type) << "'" << endl;
+// cerr << errorString.str().c_str();
+// }
+ return event != nullptr;
+ }
+}
+
+int display_surface::show() {
+ bool exit = false;
+ unique_ptr event{ nullptr, &::free };
+
+ auto previousTime = steady_clock::now();
+ _Elapsed_draw_time = 0.0;
+ while (!exit) {
+ auto currentTime = steady_clock::now();
+ auto elapsedTimeIncrement = static_cast(duration_cast(currentTime - previousTime).count());
+ _Elapsed_draw_time += elapsedTimeIncrement;
+ previousTime = currentTime;
+ while (_Poll_for_xcb_event(event, _Connection.get())) {
+// const uint8_t userGeneratedEventMask = ~0x80;
+ switch (event->response_type & ~0x80) {
+ case 0:
+ {
+ xcb_generic_error_t* err = reinterpret_cast(event.get());
+ _Throw_if_failed_cairo_status_t(CAIRO_STATUS_INVALID_STATUS);
+// stringstream errorString;
+// errorString << "Error event->response_type. Value of error_code is '" << to_string(err->error_code) << "'." << endl;
+// cerr << errorString.str().c_str();
+ } break;
+ // ExposureMask events:
+ case XCB_EXPOSE:
+ {
+ if (!_Can_draw && _Wndw != 0) {
+ _Make_native_surface_and_context();
+ }
+ assert(_Native_surface != nullptr && _Native_context != nullptr);
+ _Can_draw = true;
+ if (_Draw_fn != nullptr) {
+ if (_Auto_clear) {
+ clear();
+ }
+ _Draw_fn(*this);
+ }
+ else {
+ throw system_error(make_error_code(errc::operation_would_block));
+ }
+ _Render_to_native_surface();
+
+ _Elapsed_draw_time = 0.0;
+ //if (_Refresh_rate == experimental::io2d::refresh_rate::fixed) {
+ // _Elapsed_draw_time -= elapsedTimeIncrement;
+ //}
+ //else {
+ // _Elapsed_draw_time = 0.0;
+ //}
+ } break;
+ // StructureNotifyMask events:
+ case XCB_CIRCULATE_NOTIFY:
+ {
+ } break;
+ case XCB_CONFIGURE_NOTIFY:
+ {
+ bool resized = false;
+ xcb_configure_notify_event_t* ev = reinterpret_cast(event.get());
+ if (ev->width != _Display_width) {
+ _Display_width = ev->width;
+ resized = true;
+ }
+ if (ev->height != _Display_height) {
+ _Display_height = ev->height;
+ resized = true;
+ }
+ if (resized) {
+ cairo_xcb_surface_set_size(_Native_surface.get(), _Display_width, _Display_height);
+ if (_Size_change_fn != nullptr) {
+ _Size_change_fn(*this);
+ }
+ }
+ } break;
+ case XCB_DESTROY_NOTIFY:
+ {
+// stringstream errorString;
+// errorString << "XCB_DESTROY_NOTIFY" << endl;
+// cerr << errorString.str().c_str();
+ _Wndw = 0;
+ _Can_draw = false;
+ _Native_context.reset();
+ _Native_surface.reset();
+ exit = true;
+ } break;
+ case XCB_GRAVITY_NOTIFY:
+ {
+ } break;
+ case XCB_MAP_NOTIFY:
+ {
+ } break;
+ case XCB_REPARENT_NOTIFY:
+ {
+ } break;
+ case XCB_UNMAP_NOTIFY:
+ {
+// stringstream errorString;
+// errorString << "XCB_UNMAP_NOTIFY" << endl;
+// cerr << errorString.str().c_str();
+ // The window still exists, it has just been unmapped.
+ _Can_draw = false;
+ _Native_context.reset();
+ _Native_surface.reset();
+ } break;
+ // Might get them even though they are unrequested events (see http://www.x.org/releases/X11R7.7/doc/libX11/libX11/libX11.html#Event_Masks ):
+ case XCB_GRAPHICS_EXPOSURE:
+ {
+ if (_Can_draw) {
+ if (_Draw_fn != nullptr) {
+ if (_Auto_clear) {
+ clear();
+ }
+ _Draw_fn(*this);
+ }
+ else {
+ throw system_error(make_error_code(errc::operation_would_block));
+ }
+ _Render_to_native_surface();
+
+ _Elapsed_draw_time = 0.0;
+ //if (_Refresh_rate == experimental::io2d::refresh_rate::fixed) {
+ // _Elapsed_draw_time -= elapsedTimeIncrement;
+ //}
+ //else {
+ // _Elapsed_draw_time = 0.0;
+ //}
+ }
+ } break;
+ case XCB_NO_EXPOSURE:
+ {
+ } break;
+ case XCB_PROPERTY_NOTIFY:
+ {
+// xcb_property_notify_event_t* ev = reinterpret_cast(event.get());
+// stringstream propStr;
+// propStr << "Property notify for atom: '" << to_string(ev->atom) << "' with state '" << to_string(ev->state) << "'." << endl;
+// cerr << propStr.str().c_str();
+ } break;
+ // Unmasked events
+ case XCB_CLIENT_MESSAGE:
+ {
+ xcb_client_message_event_t* ev = reinterpret_cast(event.get());
+ if (ev->format == 32 && static_cast(ev->data.data32[0]) == _Wm_delete_window) {
+// stringstream errorString;
+// errorString << "XCB_CLIENT_MESSAGE" << endl;
+// cerr << errorString.str().c_str();
+ _Can_draw = false;
+ _Native_context.reset();
+ _Native_surface.reset();
+ xcb_destroy_window(_Connection.get(), _Wndw);
+ xcb_flush(_Connection.get());
+ _Wndw = 0;
+ exit = true;
+ }
+ else {
+// stringstream clientMsgStr;
+// clientMsgStr << "ClientMessage event type '" << to_string(ev->type) << "' for unknown event type";
+// // auto atomName = XGetAtomName(_Display.get(), event.xclient.message_type);
+// // if (atomName != nullptr) {
+// // try {
+// // clientMsgStr << " (" << atomName << ")";
+// // }
+// // catch (...) {
+// // XFree(atomName);
+// // }
+// // XFree(atomName);
+// // }
+// clientMsgStr << ". Format is '" << to_string(ev->format) << "' and first value is '";
+// switch (ev->format) {
+// case 8:
+// {
+// clientMsgStr << to_string(static_cast(ev->data.data8[0])).c_str();
+// } break;
+// case 16:
+// {
+// clientMsgStr << to_string(ev->data.data16[0]).c_str();
+// } break;
+// case 32:
+// {
+// clientMsgStr << to_string(ev->data.data32[0]).c_str();
+// } break;
+// default:
+// {
+// assert("Unexpected format." && false);
+// clientMsgStr << "(unexpected format)";
+// } break;
+// }
+// clientMsgStr << "'.";
+// auto es = clientMsgStr.str().c_str();
+// cerr << es << endl;
+ }
+ } break;
+ case XCB_MAPPING_NOTIFY:
+ {
+ } break;
+ case XCB_SELECTION_CLEAR:
+ {
+ } break;
+ case XCB_SELECTION_NOTIFY:
+ {
+ } break;
+ case XCB_SELECTION_REQUEST:
+ {
+ } break;
+ default:
+ {
+// stringstream errorString;
+// errorString << "Unexpected event->response_type. Value is '" << to_string(event->response_type) << "'." << endl;
+// cerr << errorString.str().c_str();
+// // assert(event->response_type >= 64 && event->response_type <= 127);
+ } break;
+ }
+ }
+ if (_Can_draw) {
+ bool redraw = true;
+ if (_Refresh_rate == experimental::io2d::refresh_rate::as_needed) {
+ redraw = _Redraw_requested.exchange(false, std::memory_order_acquire);
+ }
+
+ auto desiredElapsed = 1'000'000'000.0 / _Desired_frame_rate;
+
+ if (_Refresh_rate == experimental::io2d::refresh_rate::fixed) {
+ // desiredElapsed is the amount of time, in nanoseconds, that must have passed before we should redraw.
+ redraw = _Elapsed_draw_time >= desiredElapsed;
+ }
+ if (redraw) {
+ // Run user draw function:
+ if (_Draw_fn != nullptr) {
+ if (_Auto_clear) {
+ clear();
+ }
+ _Draw_fn(*this);
+ }
+ else {
+ throw system_error(make_error_code(errc::operation_would_block));
+ }
+ _Render_to_native_surface();
+ if (_Refresh_rate == experimental::io2d::refresh_rate::fixed) {
+ while (_Elapsed_draw_time >= desiredElapsed) {
+ _Elapsed_draw_time -= desiredElapsed;
+ }
+ }
+ else {
+ _Elapsed_draw_time = 0.0;
+ }
+ }
+ }
+ }
+ _Elapsed_draw_time = 0.0;
+ return 0;
+}
diff --git a/N3888_RefImpl/src/display_surface-xlib.cpp b/io2d/src/display_surface-xlib.cpp
similarity index 82%
rename from N3888_RefImpl/src/display_surface-xlib.cpp
rename to io2d/src/display_surface-xlib.cpp
index 0e6ccea..38062c0 100644
--- a/N3888_RefImpl/src/display_surface-xlib.cpp
+++ b/io2d/src/display_surface-xlib.cpp
@@ -5,11 +5,13 @@
#include
#include
#include
+#include
// Only uncomment this if you need to do debugging. This will cause XSynchronize to be called for the _Display connection.
//#define USE_X_SYNC_FOR_DEBUGGING
using namespace std;
+using namespace std::chrono;
using namespace std::experimental::io2d;
Bool display_surface::_X11_if_event_pred(::Display* display, ::XEvent* event, XPointer arg) {
@@ -20,8 +22,8 @@ Bool display_surface::_X11_if_event_pred(::Display* display, ::XEvent* event, XP
return False;
}
// Need to check for ExposureMask events, StructureNotifyMask events, and unmaskable events.
- switch(event->type) {
- // ExposureMask events:
+ switch (event->type) {
+ // ExposureMask events:
case Expose:
{
if (event->xexpose.window == sfc->_Wndw) {
@@ -124,6 +126,7 @@ Bool display_surface::_X11_if_event_pred(::Display* display, ::XEvent* event, XP
// Return True so we can inspect it in the event loop for diagnostic purposes.
return True;
}
+ return false;
}
}
return False;
@@ -148,6 +151,10 @@ display_surface::display_surface(display_surface&& other) noexcept
, _Auto_clear(move(other._Auto_clear))
, _Wndw(move(other._Wndw))
, _Can_draw(move(other._Can_draw))
+ , _Refresh_rate(move(other._Refresh_rate))
+ , _Desired_frame_rate(move(other._Desired_frame_rate))
+ , _Redraw_requested(other._Redraw_requested.load())
+ , _Elapsed_draw_time(move(other._Elapsed_draw_time))
, _Native_surface(move(other._Native_surface))
, _Native_context(move(other._Native_context)) {
other._Draw_fn = nullptr;
@@ -171,6 +178,10 @@ display_surface& display_surface::operator=(display_surface&& other) noexcept {
_Auto_clear = move(other._Auto_clear);
_Wndw = move(other._Wndw);
_Can_draw = move(other._Can_draw);
+ _Refresh_rate = move(other._Refresh_rate);
+ _Desired_frame_rate = move(other._Desired_frame_rate);
+ _Redraw_requested = other._Redraw_requested.load();
+ _Elapsed_draw_time = move(other._Elapsed_draw_time);
_Native_surface = move(other._Native_surface);
_Native_context = move(other._Native_context);
@@ -212,18 +223,18 @@ void display_surface::_Resize_window() {
_Throw_if_failed_cairo_status_t(CAIRO_STATUS_INVALID_STATUS);
}
if (width != static_cast(_Display_width) || height != static_cast(_Display_height)) {
- XWindowChanges xwc{ };
+ XWindowChanges xwc{};
xwc.width = _Display_width;
xwc.height = _Display_height;
XConfigureWindow(_Display.get(), _Wndw, CWWidth | CWHeight, &xwc);
}
}
-display_surface::display_surface(int preferredWidth, int preferredHeight, experimental::io2d::format preferredFormat, experimental::io2d::scaling scl)
- : display_surface(preferredWidth, preferredHeight, preferredFormat, preferredWidth, preferredHeight, scl) {
+display_surface::display_surface(int preferredWidth, int preferredHeight, experimental::io2d::format preferredFormat, experimental::io2d::scaling scl, experimental::io2d::refresh_rate rr, double fps)
+ : display_surface(preferredWidth, preferredHeight, preferredFormat, preferredWidth, preferredHeight, scl, rr, fps) {
}
-display_surface::display_surface(int preferredWidth, int preferredHeight, experimental::io2d::format preferredFormat, int preferredDisplayWidth, int preferredDisplayHeight, experimental::io2d::scaling scl)
+display_surface::display_surface(int preferredWidth, int preferredHeight, experimental::io2d::format preferredFormat, int preferredDisplayWidth, int preferredDisplayHeight, experimental::io2d::scaling scl, experimental::io2d::refresh_rate rr, double fps)
: surface({ nullptr, nullptr }, preferredFormat, _Cairo_content_t_to_content(_Cairo_content_t_for_cairo_format_t(_Format_to_cairo_format_t(preferredFormat))))
, _Default_brush(cairo_pattern_create_rgba(0.0, 0.0, 0.0, 1.0))
, _Display_width(preferredDisplayWidth)
@@ -238,11 +249,17 @@ display_surface::display_surface(int preferredWidth, int preferredHeight, experi
, _Auto_clear(false)
, _Wndw(None)
, _Can_draw(false)
+ , _Refresh_rate(rr)
+ , _Desired_frame_rate(fps)
+ , _Redraw_requested(true)
, _Native_surface(nullptr, &cairo_surface_destroy)
, _Native_context(nullptr, &cairo_destroy) {
if (preferredDisplayWidth <= 0 || preferredDisplayHeight <= 0 || preferredWidth <= 0 || preferredHeight <= 0 || preferredFormat == experimental::io2d::format::invalid) {
throw invalid_argument("Invalid parameter.");
}
+ if (fps <= _Minimum_frame_rate || !isfinite(fps)) {
+ throw system_error(make_error_code(errc::argument_out_of_domain));
+ }
Display* display = nullptr;
// Lock to increment the ref count.
{
@@ -259,10 +276,10 @@ display_surface::display_surface(int preferredWidth, int preferredHeight, experi
}
_Display = unique_ptr(display, &XCloseDisplay);
_Wm_delete_window = XInternAtom(display, "WM_DELETE_WINDOW", False);
- #ifdef USE_X_SYNC_FOR_DEBUGGING
+#ifdef USE_X_SYNC_FOR_DEBUGGING
// DEBUGGING ONLY!!!!!!
XSynchronize(display, True);
- #endif
+#endif
}
}
display = _Display.get();
@@ -276,6 +293,7 @@ display_surface::display_surface(int preferredWidth, int preferredHeight, experi
XMapWindow(display, _Wndw);
_Surface = unique_ptr(cairo_image_surface_create(_Format_to_cairo_format_t(_Format), _Width, _Height), &cairo_surface_destroy);
_Context = unique_ptr(cairo_create(_Surface.get()), &cairo_destroy);
+ _Ensure_state();
}
display_surface::~display_surface() {
@@ -298,10 +316,16 @@ int display_surface::show() {
bool exit = false;
XEvent event;
+ auto previousTime = steady_clock::now();
+ _Elapsed_draw_time = 0.0;
while (!exit) {
+ auto currentTime = steady_clock::now();
+ auto elapsedTimeIncrement = static_cast(duration_cast(currentTime - previousTime).count());
+ _Elapsed_draw_time += elapsedTimeIncrement;
+ previousTime = currentTime;
while (XCheckIfEvent(_Display.get(), &event, &display_surface::_X11_if_event_pred, reinterpret_cast(this))) {
- switch(event.type) {
- // ExposureMask events:
+ switch (event.type) {
+ // ExposureMask events:
case Expose:
{
if (!_Can_draw && _Wndw != None) {
@@ -319,6 +343,14 @@ int display_surface::show() {
throw system_error(make_error_code(errc::operation_would_block));
}
_Render_to_native_surface();
+
+ _Elapsed_draw_time = 0.0;
+ //if (_Refresh_rate == experimental::io2d::refresh_rate::fixed) {
+ // _Elapsed_draw_time -= elapsedTimeIncrement;
+ //}
+ //else {
+ // _Elapsed_draw_time = 0.0;
+ //}
} break;
// StructureNotifyMask events:
case CirculateNotify:
@@ -337,6 +369,9 @@ int display_surface::show() {
}
if (resized) {
cairo_xlib_surface_set_size(_Native_surface.get(), _Display_width, _Display_height);
+ if (_Size_change_fn != nullptr) {
+ _Size_change_fn(*this);
+ }
}
} break;
case DestroyNotify:
@@ -377,6 +412,14 @@ int display_surface::show() {
throw system_error(make_error_code(errc::operation_would_block));
}
_Render_to_native_surface();
+
+ _Elapsed_draw_time = 0.0;
+ //if (_Refresh_rate == experimental::io2d::refresh_rate::fixed) {
+ // _Elapsed_draw_time -= elapsedTimeIncrement;
+ //}
+ //else {
+ // _Elapsed_draw_time = 0.0;
+ //}
}
} break;
case NoExpose:
@@ -401,13 +444,13 @@ int display_surface::show() {
try {
clientMsgStr << " (" << atomName << ")";
}
- catch(...) {
+ catch (...) {
XFree(atomName);
}
XFree(atomName);
}
clientMsgStr << ". Format is '" << event.xclient.format << "' and first value is '";
- switch(event.xclient.format) {
+ switch (event.xclient.format) {
case 8:
{
clientMsgStr << to_string(static_cast(event.xclient.data.b[0])).c_str();
@@ -449,22 +492,44 @@ int display_surface::show() {
errorString << "Unexpected event.type. Value is '" << event.type << "'.";
cerr << errorString.str().c_str();
assert(event.type >= 64 && event.type <= 127);
- }
+ } break;
}
}
if (_Can_draw) {
- // Run user draw function:
- if (_Draw_fn != nullptr) {
- if (_Auto_clear) {
- clear();
- }
- _Draw_fn(*this);
+ bool redraw = true;
+ if (_Refresh_rate == experimental::io2d::refresh_rate::as_needed) {
+ redraw = _Redraw_requested.exchange(false, std::memory_order_acquire);
+ }
+
+ auto desiredElapsed = 1'000'000'000.0 / _Desired_frame_rate;
+
+ if (_Refresh_rate == experimental::io2d::refresh_rate::fixed) {
+ // desiredElapsed is the amount of time, in nanoseconds, that must have passed before we should redraw.
+ redraw = _Elapsed_draw_time >= desiredElapsed;
}
- else {
- throw system_error(make_error_code(errc::operation_would_block));
+ if (redraw) {
+ // Run user draw function:
+ if (_Draw_fn != nullptr) {
+ if (_Auto_clear) {
+ clear();
+ }
+ _Draw_fn(*this);
+ }
+ else {
+ throw system_error(make_error_code(errc::operation_would_block));
+ }
+ _Render_to_native_surface();
+ if (_Refresh_rate == experimental::io2d::refresh_rate::fixed) {
+ while (_Elapsed_draw_time >= desiredElapsed) {
+ _Elapsed_draw_time -= desiredElapsed;
+ }
+ }
+ else {
+ _Elapsed_draw_time = 0.0;
+ }
}
- _Render_to_native_surface();
}
}
+ _Elapsed_draw_time = 0.0;
return 0;
}
diff --git a/N3888_RefImpl/src/font_extents.cpp b/io2d/src/font_extents.cpp
similarity index 100%
rename from N3888_RefImpl/src/font_extents.cpp
rename to io2d/src/font_extents.cpp
diff --git a/N3888_RefImpl/src/font_options.cpp b/io2d/src/font_options.cpp
similarity index 100%
rename from N3888_RefImpl/src/font_options.cpp
rename to io2d/src/font_options.cpp
diff --git a/io2d/src/font_resource.cpp b/io2d/src/font_resource.cpp
new file mode 100644
index 0000000..b68428b
--- /dev/null
+++ b/io2d/src/font_resource.cpp
@@ -0,0 +1,162 @@
+#include "io2d.h"
+#include "xio2dhelpers.h"
+#include "xcairoenumhelpers.h"
+
+using namespace std;
+using namespace std::experimental::io2d;
+
+font_resource::font_resource(const font_resource_factory& f)
+ : _Scaled_font()
+ , _Font_family()
+ , _Font_slant(f.font_slant())
+ , _Font_weight(f.font_weight())
+ , _Font_options() {
+ cairo_matrix_t fm{ f.font_matrix().m00(), f.font_matrix().m01(), f.font_matrix().m10(), f.font_matrix().m11(), f.font_matrix().m20(), f.font_matrix().m21() };
+ cairo_matrix_t sm{ f.surface_matrix().m00(), f.surface_matrix().m01(), f.surface_matrix().m10(), f.surface_matrix().m11(), f.surface_matrix().m20(), f.surface_matrix().m21() };
+ auto fo = cairo_font_options_create();
+ _Throw_if_failed_cairo_status_t(cairo_font_options_status(fo));
+ _Font_options = shared_ptr(fo, &cairo_font_options_destroy);
+ cairo_font_options_set_antialias(fo, _Antialias_to_cairo_antialias_t(f.font_options().antialias()));
+ cairo_font_options_set_subpixel_order(fo, _Subpixel_order_to_cairo_subpixel_order_t(f.font_options().subpixel_order()));
+ _Font_family = make_shared(f.font_family());
+ _Throw_if_failed_cairo_status_t(cairo_font_options_status(fo));
+ auto sf = cairo_scaled_font_create(cairo_toy_font_face_create(f.font_family().c_str(), _Font_slant_to_cairo_font_slant_t(f.font_slant()),
+ _Font_weight_to_cairo_font_weight_t(f.font_weight())), &fm, &sm, fo);
+ _Scaled_font = shared_ptr(sf, &cairo_scaled_font_destroy);
+ _Throw_if_failed_cairo_status_t(cairo_scaled_font_status(sf));
+}
+
+font_resource::font_resource(const font_resource_factory& f, error_code& ec) noexcept
+ : _Scaled_font()
+ , _Font_family()
+ , _Font_slant(f.font_slant())
+ , _Font_weight(f.font_weight())
+ , _Font_options() {
+ cairo_matrix_t fm{ f.font_matrix().m00(), f.font_matrix().m01(), f.font_matrix().m10(), f.font_matrix().m11(), f.font_matrix().m20(), f.font_matrix().m21() };
+ cairo_matrix_t sm{ f.surface_matrix().m00(), f.surface_matrix().m01(), f.surface_matrix().m10(), f.surface_matrix().m11(), f.surface_matrix().m20(), f.surface_matrix().m21() };
+ auto fo = cairo_font_options_create();
+
+ ec = _Cairo_status_t_to_std_error_code(cairo_font_options_status(fo));
+ if (static_cast(ec)) {
+ return;
+ }
+
+ try {
+ _Font_options = shared_ptr(fo, &cairo_font_options_destroy);
+ }
+ catch (const bad_alloc&) {
+ ec = make_error_code(errc::not_enough_memory);
+ return;
+ }
+ catch (...) {
+ ec = make_error_code(io2d_error::invalid_status);
+ return;
+ }
+ cairo_font_options_set_antialias(fo, _Antialias_to_cairo_antialias_t(f.font_options().antialias()));
+ cairo_font_options_set_subpixel_order(fo, _Subpixel_order_to_cairo_subpixel_order_t(f.font_options().subpixel_order()));
+
+ ec = _Cairo_status_t_to_std_error_code(cairo_font_options_status(fo));
+ if (static_cast(ec)) {
+ return;
+ }
+
+ try {
+ _Font_family = make_shared(f.font_family(ec));
+ if (static_cast(ec)) {
+ return;
+ }
+ }
+ catch (const bad_alloc&) {
+ ec = make_error_code(errc::not_enough_memory);
+ return;
+ }
+ catch (...) {
+ ec = make_error_code(io2d_error::invalid_status);
+ return;
+ }
+
+ if (static_cast(ec)) {
+ return;
+ }
+
+ auto sf = cairo_scaled_font_create(cairo_toy_font_face_create(f.font_family().c_str(), _Font_slant_to_cairo_font_slant_t(f.font_slant()),
+ _Font_weight_to_cairo_font_weight_t(f.font_weight())), &fm, &sm, fo);
+ ec = _Cairo_status_t_to_std_error_code(cairo_scaled_font_status(sf));
+ if (static_cast(ec)) {
+ return;
+ }
+ try {
+ _Scaled_font = shared_ptr(sf, &cairo_scaled_font_destroy);
+ }
+ catch (const bad_alloc&) {
+ ec = make_error_code(errc::not_enough_memory);
+ return;
+ }
+ catch (...) {
+ ec = make_error_code(io2d_error::invalid_status);
+ return;
+ }
+ ec.clear();
+}
+
+string font_resource::font_family() const {
+ return *_Font_family.get();
+}
+
+string font_resource::font_family(error_code& ec) const noexcept {
+ ::std::string s;
+ try {
+ s = *_Font_family.get();
+ }
+ catch (const ::std::bad_alloc&) {
+ ec = make_error_code(errc::not_enough_memory);
+ return s;
+ }
+ catch (const ::std::length_error&) {
+ ec = make_error_code(errc::not_enough_memory);
+ return s;
+ }
+ ec.clear();
+ return s;
+}
+
+experimental::io2d::font_slant font_resource::font_slant() const noexcept {
+ return _Font_slant;
+}
+
+experimental::io2d::font_weight font_resource::font_weight() const noexcept {
+ return _Font_weight;
+}
+
+experimental::io2d::font_options font_resource::font_options() const noexcept {
+ return ::std::experimental::io2d::font_options(_Cairo_antialias_t_to_antialias(cairo_font_options_get_antialias(_Font_options.get())),
+ _Cairo_subpixel_order_t_to_subpixel_order(cairo_font_options_get_subpixel_order(_Font_options.get())));
+}
+
+matrix_2d font_resource::font_matrix() const noexcept {
+ cairo_matrix_t cm;
+ cairo_scaled_font_get_font_matrix(_Scaled_font.get(), &cm);
+ return matrix_2d(cm.xx, cm.xy, cm.yx, cm.yy, cm.x0, cm.y0);
+}
+
+matrix_2d font_resource::surface_matrix() const noexcept {
+ cairo_matrix_t cm;
+ cairo_scaled_font_get_ctm(_Scaled_font.get(), &cm);
+ return matrix_2d(cm.xx, cm.xy, cm.yx, cm.yy, cm.x0, cm.y0);
+}
+
+experimental::io2d::font_extents font_resource::font_extents() const noexcept {
+ cairo_font_extents_t fe;
+ cairo_scaled_font_extents(_Scaled_font.get(), &fe);
+ return experimental::io2d::font_extents(fe.ascent, fe.descent, fe.height);
+}
+
+experimental::io2d::text_extents font_resource::text_extents(const string& utf8) const noexcept {
+ cairo_text_extents_t cte{};
+ cairo_scaled_font_text_extents(_Scaled_font.get(), utf8.c_str(), &cte);
+ return experimental::io2d::text_extents(cte.x_bearing, cte.y_bearing, cte.width, cte.height, cte.x_advance, cte.y_advance);
+}
+
+glyph_run font_resource::make_glyph_run(const string& utf8, const vector_2d& pos) const {
+ return glyph_run(*this, utf8, pos);
+}
diff --git a/io2d/src/font_resource_factory.cpp b/io2d/src/font_resource_factory.cpp
new file mode 100644
index 0000000..1306f8b
--- /dev/null
+++ b/io2d/src/font_resource_factory.cpp
@@ -0,0 +1,213 @@
+#include "io2d.h"
+#include "xio2dhelpers.h"
+#include "xcairoenumhelpers.h"
+#include
+
+using namespace std;
+using namespace std::experimental::io2d;
+
+font_resource_factory& font_resource_factory::operator=(font_resource_factory&& other) noexcept {
+ if (this != &other) {
+ _Family.swap(other._Family);
+ _Font_slant = move(other._Font_slant);
+ _Font_weight = move(other._Font_weight);
+ _Font_options = move(other._Font_options);
+ _Font_matrix = move(other._Font_matrix);
+ _Surface_matrix = move(other._Surface_matrix);
+ }
+ return *this;
+}
+
+font_resource_factory::font_resource_factory(const ::std::string& family, ::std::experimental::io2d::font_slant fs, ::std::experimental::io2d::font_weight fw,
+ const ::std::experimental::io2d::matrix_2d& fm, const ::std::experimental::io2d::font_options& fo, const ::std::experimental::io2d::matrix_2d& sm)
+ : _Family()
+ , _Font_slant(fs)
+ , _Font_weight(fw)
+ , _Font_options(fo)
+ , _Font_matrix(fm)
+ , _Surface_matrix(sm) {
+ // This logic exists to get the name of the font family that the system actually chose rather than just returning the requested family to the user.
+ auto font = cairo_toy_font_face_create(family.c_str(), _Font_slant_to_cairo_font_slant_t(fs), _Font_weight_to_cairo_font_weight_t(fw));
+ unique_ptr ff(font, &cairo_font_face_destroy);
+ _Throw_if_failed_cairo_status_t(cairo_font_face_status(font));
+ _Family = cairo_toy_font_face_get_family(font);
+}
+
+font_resource_factory::font_resource_factory(const ::std::string& family,
+ error_code& ec, ::std::experimental::io2d::font_slant fs, ::std::experimental::io2d::font_weight fw, const ::std::experimental::io2d::matrix_2d& fm,
+ const ::std::experimental::io2d::font_options& fo, const ::std::experimental::io2d::matrix_2d& sm) noexcept
+ : _Family()
+ , _Font_slant(fs)
+ , _Font_weight(fw)
+ , _Font_options(fo)
+ , _Font_matrix(fm)
+ , _Surface_matrix(sm) {
+ auto font = cairo_toy_font_face_create(family.c_str(), _Font_slant_to_cairo_font_slant_t(fs), _Font_weight_to_cairo_font_weight_t(fw));
+ unique_ptr ff(font, &cairo_font_face_destroy);
+ ec = _Cairo_status_t_to_std_error_code(cairo_font_face_status(font));
+ if (static_cast(ec)) {
+ return;
+ }
+ ::std::string s;
+ try {
+ s = cairo_toy_font_face_get_family(font);
+ }
+ catch (const ::std::bad_alloc&) {
+ ec = make_error_code(errc::not_enough_memory);
+ return;
+ }
+ catch (const ::std::length_error&) {
+ ec = make_error_code(errc::not_enough_memory);
+ return;
+ }
+ _Family = move(s);
+ ec.clear();
+}
+
+void font_resource_factory::font_family(const string& f) {
+ auto font = cairo_toy_font_face_create(f.c_str(), _Font_slant_to_cairo_font_slant_t(_Font_slant), _Font_weight_to_cairo_font_weight_t(_Font_weight));
+ unique_ptr ff(font, &cairo_font_face_destroy);
+ _Throw_if_failed_cairo_status_t(cairo_font_face_status(font));
+ _Family = cairo_toy_font_face_get_family(font);
+}
+
+void font_resource_factory::font_family(const string& f, error_code& ec) noexcept {
+ auto font = cairo_toy_font_face_create(f.c_str(), _Font_slant_to_cairo_font_slant_t(_Font_slant), _Font_weight_to_cairo_font_weight_t(_Font_weight));
+ unique_ptr ff(font, &cairo_font_face_destroy);
+ ec = _Cairo_status_t_to_std_error_code(cairo_font_face_status(font));
+ if (static_cast(ec)) {
+ return;
+ }
+ ::std::string s;
+ try {
+ s = cairo_toy_font_face_get_family(font);
+ }
+ catch (const ::std::bad_alloc&) {
+ ec = make_error_code(errc::not_enough_memory);
+ return;
+ }
+ catch (const ::std::length_error&) {
+ ec = make_error_code(errc::not_enough_memory);
+ return;
+ }
+ _Family = move(s);
+ ec.clear();
+}
+
+void font_resource_factory::font_slant(const ::std::experimental::io2d::font_slant fs) {
+ _Font_slant = fs;
+ auto font = cairo_toy_font_face_create(_Family.c_str(), _Font_slant_to_cairo_font_slant_t(_Font_slant), _Font_weight_to_cairo_font_weight_t(_Font_weight));
+ unique_ptr ff(font, &cairo_font_face_destroy);
+ _Throw_if_failed_cairo_status_t(cairo_font_face_status(font));
+ _Family = cairo_toy_font_face_get_family(font);
+}
+
+void font_resource_factory::font_slant(const ::std::experimental::io2d::font_slant fs, ::std::error_code& ec) noexcept {
+ auto font = cairo_toy_font_face_create(_Family.c_str(), _Font_slant_to_cairo_font_slant_t(fs), _Font_weight_to_cairo_font_weight_t(_Font_weight));
+ unique_ptr ff(font, &cairo_font_face_destroy);
+ ec = _Cairo_status_t_to_std_error_code(cairo_font_face_status(font));
+ if (static_cast(ec)) {
+ return;
+ }
+ ::std::string s;
+ try {
+ s = cairo_toy_font_face_get_family(font);
+ }
+ catch (const ::std::bad_alloc&) {
+ ec = make_error_code(errc::not_enough_memory);
+ return;
+ }
+ catch (const ::std::length_error&) {
+ ec = make_error_code(errc::not_enough_memory);
+ return;
+ }
+ _Family = move(s);
+ _Font_slant = fs;
+ ec.clear();
+}
+
+void font_resource_factory::font_weight(::std::experimental::io2d::font_weight fw) {
+ auto font = cairo_toy_font_face_create(_Family.c_str(), _Font_slant_to_cairo_font_slant_t(_Font_slant), _Font_weight_to_cairo_font_weight_t(fw));
+ unique_ptr ff(font, &cairo_font_face_destroy);
+ _Throw_if_failed_cairo_status_t(cairo_font_face_status(font));
+ ::std::string s(cairo_toy_font_face_get_family(font));
+ _Family = move(s);
+ _Font_weight = fw;
+}
+
+void font_resource_factory::font_weight(::std::experimental::io2d::font_weight fw, ::std::error_code& ec) noexcept {
+ auto font = cairo_toy_font_face_create(_Family.c_str(), _Font_slant_to_cairo_font_slant_t(_Font_slant), _Font_weight_to_cairo_font_weight_t(fw));
+ unique_ptr ff(font, &cairo_font_face_destroy);
+ ec = _Cairo_status_t_to_std_error_code(cairo_font_face_status(font));
+ if (static_cast(ec)) {
+ return;
+ }
+ ::std::string s;
+ try {
+ s = cairo_toy_font_face_get_family(font);
+ }
+ catch (const ::std::bad_alloc&) {
+ ec = make_error_code(errc::not_enough_memory);
+ return;
+ }
+ catch (const ::std::length_error&) {
+ ec = make_error_code(errc::not_enough_memory);
+ return;
+ }
+ _Family = move(s);
+ _Font_weight = fw;
+ ec.clear();
+}
+
+void font_resource_factory::font_options(const ::std::experimental::io2d::font_options& fo) noexcept {
+ _Font_options = fo;
+}
+
+void font_resource_factory::font_matrix(const matrix_2d& m) noexcept {
+ _Font_matrix = m;
+}
+
+void font_resource_factory::surface_matrix(const matrix_2d & m) noexcept {
+ _Surface_matrix = m;
+}
+
+::std::string font_resource_factory::font_family() const {
+ return _Family;
+}
+
+::std::string font_resource_factory::font_family(::std::error_code& ec) const noexcept {
+ ::std::string s;
+ try {
+ s = _Family;
+ }
+ catch (const ::std::bad_alloc&) {
+ ec = make_error_code(errc::not_enough_memory);
+ return s;
+ }
+ catch (const ::std::length_error&) {
+ ec = make_error_code(errc::not_enough_memory);
+ return s;
+ }
+ ec.clear();
+ return s;
+}
+
+::std::experimental::io2d::font_slant font_resource_factory::font_slant() const noexcept {
+ return _Font_slant;
+}
+
+::std::experimental::io2d::font_weight font_resource_factory::font_weight() const noexcept {
+ return _Font_weight;
+}
+
+::std::experimental::io2d::font_options font_resource_factory::font_options() const noexcept {
+ return _Font_options;
+}
+
+matrix_2d font_resource_factory::font_matrix() const noexcept {
+ return _Font_matrix;
+}
+
+matrix_2d font_resource_factory::surface_matrix() const noexcept {
+ return _Surface_matrix;
+}
diff --git a/io2d/src/glyph_run.cpp b/io2d/src/glyph_run.cpp
new file mode 100644
index 0000000..51052da
--- /dev/null
+++ b/io2d/src/glyph_run.cpp
@@ -0,0 +1,184 @@
+#include "io2d.h"
+#include "xio2dhelpers.h"
+#include "xcairoenumhelpers.h"
+
+using namespace std;
+using namespace std::experimental::io2d;
+
+glyph_run::glyph::glyph(glyph_run::glyph::index_type i, double x, double y) noexcept
+ : _Index(i)
+ , _X(x)
+ , _Y(y)
+ , _Native_glyph(nullptr) {
+}
+
+void glyph_run::glyph::index(index_type i) noexcept {
+ _Index = i;
+ if (_Native_glyph != nullptr) {
+ (*_Native_glyph).index = i;
+ }
+}
+
+void glyph_run::glyph::x(double val) noexcept {
+ _X = val;
+ if (_Native_glyph != nullptr) {
+ (*_Native_glyph).x = val;
+ }
+}
+
+void glyph_run::glyph::y(double val) noexcept {
+ _Y = val;
+ if (_Native_glyph != nullptr) {
+ (*_Native_glyph).y = val;
+ }
+}
+
+glyph_run::glyph::index_type glyph_run::glyph::index() const noexcept {
+ return _Index;
+}
+
+double glyph_run::glyph::x() const noexcept {
+ return _X;
+}
+
+double glyph_run::glyph::y() const noexcept {
+ return _Y;
+}
+
+glyph_run::cluster::cluster(int glyphs, int bytes) noexcept
+ : _Glyph_count(glyphs)
+ , _Byte_count(bytes)
+ , _Native_cluster(nullptr) {
+}
+
+void glyph_run::cluster::glyph_count(int count) noexcept {
+ _Glyph_count = count;
+ if (_Native_cluster != nullptr) {
+ (*_Native_cluster).num_glyphs = count;
+ }
+}
+
+void glyph_run::cluster::byte_count(int count) noexcept {
+ _Byte_count = count;
+ if (_Native_cluster != nullptr) {
+ (*_Native_cluster).num_bytes = count;
+ }
+}
+
+int glyph_run::cluster::glyph_count() const noexcept {
+ return _Glyph_count;
+}
+
+int glyph_run::cluster::byte_count() const noexcept {
+ return _Byte_count;
+}
+
+glyph_run& glyph_run::operator=(glyph_run&& other) noexcept {
+ if (this != &other) {
+ _Text_string.swap(other._Text_string);
+ _Font_resource = move(other._Font_resource);
+ _Glyphs = move(other._Glyphs);
+ _Clusters = move(other._Clusters);
+ _Cairo_glyphs = move(other._Cairo_glyphs);
+ _Cairo_text_clusters = move(other._Cairo_text_clusters);
+ _Position = move(other._Position);
+ _Text_cluster_flags = move(other._Text_cluster_flags);
+ }
+ return *this;
+}
+
+glyph_run::glyph_run(const experimental::io2d::font_resource& fr, const ::std::string& utf8, const vector_2d& pos)
+ : _Text_string(utf8)
+ , _Font_resource(fr)
+ , _Glyphs()
+ , _Clusters()
+ , _Cairo_glyphs()
+ , _Cairo_text_clusters()
+ , _Position(pos)
+ , _Text_cluster_flags() {
+ //unique_ptr upcgt(nullptr, &cairo_glyph_free);
+ //unique_ptr upctc(nullptr, &cairo_text_cluster_free);
+
+ cairo_glyph_t* cgt = nullptr;
+ int cgtCount = 0;
+ cairo_text_cluster_t* ctc = nullptr;
+ int ctcCount = 0;
+ auto status = cairo_scaled_font_text_to_glyphs(fr._Scaled_font.get(), pos.x(), pos.y(), utf8.c_str(), -1, &cgt, &cgtCount, &ctc, &ctcCount, &_Text_cluster_flags);
+ //upcgt.reset(cgt);
+ //upctc.reset(ctc);
+ try {
+ _Cairo_glyphs.reset(cgt, &cairo_glyph_free);
+ }
+ catch (...) {
+ cairo_text_cluster_free(ctc);
+ throw;
+ }
+
+ _Cairo_text_clusters.reset(ctc, &cairo_text_cluster_free);
+
+ //if (status != CAIRO_STATUS_SUCCESS) {
+ // if (cgt != nullptr) {
+ // cairo_glyph_free(cgt);
+ // }
+ // if (ctc != nullptr) {
+ // cairo_text_cluster_free(ctc);
+ // }
+ // _Throw_if_failed_cairo_status_t(status);
+ //}
+
+ _Throw_if_failed_cairo_status_t(status);
+
+ _Glyphs.reserve(static_cast::size_type>(cgtCount));
+
+ _Clusters.reserve(static_cast::size_type>(ctcCount));
+
+ for (int i = 0; i < cgtCount; ++i) {
+ const auto& val = cgt[i];
+ _Glyphs.emplace_back(static_cast(val.index), val.x, val.y);
+ _Glyphs.rbegin()->_Native_glyph = cgt + i;//&(cgt[i]);
+ }
+
+ for (int i = 0; i < ctcCount; ++i) {
+ const auto& val = ctc[i];
+ _Clusters.emplace_back(val.num_glyphs, val.num_bytes);
+ _Clusters.rbegin()->_Native_cluster = ctc + i;
+ }
+}
+
+vector& glyph_run::glyphs() noexcept {
+ return _Glyphs;
+}
+
+vector& glyph_run::clusters() noexcept {
+ return _Clusters;
+}
+
+const string& glyph_run::original_text() const noexcept {
+ return _Text_string;
+}
+
+const vector& glyph_run::glyphs() const noexcept {
+ return _Glyphs;
+}
+
+const vector& glyph_run::clusters() const noexcept {
+ return _Clusters;
+}
+
+const experimental::io2d::font_resource& glyph_run::font_resource() const noexcept {
+ return _Font_resource;
+}
+
+bool glyph_run::reversed_clusters() const noexcept {
+ return (_Text_cluster_flags & CAIRO_TEXT_CLUSTER_FLAG_BACKWARD) != 0;
+}
+
+vector_2d glyph_run::position() const noexcept {
+ return _Position;
+}
+
+text_extents glyph_run::extents() const noexcept {
+ cairo_text_extents_t cte{};
+ cairo_scaled_font_glyph_extents(_Font_resource._Scaled_font.get(), _Cairo_glyphs.get(), static_cast(_Glyphs.size()), &cte);
+ return text_extents(cte.x_bearing, cte.y_bearing, cte.width, cte.height, cte.x_advance, cte.y_advance);
+}
diff --git a/N3888_RefImpl/src/image_surface.cpp b/io2d/src/image_surface.cpp
similarity index 74%
rename from N3888_RefImpl/src/image_surface.cpp
rename to io2d/src/image_surface.cpp
index fdfc21b..5610b58 100644
--- a/N3888_RefImpl/src/image_surface.cpp
+++ b/io2d/src/image_surface.cpp
@@ -61,47 +61,16 @@ image_surface::image_surface(vector& data, experimental::io2d::fo
if (imageData == nullptr) {
_Throw_if_failed_cairo_status_t(CAIRO_STATUS_NULL_POINTER);
}
- ::std::memcpy(imageData, data.data(), expected_size);
+ else {
+ ::std::memcpy(imageData, data.data(), expected_size);
+ }
cairo_surface_mark_dirty(_Surface.get());
_Throw_if_failed_cairo_status_t(cairo_surface_status(_Surface.get()));
cairo_set_miter_limit(_Context.get(), _Line_join_miter_miter_limit);
_Throw_if_failed_cairo_status_t(cairo_status(_Context.get()));
+ _Ensure_state();
}
-//image_surface::image_surface(const surface& other, experimental::io2d::format fmt, int width, int height)
-// : surface({ nullptr, nullptr }, fmt, _Content_for_format(fmt)) {
-// _Surface = unique_ptr(cairo_surface_create_similar_image(other.native_handle().csfce, _Format_to_cairo_format_t(fmt), width, height), &cairo_surface_destroy);
-// _Throw_if_failed_cairo_status_t(cairo_surface_status(_Surface.get()));
-// _Context = unique_ptr(cairo_create(_Surface.get()), &cairo_destroy);
-// _Throw_if_failed_cairo_status_t(cairo_status(_Context.get()));
-// cairo_set_miter_limit(_Context.get(), _Line_join_miter_miter_limit);
-//}
-//
-//image_surface::image_surface(const surface& other, experimental::io2d::format fmt, int width, int height, error_code& ec) noexcept
-// : surface({ nullptr, nullptr }, fmt, _Content_for_format(fmt), ec) {
-// if (static_cast(ec)) {
-// _Surface = nullptr;
-// _Context = nullptr;
-// return;
-// }
-// _Surface = unique_ptr(cairo_surface_create_similar_image(other.native_handle().csfce, _Format_to_cairo_format_t(fmt), width, height), &cairo_surface_destroy);
-// ec = _Cairo_status_t_to_std_error_code(cairo_surface_status(_Surface.get()));
-// if (static_cast(ec)) {
-// _Surface = nullptr;
-// _Context = nullptr;
-// return;
-// }
-// _Context = unique_ptr(cairo_create(_Surface.get()), &cairo_destroy);
-// ec = _Cairo_status_t_to_std_error_code(cairo_status(_Context.get()));
-// if (static_cast(ec)) {
-// _Surface = nullptr;
-// _Context = nullptr;
-// return;
-// }
-// cairo_set_miter_limit(_Context.get(), _Line_join_miter_miter_limit);
-// ec.clear();
-//}
-
image_surface::~image_surface() {
}
@@ -118,7 +87,9 @@ void image_surface::data(const vector& data) {
if (imageData == nullptr) {
_Throw_if_failed_cairo_status_t(CAIRO_STATUS_NULL_POINTER);
}
- ::std::memcpy(imageData, data.data(), expected_size);
+ else {
+ ::std::memcpy(imageData, data.data(), expected_size);
+ }
cairo_surface_mark_dirty(_Surface.get());
}
@@ -144,7 +115,7 @@ void image_surface::data(const vector& data, error_code& ec) noex
}
vector image_surface::data() {
- auto required_size = stride() * height();
+ auto required_size = static_cast::size_type>(stride() * height());
vector data;
//if (_Surface.get() == nullptr) {
// _Throw_if_failed_cairo_status_t(CAIRO_STATUS_NULL_POINTER);
@@ -157,7 +128,7 @@ vector image_surface::data() {
}
vector image_surface::data(error_code& ec) noexcept {
- auto required_size = stride() * height();
+ auto required_size = static_cast::size_type>(stride() * height());
// Relies on C++17 noexcept guarantee for vector default ctor (N4258, adopted 2014-11).
vector data;
//if (_Surface.get() == nullptr) {
diff --git a/N3888_RefImpl/src/io2d_error_category.cpp b/io2d/src/io2d_error_category.cpp
similarity index 100%
rename from N3888_RefImpl/src/io2d_error_category.cpp
rename to io2d/src/io2d_error_category.cpp
diff --git a/N3888_RefImpl/src/linear_brush_factory.cpp b/io2d/src/linear_brush_factory.cpp
similarity index 100%
rename from N3888_RefImpl/src/linear_brush_factory.cpp
rename to io2d/src/linear_brush_factory.cpp
diff --git a/N3888_RefImpl/src/mapped_surface.cpp b/io2d/src/mapped_surface.cpp
similarity index 100%
rename from N3888_RefImpl/src/mapped_surface.cpp
rename to io2d/src/mapped_surface.cpp
diff --git a/N3888_RefImpl/src/matrix_2d.cpp b/io2d/src/matrix_2d.cpp
similarity index 100%
rename from N3888_RefImpl/src/matrix_2d.cpp
rename to io2d/src/matrix_2d.cpp
diff --git a/N3888_RefImpl/src/mesh_brush_factory.cpp b/io2d/src/mesh_brush_factory.cpp
similarity index 100%
rename from N3888_RefImpl/src/mesh_brush_factory.cpp
rename to io2d/src/mesh_brush_factory.cpp
diff --git a/N3888_RefImpl/src/path.cpp b/io2d/src/path.cpp
similarity index 98%
rename from N3888_RefImpl/src/path.cpp
rename to io2d/src/path.cpp
index d126c44..a45c438 100644
--- a/N3888_RefImpl/src/path.cpp
+++ b/io2d/src/path.cpp
@@ -193,16 +193,27 @@ path::path(const vector& pathData)
auto ang1 = ad.angle_1();
auto ang2 = ad.angle_2();
while (ang2 < ang1) {
+#if _Variable_templates_conditional_support_test
+ ang2 += two_pi;
+#else
ang2 += two_pi();
+#endif
}
vector_2d pt0, pt1, pt2, pt3;
int bezCount = 1;
double theta = ang2 - ang1;
double phi;
+#if _Variable_templates_conditional_support_test
+ while (theta >= half_pi) {
+ theta /= 2.0;
+ bezCount += bezCount;
+ }
+#else
while (theta >= half_pi()) {
theta /= 2.0;
bezCount += bezCount;
}
+#endif
phi = theta / 2.0;
auto cosPhi = cos(phi);
auto sinPhi = sin(phi);
@@ -282,16 +293,27 @@ path::path(const vector& pathData)
auto ang1 = ad.angle_1();
auto ang2 = ad.angle_2();
while (ang2 > ang1) {
+#if _Variable_templates_conditional_support_test
+ ang2 -= two_pi;
+#else
ang2 -= two_pi();
+#endif
}
vector_2d pt0, pt1, pt2, pt3;
int bezCount = 1;
double theta = ang1 - ang2;
double phi;
+#if _Variable_templates_conditional_support_test
+ while (theta >= half_pi) {
+ theta /= 2.0;
+ bezCount += bezCount;
+ }
+#else
while (theta >= half_pi()) {
theta /= 2.0;
bezCount += bezCount;
}
+#endif
phi = theta / 2.0;
auto cosPhi = cos(phi);
auto sinPhi = sin(phi);
diff --git a/N3888_RefImpl/src/path_data.cpp b/io2d/src/path_data.cpp
similarity index 100%
rename from N3888_RefImpl/src/path_data.cpp
rename to io2d/src/path_data.cpp
diff --git a/N3888_RefImpl/src/path_data_item.cpp b/io2d/src/path_data_item.cpp
similarity index 99%
rename from N3888_RefImpl/src/path_data_item.cpp
rename to io2d/src/path_data_item.cpp
index f288c25..d1e681b 100644
--- a/N3888_RefImpl/src/path_data_item.cpp
+++ b/io2d/src/path_data_item.cpp
@@ -18,7 +18,7 @@ path_data_item& path_data_item::operator=(path_data_item&& other) noexcept {
_Type = move(other._Type);
}
return *this;
-};
+}
path_data_item::path_data_item(const arc& value) noexcept
: _Has_data()
diff --git a/N3888_RefImpl/src/path_factory.cpp b/io2d/src/path_factory.cpp
similarity index 94%
rename from N3888_RefImpl/src/path_factory.cpp
rename to io2d/src/path_factory.cpp
index 94cf3f4..0b70992 100644
--- a/N3888_RefImpl/src/path_factory.cpp
+++ b/io2d/src/path_factory.cpp
@@ -992,3 +992,39 @@ void path_factory::clear() noexcept {
_Origin = { };
}
+void path_factory::add_text(const font_resource& fr, const string& utf8, const vector_2d& pt) {
+ auto gr = fr.make_glyph_run(utf8, pt);
+ auto ext = gr.extents();
+ double w = ext.width();
+ double h = ext.height();
+ cairo_matrix_t cm{};
+ cairo_matrix_init_translate(&cm, -(pt.x() + ext.x_bearing()), -(pt.y() + ext.y_bearing()));
+ unique_ptr upimgSfc(
+ cairo_image_surface_create(CAIRO_FORMAT_ARGB32, _Double_to_int(w + 0.5), _Double_to_int(h + 0.5)), &cairo_surface_destroy
+ );
+ unique_ptr upctxt(cairo_create(upimgSfc.get()), &cairo_destroy);
+ cairo_set_matrix(upctxt.get(), &cm);
+ cairo_new_path(upctxt.get());
+ cairo_set_scaled_font(upctxt.get(), fr._Scaled_font.get());
+ cairo_glyph_path(upctxt.get(), gr._Cairo_glyphs.get(), static_cast(gr.glyphs().size()));
+ unique_ptr uppth(cairo_copy_path(upctxt.get()), &cairo_path_destroy);
+ append(_Cairo_path_data_t_array_to_path_data_item_vector(*(uppth.get())));
+}
+
+void path_factory::add_glyph_run(const font_resource& fr, const glyph_run& gr) {
+ auto ext = gr.extents();
+ double w = ext.width();
+ double h = ext.height();
+ cairo_matrix_t cm{};
+ cairo_matrix_init_translate(&cm, -(gr.position().x() + ext.x_bearing()), -(gr.position().y() + ext.y_bearing()));
+ unique_ptr upimgSfc(
+ cairo_image_surface_create(CAIRO_FORMAT_ARGB32, _Double_to_int(w + 0.5), _Double_to_int(h + 0.5)), &cairo_surface_destroy
+ );
+ unique_ptr upctxt(cairo_create(upimgSfc.get()), &cairo_destroy);
+ cairo_set_matrix(upctxt.get(), &cm);
+ cairo_new_path(upctxt.get());
+ cairo_set_scaled_font(upctxt.get(), fr._Scaled_font.get());
+ cairo_glyph_path(upctxt.get(), gr._Cairo_glyphs.get(), static_cast(gr.glyphs().size()));
+ unique_ptr uppth(cairo_copy_path(upctxt.get()), &cairo_path_destroy);
+ append(_Cairo_path_data_t_array_to_path_data_item_vector(*(uppth.get())));
+}
diff --git a/N3888_RefImpl/src/radial_brush_factory.cpp b/io2d/src/radial_brush_factory.cpp
similarity index 100%
rename from N3888_RefImpl/src/radial_brush_factory.cpp
rename to io2d/src/radial_brush_factory.cpp
diff --git a/N3888_RefImpl/src/rectangle.cpp b/io2d/src/rectangle.cpp
similarity index 100%
rename from N3888_RefImpl/src/rectangle.cpp
rename to io2d/src/rectangle.cpp
diff --git a/N3888_RefImpl/src/rgba_color.cpp b/io2d/src/rgba_color.cpp
similarity index 100%
rename from N3888_RefImpl/src/rgba_color.cpp
rename to io2d/src/rgba_color.cpp
diff --git a/N3888_RefImpl/src/solid_color_brush_factory.cpp b/io2d/src/solid_color_brush_factory.cpp
similarity index 100%
rename from N3888_RefImpl/src/solid_color_brush_factory.cpp
rename to io2d/src/solid_color_brush_factory.cpp
diff --git a/N3888_RefImpl/src/standalone_functions.cpp b/io2d/src/standalone_functions.cpp
similarity index 94%
rename from N3888_RefImpl/src/standalone_functions.cpp
rename to io2d/src/standalone_functions.cpp
index 43ff524..2600fb8 100644
--- a/N3888_RefImpl/src/standalone_functions.cpp
+++ b/io2d/src/standalone_functions.cpp
@@ -16,8 +16,12 @@ namespace std {
return ec;
}
- display_surface make_display_surface(int preferredWidth, int preferredHeight, format preferredFormat, scaling scl) {
- return display_surface(preferredWidth, preferredHeight, preferredFormat, scl);
+ display_surface make_display_surface(int preferredWidth, int preferredHeight, format preferredFormat, scaling scl, refresh_rate rr, double desiredFramerate) {
+ return display_surface(preferredWidth, preferredHeight, preferredFormat, scl, rr, desiredFramerate);
+ }
+
+ display_surface make_display_surface(int preferredWidth, int preferredHeight, format preferredFormat, int preferredDisplayWidth, int preferredDisplayHeight, scaling scl, refresh_rate rr, double desiredFramerate) {
+ return display_surface(preferredWidth, preferredHeight, preferredFormat, preferredDisplayWidth, preferredDisplayHeight,scl, rr, desiredFramerate);
}
image_surface make_image_surface(format fmt, int width, int height) {
@@ -159,12 +163,20 @@ namespace std {
vector _Get_arc_as_beziers(const vector_2d& center, double radius, double angle1, double angle2, bool arcNegative, bool hasCurrentPoint, const vector_2d& /*currentPoint*/, const vector_2d& origin, const matrix_2d& matrix) {
if (arcNegative) {
while (angle2 > angle1) {
+#if _Variable_templates_conditional_support_test
+ angle2 -= two_pi;
+#else
angle2 -= two_pi();
+#endif
}
}
else {
while (angle2 < angle1) {
+#if _Variable_templates_conditional_support_test
+ angle2 += two_pi;
+#else
angle2 += two_pi();
+#endif
}
}
vector_2d pt0, pt1, pt2, pt3;
@@ -181,10 +193,17 @@ namespace std {
{
// See: DeVeneza, Richard A., "How to determine the control points of a Bézier curve that approximates a small circular arc" (Nov. 2004) [ http://www.tinaja.com/glib/bezcirc2.pdf ].
+#if _Variable_templates_conditional_support_test
+ while (theta >= half_pi) {
+ theta /= 2.0;
+ bezierCount += bezierCount;
+ }
+#else
while (theta >= half_pi()) {
theta /= 2.0;
bezierCount += bezierCount;
}
+#endif
phi = theta / 2.0;
@@ -261,12 +280,20 @@ namespace std {
vector _Get_arc_as_beziers(const vector_2d& center, double radius, double angle1, double angle2, error_code& ec, bool arcNegative, bool hasCurrentPoint, const vector_2d& /*currentPoint*/, const vector_2d& origin, const matrix_2d& matrix) noexcept {
if (arcNegative) {
while (angle2 > angle1) {
+#if _Variable_templates_conditional_support_test
+ angle2 -= two_pi;
+#else
angle2 -= two_pi();
+#endif
}
}
else {
while (angle2 < angle1) {
+#if _Variable_templates_conditional_support_test
+ angle2 += two_pi;
+#else
angle2 += two_pi();
+#endif
}
}
vector_2d pt0, pt1, pt2, pt3;
@@ -283,10 +310,17 @@ namespace std {
{
// See: DeVeneza, Richard A., "How to determine the control points of a Bézier curve that approximates a small circular arc" (Nov. 2004) [ http://www.tinaja.com/glib/bezcirc2.pdf ].
+#if _Variable_templates_conditional_support_test
+ while (theta >= half_pi) {
+ theta /= 2.0;
+ bezierCount += bezierCount;
+ }
+#else
while (theta >= half_pi()) {
theta /= 2.0;
bezierCount += bezierCount;
}
+#endif
phi = theta / 2.0;
@@ -395,12 +429,20 @@ namespace std {
void _Get_arc_extents(const ::std::experimental::io2d::vector_2d& center, double radius, double angle1, double angle2, bool arcNegative, bool& hasCurrentPoint, ::std::experimental::io2d::vector_2d& currentPoint, ::std::experimental::io2d::vector_2d& transformedCurrentPoint, ::std::experimental::io2d::vector_2d& lastMoveToPoint, bool& hasExtents, vector_2d& exPt0, vector_2d& exPt1, ::std::experimental::io2d::vector_2d& origin, ::std::experimental::io2d::matrix_2d& transformMatrix) noexcept {
if (arcNegative) {
while (angle2 > angle1) {
+#if _Variable_templates_conditional_support_test
+ angle2 -= two_pi;
+#else
angle2 -= two_pi();
+#endif
}
}
else {
while (angle2 < angle1) {
+#if _Variable_templates_conditional_support_test
+ angle2 += two_pi;
+#else
angle2 += two_pi();
+#endif
}
}
vector_2d pt0, pt1, pt2, pt3;
@@ -417,10 +459,17 @@ namespace std {
{
// See: DeVeneza, Richard A., "How to determine the control points of a Bézier curve that approximates a small circular arc" (Nov. 2004) [ http://www.tinaja.com/glib/bezcirc2.pdf ].
- while (theta >= (half_pi())) {
+#if _Variable_templates_conditional_support_test
+ while (theta >= half_pi) {
theta /= 2.0;
bezierCount += bezierCount;
}
+#else
+ while (theta >= half_pi()) {
+ theta /= 2.0;
+ bezierCount += bezierCount;
+ }
+#endif
phi = theta / 2.0;
diff --git a/N3888_RefImpl/src/surface.cpp b/io2d/src/surface.cpp
similarity index 77%
rename from N3888_RefImpl/src/surface.cpp
rename to io2d/src/surface.cpp
index e2c1198..03c3345 100644
--- a/N3888_RefImpl/src/surface.cpp
+++ b/io2d/src/surface.cpp
@@ -6,6 +6,10 @@ using namespace std;
using namespace std::experimental;
using namespace std::experimental::io2d;
+namespace {
+ const vector_2d _Font_default_size{ 16.0, 16.0 };
+}
+
void surface::_Ensure_state() {
if (_Surface == nullptr || _Context == nullptr) {
_Throw_if_failed_cairo_status_t(CAIRO_STATUS_NULL_POINTER);
@@ -26,14 +30,7 @@ void surface::_Ensure_state() {
cairo_new_path(_Context.get());
}
matrix(_Transform_matrix);
- if (_Font_face.get() != nullptr) {
- font_face(*_Font_face);
- }
- else {
- cairo_set_font_face(_Context.get(), nullptr); // Restore default font.
- }
- font_matrix(_Font_matrix);
- font_options(_Font_options);
+ font_resource(_Font_resource);
}
void surface::_Ensure_state(error_code& ec) noexcept {
@@ -62,21 +59,11 @@ void surface::_Ensure_state(error_code& ec) noexcept {
cairo_new_path(_Context.get());
}
matrix(_Transform_matrix);
- if (_Font_face.get() != nullptr) {
- font_face(*_Font_face, ec);
- if (static_cast(ec)) {
- return;
- }
- }
- else {
- cairo_set_font_face(_Context.get(), nullptr); // Restore default font.
- }
- font_matrix(_Font_matrix);
- font_options(_Font_options);
dashes(_Dashes, ec);
if (static_cast(ec)) {
return;
}
+ font_resource(_Font_resource);
ec.clear();
}
@@ -100,14 +87,13 @@ surface::surface(format fmt, int width, int height)
, _Current_path()
, _Immediate_path()
, _Transform_matrix(matrix_2d::init_identity())
- , _Font_face()
- , _Font_matrix(matrix_2d::init_scale({ 10.0, 10.0 }))
- , _Font_options(::std::experimental::io2d::antialias::default_antialias, ::std::experimental::io2d::subpixel_order::default_subpixel_order)
+ , _Font_resource(font_resource_factory())
, _Saved_state() {
_Throw_if_failed_cairo_status_t(cairo_surface_status(_Surface.get()));
_Throw_if_failed_cairo_status_t(cairo_status(_Context.get()));
_Throw_if_failed_cairo_status_t(cairo_font_options_status(_Native_font_options.get()));
_Throw_if_failed_cairo_status_t(cairo_pattern_status(_Brush.native_handle()));
+ _Ensure_state();
}
surface::native_handle_type surface::native_handle() const {
@@ -133,9 +119,7 @@ surface::surface(surface&& other) noexcept
, _Current_path(move(other._Current_path))
, _Immediate_path(move(other._Immediate_path))
, _Transform_matrix(move(other._Transform_matrix))
- , _Font_face(move(other._Font_face))
- , _Font_matrix(move(other._Font_matrix))
- , _Font_options(move(other._Font_options))
+ , _Font_resource(move(other._Font_resource))
, _Saved_state(move(other._Saved_state)) {
}
@@ -158,9 +142,7 @@ surface& surface::operator=(surface&& other) noexcept {
_Current_path = move(other._Current_path);
_Immediate_path = move(other._Immediate_path);
_Transform_matrix = move(other._Transform_matrix);
- _Font_face = move(other._Font_face);
- _Font_matrix = move(other._Font_matrix);
- _Font_options = move(other._Font_options);
+ _Font_resource = move(other._Font_resource);
_Saved_state = move(other._Saved_state);
}
return *this;
@@ -186,13 +168,19 @@ surface::surface(surface::native_handle_type nh, ::std::experimental::io2d::form
, _Current_path()
, _Immediate_path()
, _Transform_matrix()
- , _Font_face()
- , _Font_matrix(matrix_2d::init_scale({ 10.0, 10.0 }))
- , _Font_options(::std::experimental::io2d::antialias::default_antialias, ::std::experimental::io2d::subpixel_order::default_subpixel_order)
+ , _Font_resource(font_resource_factory())
, _Saved_state() {
if (nh.csfce != nullptr) {
_Throw_if_failed_cairo_status_t(cairo_surface_status(_Surface.get()));
_Throw_if_failed_cairo_status_t(cairo_status(_Context.get()));
+ auto pf = path_factory{};
+ unique_ptr upcpt{ cairo_copy_path(_Context.get()), &cairo_path_destroy };
+ if (upcpt.get() == nullptr) {
+ _Throw_if_failed_cairo_status_t(CAIRO_STATUS_NULL_POINTER);
+ }
+ pf.append(_Cairo_path_data_t_array_to_path_data_item_vector(*(upcpt.get())));
+ _Current_path = make_shared(pf);
+ _Ensure_state();
}
_Throw_if_failed_cairo_status_t(cairo_font_options_status(_Native_font_options.get()));
_Throw_if_failed_cairo_status_t(cairo_pattern_status(_Brush.native_handle()));
@@ -219,9 +207,7 @@ surface::surface(surface::native_handle_type nh, ::std::experimental::io2d::form
, _Current_path()
, _Immediate_path()
, _Transform_matrix(matrix_2d::init_identity())
- , _Font_face()
- , _Font_matrix(matrix_2d::init_scale({ 10.0, 10.0 }))
- , _Font_options(::std::experimental::io2d::antialias::default_antialias, ::std::experimental::io2d::subpixel_order::default_subpixel_order)
+ , _Font_resource(font_resource_factory())
, _Saved_state() {
if (nh.csfce != nullptr) {
if (static_cast(ec)) {
@@ -257,6 +243,12 @@ surface::surface(surface::native_handle_type nh, ::std::experimental::io2d::form
if (_Context.get() != nullptr) {
cairo_set_miter_limit(_Context.get(), _Line_join_miter_miter_limit);
}
+ _Ensure_state(ec);
+ if (static_cast(ec)) {
+ _Surface = nullptr;
+ _Context = nullptr;
+ return;
+ }
ec.clear();
}
@@ -278,14 +270,13 @@ surface::surface(const surface& other, ::std::experimental::io2d::content ctnt,
, _Current_path()
, _Immediate_path()
, _Transform_matrix(matrix_2d::init_identity())
- , _Font_face()
- , _Font_matrix(matrix_2d::init_scale({ 10.0, 10.0 }))
- , _Font_options(::std::experimental::io2d::antialias::default_antialias, ::std::experimental::io2d::subpixel_order::default_subpixel_order)
+ , _Font_resource(font_resource_factory())
, _Saved_state() {
_Throw_if_failed_cairo_status_t(cairo_surface_status(_Surface.get()));
_Throw_if_failed_cairo_status_t(cairo_status(_Context.get()));
_Throw_if_failed_cairo_status_t(cairo_font_options_status(_Native_font_options.get()));
_Throw_if_failed_cairo_status_t(cairo_pattern_status(_Brush.native_handle()));
+ _Ensure_state();
}
surface::~surface() {
@@ -407,13 +398,13 @@ void surface::map(const ::std::function& act
void surface::save() {
cairo_save(_Context.get());
- _Saved_state.push(make_tuple(_Brush, _Antialias, _Dashes, _Fill_rule, _Line_cap, _Line_join, _Line_width, _Miter_limit, _Compositing_operator, _Current_path, _Immediate_path, _Transform_matrix, _Font_face, _Font_matrix, _Font_options));
+ _Saved_state.push(make_tuple(_Brush, _Antialias, _Dashes, _Fill_rule, _Line_cap, _Line_join, _Line_width, _Miter_limit, _Compositing_operator, _Current_path, _Immediate_path, _Transform_matrix, _Font_resource));
}
void surface::save(error_code& ec) noexcept {
cairo_save(_Context.get());
try {
- _Saved_state.push(make_tuple(_Brush, _Antialias, _Dashes, _Fill_rule, _Line_cap, _Line_join, _Line_width, _Miter_limit, _Compositing_operator, _Current_path, _Immediate_path, _Transform_matrix, _Font_face, _Font_matrix, _Font_options));
+ _Saved_state.push(make_tuple(_Brush, _Antialias, _Dashes, _Fill_rule, _Line_cap, _Line_join, _Line_width, _Miter_limit, _Compositing_operator, _Current_path, _Immediate_path, _Transform_matrix, _Font_resource));
}
catch (const bad_alloc&) {
ec = make_error_code(errc::not_enough_memory);
@@ -442,9 +433,7 @@ void surface::restore() {
_Current_path = move(get<9>(t));
_Immediate_path = move(get<10>(t));
_Transform_matrix = get<11>(t);
- _Font_face = move(get<12>(t));
- _Font_matrix = get<13>(t);
- _Font_options = get<14>(t);
+ _Font_resource = move(get<12>(t));
}
_Saved_state.pop();
@@ -471,9 +460,7 @@ void surface::restore(error_code& ec) noexcept {
_Current_path = move(get<9>(t));
_Immediate_path = move(get<10>(t));
_Transform_matrix = get<11>(t);
- _Font_face = move(get<12>(t));
- _Font_matrix = get<13>(t);
- _Font_options = get<14>(t);
+ _Font_resource = move(get<12>(t));
}
_Saved_state.pop();
@@ -668,10 +655,6 @@ void surface::paint(const ::std::experimental::io2d::brush& b) {
paint();
}
-void surface::paint(const surface& s, const vector_2d& origin, extend e, filter f) {
- paint(s, matrix_2d{ 1.0, 0.0, 0.0, 1.0, origin.x(), origin.y() }, e, f);
-}
-
void surface::paint(const surface& s, const matrix_2d& m, extend e, filter f) {
cairo_set_source_surface(_Context.get(), s.native_handle().csfce, 0.0, 0.0);
auto pat = cairo_get_source(_Context.get());
@@ -704,10 +687,6 @@ void surface::paint(const ::std::experimental::io2d::brush& b, double alpha) {
paint(alpha);
}
-void surface::paint(const surface& s, double alpha, const vector_2d& origin, extend e, filter f) {
- paint(s, alpha, matrix_2d{ 1.0, 0.0, 0.0, 1.0, origin.x(), origin.y() }, e, f);
-}
-
void surface::paint(const surface& s, double alpha, const matrix_2d& m, extend e, filter f) {
cairo_set_source_surface(_Context.get(), s.native_handle().csfce, 0.0, 0.0);
auto pat = cairo_get_source(_Context.get());
@@ -740,10 +719,6 @@ void surface::fill(const ::std::experimental::io2d::brush& b) {
fill();
}
-void surface::fill(const surface& s, const vector_2d& origin, extend e, filter f) {
- fill(s, matrix_2d{ 1.0, 0.0, 0.0, 1.0, origin.x(), origin.y() }, e, f);
-}
-
void surface::fill(const surface& s, const matrix_2d& m, extend e, filter f) {
cairo_set_source_surface(_Context.get(), s.native_handle().csfce, 0.0, 0.0);
auto pat = cairo_get_source(_Context.get());
@@ -779,10 +754,6 @@ void surface::fill_immediate(const ::std::experimental::io2d::brush& b) {
fill_immediate();
}
-void surface::fill_immediate(const surface& s, const vector_2d& origin, extend e, filter f) {
- fill_immediate(s, matrix_2d{ 1.0, 0.0, 0.0, 1.0, origin.x(), origin.y() }, e, f);
-}
-
void surface::fill_immediate(const surface& s, const matrix_2d& m, extend e, filter f) {
auto currPath = _Current_path;
path(experimental::io2d::path(_Immediate_path));
@@ -818,10 +789,6 @@ void surface::stroke(const ::std::experimental::io2d::brush& b) {
stroke();
}
-void surface::stroke(const surface& s, const vector_2d& origin, extend e, filter f) {
- stroke(s, matrix_2d{ 1.0, 0.0, 0.0, 1.0, origin.x(), origin.y() }, e, f);
-}
-
void surface::stroke(const surface& s, const matrix_2d& m, extend e, filter f) {
cairo_set_source_surface(_Context.get(), s.native_handle().csfce, 0.0, 0.0);
auto pat = cairo_get_source(_Context.get());
@@ -857,10 +824,6 @@ void surface::stroke_immediate(const ::std::experimental::io2d::brush& b) {
stroke_immediate();
}
-void surface::stroke_immediate(const surface& s, const vector_2d& origin, extend e, filter f) {
- stroke_immediate(s, matrix_2d{ 1.0, 0.0, 0.0, 1.0, origin.x(), origin.y() }, e, f);
-}
-
void surface::stroke_immediate(const surface& s, const matrix_2d& m, extend e, filter f) {
auto currPath = _Current_path;
path(experimental::io2d::path(_Immediate_path));
@@ -896,10 +859,6 @@ void surface::mask(const ::std::experimental::io2d::brush& maskBrush, const ::st
mask(maskBrush);
}
-void surface::mask(const ::std::experimental::io2d::brush& maskBrush, const surface& s, const vector_2d& origin, extend e, filter f) {
- mask(maskBrush, s, matrix_2d{ 1.0, 0.0, 0.0, 1.0, origin.x(), origin.y() }, e, f);
-}
-
void surface::mask(const ::std::experimental::io2d::brush& maskBrush, const surface& s, const matrix_2d& m, extend e, filter f) {
cairo_set_source_surface(_Context.get(), s.native_handle().csfce, 0.0, 0.0);
auto pat = cairo_get_source(_Context.get());
@@ -911,76 +870,60 @@ void surface::mask(const ::std::experimental::io2d::brush& maskBrush, const surf
cairo_set_source_rgba(_Context.get(), 0.0, 0.0, 0.0, 0.0);
}
-void surface::mask(const surface& maskSurface) {
+void surface::mask(surface& maskSurface, const matrix_2d& maskMatrix, extend maskExtend, filter maskFilter) {
cairo_pattern_set_extend(_Brush.native_handle(), _Extend_to_cairo_extend_t(_Brush.extend()));
cairo_pattern_set_filter(_Brush.native_handle(), _Filter_to_cairo_filter_t(_Brush.filter()));
cairo_matrix_t cPttnMatrix;
cairo_matrix_init(&cPttnMatrix, _Brush.matrix().m00(), _Brush.matrix().m01(), _Brush.matrix().m10(), _Brush.matrix().m11(), _Brush.matrix().m20(), _Brush.matrix().m21());
cairo_pattern_set_matrix(_Brush.native_handle(), &cPttnMatrix);
cairo_set_source(_Context.get(), _Brush.native_handle());
- cairo_mask_surface(_Context.get(), maskSurface.native_handle().csfce, 0.0, 0.0);
-}
-void surface::mask(const surface& maskSurface, const rgba_color& c) {
- solid_color_brush_factory factory(c);
- brush(experimental::io2d::brush(factory));
- mask(maskSurface);
-}
+ surface_brush_factory sbf(maskSurface);
+ experimental::io2d::brush maskBrush(sbf);
+ maskBrush.matrix(maskMatrix);
+ maskBrush.extend(maskExtend);
+ maskBrush.filter(maskFilter);
-void surface::mask(const surface& maskSurface, const ::std::experimental::io2d::brush& b) {
- brush(b);
- mask(maskSurface);
+ mask(maskBrush);
}
-void surface::mask(const surface& maskSurface, const surface& s, const vector_2d& origin, extend e, filter f) {
- mask(maskSurface, s, matrix_2d{ 1.0, 0.0, 0.0, 1.0, origin.x(), origin.y() }, e, f);
-}
+void surface::mask(surface& maskSurface, const rgba_color& c, const matrix_2d& maskMatrix, extend maskExtend, filter maskFilter) {
+ surface_brush_factory sbf(maskSurface);
+ experimental::io2d::brush maskBrush(sbf);
+ maskBrush.matrix(maskMatrix);
+ maskBrush.extend(maskExtend);
+ maskBrush.filter(maskFilter);
-void surface::mask(const surface& maskSurface, const surface& s, const matrix_2d& m, extend e, filter f) {
- cairo_set_source_surface(_Context.get(), s.native_handle().csfce, 0.0, 0.0);
- auto pat = cairo_get_source(_Context.get());
- cairo_pattern_set_extend(pat, _Extend_to_cairo_extend_t(e));
- cairo_pattern_set_filter(pat, _Filter_to_cairo_filter_t(f));
- cairo_matrix_t cmat{ m.m00(), m.m01(), m.m10(), m.m11(), m.m20(), m.m21() };
- cairo_pattern_set_matrix(pat, &cmat);
- cairo_mask_surface(_Context.get(), maskSurface.native_handle().csfce, 0.0, 0.0);
- cairo_set_source_rgba(_Context.get(), 0.0, 0.0, 0.0, 0.0);
+ mask(maskBrush);
+ mask(maskBrush, c);
}
-void surface::mask(const surface& maskSurface, const vector_2d& maskOrigin) {
- cairo_pattern_set_extend(_Brush.native_handle(), _Extend_to_cairo_extend_t(_Brush.extend()));
- cairo_pattern_set_filter(_Brush.native_handle(), _Filter_to_cairo_filter_t(_Brush.filter()));
- cairo_matrix_t cPttnMatrix;
- cairo_matrix_init(&cPttnMatrix, _Brush.matrix().m00(), _Brush.matrix().m01(), _Brush.matrix().m10(), _Brush.matrix().m11(), _Brush.matrix().m20(), _Brush.matrix().m21());
- cairo_pattern_set_matrix(_Brush.native_handle(), &cPttnMatrix);
- cairo_set_source(_Context.get(), _Brush.native_handle());
- cairo_mask_surface(_Context.get(), maskSurface.native_handle().csfce, maskOrigin.x(), maskOrigin.y());
-}
+void surface::mask(surface& maskSurface, const ::std::experimental::io2d::brush& b, const matrix_2d& maskMatrix, extend maskExtend, filter maskFilter) {
+ surface_brush_factory sbf(maskSurface);
+ experimental::io2d::brush maskBrush(sbf);
+ maskBrush.matrix(maskMatrix);
+ maskBrush.extend(maskExtend);
+ maskBrush.filter(maskFilter);
-void surface::mask(const surface& maskSurface, const vector_2d& maskOrigin, const rgba_color& c) {
- solid_color_brush_factory factory(c);
- brush(experimental::io2d::brush(factory));
- mask(maskSurface, maskOrigin);
+ mask(maskBrush, b);
}
-void surface::mask(const surface& maskSurface, const vector_2d& maskOrigin, const ::std::experimental::io2d::brush& b) {
- brush(b);
- mask(maskSurface, maskOrigin);
-}
+void surface::mask(surface& maskSurface, const surface& s, const matrix_2d& maskMatrix, const matrix_2d& m, extend maskExtend, extend e, filter maskFilter, filter f) {
+ //cairo_set_source_surface(_Context.get(), s.native_handle().csfce, 0.0, 0.0);
+ //auto pat = cairo_get_source(_Context.get());
+ //cairo_pattern_set_extend(pat, _Extend_to_cairo_extend_t(e));
+ //cairo_pattern_set_filter(pat, _Filter_to_cairo_filter_t(f));
+ //cairo_matrix_t cmat{ m.m00(), m.m01(), m.m10(), m.m11(), m.m20(), m.m21() };
+ //cairo_pattern_set_matrix(pat, &cmat);
+ //cairo_mask_surface(_Context.get(), maskSurface.native_handle().csfce, 0.0, 0.0);
+ //cairo_set_source_rgba(_Context.get(), 0.0, 0.0, 0.0, 0.0);
+ surface_brush_factory sbf(maskSurface);
+ experimental::io2d::brush maskBrush(sbf);
+ maskBrush.matrix(maskMatrix);
+ maskBrush.extend(maskExtend);
+ maskBrush.filter(maskFilter);
-void surface::mask(const surface& maskSurface, const vector_2d& maskOrigin, const surface& s, const vector_2d& origin, extend e, filter f) {
- mask(maskSurface, maskOrigin, s, matrix_2d{ 1.0, 0.0, 0.0, 1.0, origin.x(), origin.y() }, e, f);
-}
-
-void surface::mask(const surface& maskSurface, const vector_2d& maskOrigin, const surface& s, const matrix_2d& m, extend e, filter f) {
- cairo_set_source_surface(_Context.get(), s.native_handle().csfce, 0.0, 0.0);
- auto pat = cairo_get_source(_Context.get());
- cairo_pattern_set_extend(pat, _Extend_to_cairo_extend_t(e));
- cairo_pattern_set_filter(pat, _Filter_to_cairo_filter_t(f));
- cairo_matrix_t cmat{ m.m00(), m.m01(), m.m10(), m.m11(), m.m20(), m.m21() };
- cairo_pattern_set_matrix(pat, &cmat);
- cairo_mask_surface(_Context.get(), maskSurface.native_handle().csfce, maskOrigin.x(), maskOrigin.y());
- cairo_set_source_rgba(_Context.get(), 0.0, 0.0, 0.0, 0.0);
+ mask(maskBrush, s, m, e, f);
}
void surface::mask_immediate(const ::std::experimental::io2d::brush& maskBrush) {
@@ -991,6 +934,12 @@ void surface::mask_immediate(const ::std::experimental::io2d::brush& maskBrush)
cairo_matrix_t cPttnMatrix;
cairo_matrix_init(&cPttnMatrix, _Brush.matrix().m00(), _Brush.matrix().m01(), _Brush.matrix().m10(), _Brush.matrix().m11(), _Brush.matrix().m20(), _Brush.matrix().m21());
cairo_pattern_set_matrix(_Brush.native_handle(), &cPttnMatrix);
+
+ cairo_pattern_set_extend(maskBrush.native_handle(), _Extend_to_cairo_extend_t(maskBrush.extend()));
+ cairo_pattern_set_filter(maskBrush.native_handle(), _Filter_to_cairo_filter_t(maskBrush.filter()));
+ cairo_matrix_init(&cPttnMatrix, maskBrush.matrix().m00(), maskBrush.matrix().m01(), maskBrush.matrix().m10(), maskBrush.matrix().m11(), maskBrush.matrix().m20(), maskBrush.matrix().m21());
+ cairo_pattern_set_matrix(maskBrush.native_handle(), &cPttnMatrix);
+
cairo_set_source(_Context.get(), _Brush.native_handle());
cairo_mask(_Context.get(), maskBrush.native_handle());
path(currPath);
@@ -999,16 +948,12 @@ void surface::mask_immediate(const ::std::experimental::io2d::brush& maskBrush)
void surface::mask_immediate(const ::std::experimental::io2d::brush& maskBrush, const rgba_color& c) {
solid_color_brush_factory factory(c);
brush(experimental::io2d::brush(factory));
- mask(maskBrush);
+ mask_immediate(maskBrush);
}
void surface::mask_immediate(const ::std::experimental::io2d::brush& maskBrush, const ::std::experimental::io2d::brush& b) {
brush(b);
- mask(maskBrush);
-}
-
-void surface::mask_immediate(const ::std::experimental::io2d::brush& maskBrush, const surface& s, const vector_2d& origin, extend e, filter f) {
- mask_immediate(maskBrush, s, matrix_2d{ 1.0, 0.0, 0.0, 1.0, origin.x(), origin.y() }, e, f);
+ mask_immediate(maskBrush);
}
void surface::mask_immediate(const ::std::experimental::io2d::brush& maskBrush, const surface& s, const matrix_2d& m, extend e, filter f) {
@@ -1020,134 +965,146 @@ void surface::mask_immediate(const ::std::experimental::io2d::brush& maskBrush,
cairo_pattern_set_filter(pat, _Filter_to_cairo_filter_t(f));
cairo_matrix_t cmat{ m.m00(), m.m01(), m.m10(), m.m11(), m.m20(), m.m21() };
cairo_pattern_set_matrix(pat, &cmat);
+
+ cairo_pattern_set_extend(maskBrush.native_handle(), _Extend_to_cairo_extend_t(maskBrush.extend()));
+ cairo_pattern_set_filter(maskBrush.native_handle(), _Filter_to_cairo_filter_t(maskBrush.filter()));
+ cairo_matrix_init(&cmat, maskBrush.matrix().m00(), maskBrush.matrix().m01(), maskBrush.matrix().m10(), maskBrush.matrix().m11(), maskBrush.matrix().m20(), maskBrush.matrix().m21());
+ cairo_pattern_set_matrix(maskBrush.native_handle(), &cmat);
+
cairo_mask(_Context.get(), maskBrush.native_handle());
cairo_set_source_rgba(_Context.get(), 0.0, 0.0, 0.0, 0.0);
path(currPath);
}
-void surface::mask_immediate(const surface& maskSurface) {
- auto currPath = _Current_path;
- path(experimental::io2d::path(_Immediate_path));
- cairo_pattern_set_extend(_Brush.native_handle(), _Extend_to_cairo_extend_t(_Brush.extend()));
- cairo_pattern_set_filter(_Brush.native_handle(), _Filter_to_cairo_filter_t(_Brush.filter()));
- cairo_matrix_t cPttnMatrix;
- cairo_matrix_init(&cPttnMatrix, _Brush.matrix().m00(), _Brush.matrix().m01(), _Brush.matrix().m10(), _Brush.matrix().m11(), _Brush.matrix().m20(), _Brush.matrix().m21());
- cairo_pattern_set_matrix(_Brush.native_handle(), &cPttnMatrix);
- cairo_set_source(_Context.get(), _Brush.native_handle());
- cairo_mask_surface(_Context.get(), maskSurface.native_handle().csfce, 0.0, 0.0);
- path(currPath);
-}
+void surface::mask_immediate(surface& maskSurface, const matrix_2d& maskMatrix, extend maskExtend, filter maskFilter) {
+ //auto currPath = _Current_path;
+ //path(experimental::io2d::path(_Immediate_path));
+ //cairo_pattern_set_extend(_Brush.native_handle(), _Extend_to_cairo_extend_t(_Brush.extend()));
+ //cairo_pattern_set_filter(_Brush.native_handle(), _Filter_to_cairo_filter_t(_Brush.filter()));
+ //cairo_matrix_t cPttnMatrix;
+ //cairo_matrix_init(&cPttnMatrix, _Brush.matrix().m00(), _Brush.matrix().m01(), _Brush.matrix().m10(), _Brush.matrix().m11(), _Brush.matrix().m20(), _Brush.matrix().m21());
+ //cairo_pattern_set_matrix(_Brush.native_handle(), &cPttnMatrix);
+ //cairo_set_source(_Context.get(), _Brush.native_handle());
+ //cairo_mask_surface(_Context.get(), maskSurface.native_handle().csfce, 0.0, 0.0);
+ //path(currPath);
+ surface_brush_factory sbf(maskSurface);
+ experimental::io2d::brush maskBrush(sbf);
+ maskBrush.matrix(maskMatrix);
+ maskBrush.extend(maskExtend);
+ maskBrush.filter(maskFilter);
-void surface::mask_immediate(const surface& maskSurface, const rgba_color& c) {
- solid_color_brush_factory factory(c);
- brush(experimental::io2d::brush(factory));
- mask_immediate(maskSurface);
+ mask_immediate(maskBrush);
}
-void surface::mask_immediate(const surface& maskSurface, const ::std::experimental::io2d::brush& b) {
- brush(b);
- mask_immediate(maskSurface);
+void surface::mask_immediate(surface& maskSurface, const rgba_color& c, const matrix_2d& maskMatrix, extend maskExtend, filter maskFilter) {
+ surface_brush_factory sbf(maskSurface);
+ experimental::io2d::brush maskBrush(sbf);
+ maskBrush.matrix(maskMatrix);
+ maskBrush.extend(maskExtend);
+ maskBrush.filter(maskFilter);
+
+ mask_immediate(maskBrush, c);
}
-void surface::mask_immediate(const surface& maskSurface, const surface& s, const vector_2d& origin, extend e, filter f) {
- mask_immediate(maskSurface, s, matrix_2d{ 1.0, 0.0, 0.0, 1.0, origin.x(), origin.y() }, e, f);
+void surface::mask_immediate(surface& maskSurface, const ::std::experimental::io2d::brush& b, const matrix_2d& maskMatrix, extend maskExtend, filter maskFilter) {
+ surface_brush_factory sbf(maskSurface);
+ experimental::io2d::brush maskBrush(sbf);
+ maskBrush.matrix(maskMatrix);
+ maskBrush.extend(maskExtend);
+ maskBrush.filter(maskFilter);
+
+ mask_immediate(maskBrush, b);
}
-void surface::mask_immediate(const surface& maskSurface, const surface& s, const matrix_2d& m, extend e, filter f) {
- auto currPath = _Current_path;
- path(experimental::io2d::path(_Immediate_path));
- cairo_set_source_surface(_Context.get(), s.native_handle().csfce, 0.0, 0.0);
- auto pat = cairo_get_source(_Context.get());
- cairo_pattern_set_extend(pat, _Extend_to_cairo_extend_t(e));
- cairo_pattern_set_filter(pat, _Filter_to_cairo_filter_t(f));
- cairo_matrix_t cmat{ m.m00(), m.m01(), m.m10(), m.m11(), m.m20(), m.m21() };
- cairo_pattern_set_matrix(pat, &cmat);
- cairo_mask_surface(_Context.get(), maskSurface.native_handle().csfce, 0.0, 0.0);
- cairo_set_source_rgba(_Context.get(), 0.0, 0.0, 0.0, 0.0);
+void surface::mask_immediate(surface& maskSurface, const surface& s, const matrix_2d& maskMatrix, const matrix_2d& m, extend maskExtend, extend e, filter maskFilter, filter f) {
+ //auto currPath = _Current_path;
+ //path(experimental::io2d::path(_Immediate_path));
+ //cairo_set_source_surface(_Context.get(), s.native_handle().csfce, 0.0, 0.0);
+ //auto pat = cairo_get_source(_Context.get());
+ //cairo_pattern_set_extend(pat, _Extend_to_cairo_extend_t(e));
+ //cairo_pattern_set_filter(pat, _Filter_to_cairo_filter_t(f));
+ //cairo_matrix_t cmat{ m.m00(), m.m01(), m.m10(), m.m11(), m.m20(), m.m21() };
+ //cairo_pattern_set_matrix(pat, &cmat);
+ //cairo_mask_surface(_Context.get(), maskSurface.native_handle().csfce, 0.0, 0.0);
+ //cairo_set_source_rgba(_Context.get(), 0.0, 0.0, 0.0, 0.0);
+ surface_brush_factory sbf(maskSurface);
+ experimental::io2d::brush maskBrush(sbf);
+ maskBrush.matrix(maskMatrix);
+ maskBrush.extend(maskExtend);
+ maskBrush.filter(maskFilter);
+
+ mask_immediate(maskBrush, s, m, e, f);
}
-void surface::mask_immediate(const surface& maskSurface, const vector_2d& maskOrigin) {
- auto currPath = _Current_path;
- path(experimental::io2d::path(_Immediate_path));
+vector_2d surface::render_text(const string& utf8, const vector_2d& position) {
+ cairo_new_path(_Context.get());
+ cairo_move_to(_Context.get(), position.x(), position.y());
cairo_pattern_set_extend(_Brush.native_handle(), _Extend_to_cairo_extend_t(_Brush.extend()));
cairo_pattern_set_filter(_Brush.native_handle(), _Filter_to_cairo_filter_t(_Brush.filter()));
cairo_matrix_t cPttnMatrix;
cairo_matrix_init(&cPttnMatrix, _Brush.matrix().m00(), _Brush.matrix().m01(), _Brush.matrix().m10(), _Brush.matrix().m11(), _Brush.matrix().m20(), _Brush.matrix().m21());
cairo_pattern_set_matrix(_Brush.native_handle(), &cPttnMatrix);
cairo_set_source(_Context.get(), _Brush.native_handle());
- cairo_mask_surface(_Context.get(), maskSurface.native_handle().csfce, maskOrigin.x(), maskOrigin.y());
- path(currPath);
+ cairo_show_text(_Context.get(), utf8.c_str());
+ double x, y;
+ cairo_get_current_point(_Context.get(), &x, &y);
+ path(_Current_path);
+ return vector_2d{ x, y };
}
-void surface::mask_immediate(const surface& maskSurface, const vector_2d& maskOrigin, const rgba_color& c) {
+vector_2d surface::render_text(const string& utf8, const vector_2d& position, const rgba_color& c) {
solid_color_brush_factory factory(c);
brush(experimental::io2d::brush(factory));
- mask_immediate(maskSurface, maskOrigin);
+ return render_text(utf8, position);
}
-void surface::mask_immediate(const surface& maskSurface, const vector_2d& maskOrigin, const ::std::experimental::io2d::brush& b) {
+vector_2d surface::render_text(const string& utf8, const vector_2d& position, const ::std::experimental::io2d::brush& b) {
brush(b);
- mask_immediate(maskSurface, maskOrigin);
-}
-
-void surface::mask_immediate(const surface& maskSurface, const vector_2d& maskOrigin, const surface& s, const vector_2d& origin, extend e, filter f) {
- mask_immediate(maskSurface, maskOrigin, s, matrix_2d{ 1.0, 0.0, 0.0, 1.0, origin.x(), origin.y() }, e, f);
+ return render_text(utf8, position);
}
-void surface::mask_immediate(const surface& maskSurface, const vector_2d& maskOrigin, const surface& s, const matrix_2d& m, extend e, filter f) {
- auto currPath = _Current_path;
- path(experimental::io2d::path(_Immediate_path));
+vector_2d surface::render_text(const string& utf8, const vector_2d& position, const surface& s, const matrix_2d& m, extend e, filter f) {
cairo_set_source_surface(_Context.get(), s.native_handle().csfce, 0.0, 0.0);
auto pat = cairo_get_source(_Context.get());
cairo_pattern_set_extend(pat, _Extend_to_cairo_extend_t(e));
cairo_pattern_set_filter(pat, _Filter_to_cairo_filter_t(f));
cairo_matrix_t cmat{ m.m00(), m.m01(), m.m10(), m.m11(), m.m20(), m.m21() };
cairo_pattern_set_matrix(pat, &cmat);
- cairo_mask_surface(_Context.get(), maskSurface.native_handle().csfce, maskOrigin.x(), maskOrigin.y());
+ auto result = render_text(utf8, position);
cairo_set_source_rgba(_Context.get(), 0.0, 0.0, 0.0, 0.0);
+ return result;
}
-vector_2d surface::render_text(const string& utf8, const vector_2d& position) {
- cairo_new_path(_Context.get());
- cairo_move_to(_Context.get(), position.x(), position.y());
+void surface::render_glyph_run(const glyph_run& gr) {
cairo_pattern_set_extend(_Brush.native_handle(), _Extend_to_cairo_extend_t(_Brush.extend()));
cairo_pattern_set_filter(_Brush.native_handle(), _Filter_to_cairo_filter_t(_Brush.filter()));
cairo_matrix_t cPttnMatrix;
cairo_matrix_init(&cPttnMatrix, _Brush.matrix().m00(), _Brush.matrix().m01(), _Brush.matrix().m10(), _Brush.matrix().m11(), _Brush.matrix().m20(), _Brush.matrix().m21());
cairo_pattern_set_matrix(_Brush.native_handle(), &cPttnMatrix);
cairo_set_source(_Context.get(), _Brush.native_handle());
- cairo_show_text(_Context.get(), utf8.c_str());
- double x, y;
- cairo_get_current_point(_Context.get(), &x, &y);
- path(_Current_path);
- return vector_2d{ x, y };
+ cairo_show_text_glyphs(_Context.get(), gr.original_text().c_str(), static_cast(gr.original_text().length()), gr._Cairo_glyphs.get(), static_cast(gr.glyphs().size()), gr._Cairo_text_clusters.get(), static_cast(gr.clusters().size()), gr._Text_cluster_flags);
}
-vector_2d surface::render_text(const string& utf8, const vector_2d& position, const rgba_color& c) {
+void surface::render_glyph_run(const glyph_run& gr, const rgba_color& c) {
solid_color_brush_factory factory(c);
brush(experimental::io2d::brush(factory));
- return render_text(utf8, position);
+ render_glyph_run(gr);
}
-vector_2d surface::render_text(const string& utf8, const vector_2d& position, const ::std::experimental::io2d::brush& b) {
+void surface::render_glyph_run(const glyph_run& gr, const ::std::experimental::io2d::brush& b) {
brush(b);
- return render_text(utf8, position);
-}
-
-vector_2d surface::render_text(const string& utf8, const vector_2d& position, const surface& s, const vector_2d& origin, extend e, filter f) {
- return render_text(utf8, position, s, matrix_2d{ 1.0, 0.0, 0.0, 1.0, origin.x(), origin.y() }, e, f);
+ render_glyph_run(gr);
}
-vector_2d surface::render_text(const string& utf8, const vector_2d& position, const surface& s, const matrix_2d& m, extend e, filter f) {
+void surface::render_glyph_run(const glyph_run& gr, const surface& s, const matrix_2d& m, extend e, filter f) {
cairo_set_source_surface(_Context.get(), s.native_handle().csfce, 0.0, 0.0);
auto pat = cairo_get_source(_Context.get());
cairo_pattern_set_extend(pat, _Extend_to_cairo_extend_t(e));
cairo_pattern_set_filter(pat, _Filter_to_cairo_filter_t(f));
cairo_matrix_t cmat{ m.m00(), m.m01(), m.m10(), m.m11(), m.m20(), m.m21() };
cairo_pattern_set_matrix(pat, &cmat);
- auto result = render_text(utf8, position);
+ render_glyph_run(gr);
cairo_set_source_rgba(_Context.get(), 0.0, 0.0, 0.0, 0.0);
- return result;
}
void surface::matrix(const matrix_2d& m) {
@@ -1175,70 +1132,14 @@ void surface::matrix(const matrix_2d& m, error_code& ec) noexcept {
ec.clear();
}
-void surface::font_face(const string& family, font_slant slant, font_weight weight) {
- cairo_select_font_face(_Context.get(), family.c_str(), _Font_slant_to_cairo_font_slant_t(slant), _Font_weight_to_cairo_font_weight_t(weight));
-}
-
-void surface::font_size(double size) {
- if (size <= 0.0) {
- _Throw_if_failed_cairo_status_t(CAIRO_STATUS_INVALID_SIZE);
- }
- cairo_set_font_size(_Context.get(), size);
-}
-
-void surface::font_size(double size, error_code& ec) noexcept {
- if (size <= 0.0) {
- ec = _Cairo_status_t_to_std_error_code(CAIRO_STATUS_INVALID_SIZE);
- return;
- }
- cairo_set_font_size(_Context.get(), size);
- ec.clear();
-}
-
-void surface::font_matrix(const matrix_2d& m) {
- auto det = m.determinant();
- if (det == 0.0) {
- _Throw_if_failed_cairo_status_t(CAIRO_STATUS_INVALID_MATRIX);
- }
- cairo_matrix_t cm{ m.m00(), m.m01(), m.m10(), m.m11(), m.m20(), m.m21() };
- cairo_set_font_matrix(_Context.get(), &cm);
-}
-
-void surface::font_matrix(const matrix_2d& m, error_code& ec) noexcept {
- auto det = m.determinant(ec);
- if (static_cast(ec)) {
- return;
- }
- if (det == 0.0) {
- ec = _Cairo_status_t_to_std_error_code(CAIRO_STATUS_INVALID_MATRIX);
- return;
- }
- cairo_matrix_t cm{ m.m00(), m.m01(), m.m10(), m.m11(), m.m20(), m.m21() };
- cairo_set_font_matrix(_Context.get(), &cm);
- ec.clear();
-}
-
-void surface::font_options(const ::std::experimental::io2d::font_options& options) noexcept {
- cairo_font_options_set_antialias(_Native_font_options.get(), _Antialias_to_cairo_antialias_t(options.antialias()));
- cairo_font_options_set_subpixel_order(_Native_font_options.get(), _Subpixel_order_to_cairo_subpixel_order_t(options.subpixel_order()));
- cairo_set_font_options(_Context.get(), _Native_font_options.get());
+void surface::font_resource(const experimental::io2d::font_resource& f) noexcept {
+ _Font_resource = f;
+ cairo_set_scaled_font(_Context.get(), f._Scaled_font.get());
}
-void surface::font_face(const ::std::experimental::io2d::font_face& font_face) {
- _Font_face = make_shared(font_face);
- cairo_set_font_face(_Context.get(), font_face.native_handle());
-}
-
-void surface::font_face(const::std::experimental::io2d::font_face & f, ::std::error_code & ec) noexcept {
- try {
- _Font_face = make_shared(f);
- }
- catch (const bad_alloc&) {
- ec = make_error_code(errc::not_enough_memory);
- return;
- }
- cairo_set_font_face(_Context.get(), f.native_handle());
- ec.clear();
+void surface::font_resource(const ::std::string& family, double size, font_slant sl, font_weight w) {
+ _Font_resource = experimental::io2d::font_resource(font_resource_factory(family, sl, w, matrix_2d::init_scale({ size, size })));
+ cairo_set_scaled_font(_Context.get(), _Font_resource._Scaled_font.get());
}
brush surface::brush() const noexcept {
@@ -1561,32 +1462,6 @@ vector_2d surface::surface_to_user_distance(const vector_2d& dpt) const {
return im.transform_distance(dpt);
}
-matrix_2d surface::font_matrix() const noexcept {
- cairo_matrix_t cm{};
- cairo_get_font_matrix(_Context.get(), &cm);
- return{ cm.xx, cm.yx, cm.xy, cm.yy, cm.x0, cm.y0 };
-}
-
-// Note: This deviates from cairo in that we return the values that will actually wind up being used.
-::std::experimental::io2d::font_options surface::font_options() const noexcept {
- ::std::experimental::io2d::font_options fo(::std::experimental::io2d::antialias::default_antialias, ::std::experimental::io2d::subpixel_order::default_subpixel_order);
- unique_ptr up(nullptr, &cairo_font_options_destroy);
- cairo_get_font_options(_Context.get(), up.get());
- _Throw_if_failed_cairo_status_t(cairo_font_options_status(up.get()));
- auto ca = _Cairo_antialias_t_to_antialias(cairo_font_options_get_antialias(up.get()));
- auto cso = _Cairo_subpixel_order_t_to_subpixel_order(cairo_font_options_get_subpixel_order(up.get()));
- cairo_get_font_options(_Context.get(), up.get());
- _Throw_if_failed_cairo_status_t(cairo_font_options_status(up.get()));
-
- return ::std::experimental::io2d::font_options(
- (ca == ::std::experimental::io2d::antialias::default_antialias) ? _Cairo_antialias_t_to_antialias(cairo_font_options_get_antialias(up.get())) : ca,
- (cso == ::std::experimental::io2d::subpixel_order::default_subpixel_order) ? _Cairo_subpixel_order_t_to_subpixel_order(cairo_font_options_get_subpixel_order(up.get())) : cso
- );
-}
-
-::std::experimental::io2d::font_face surface::font_face() const {
- auto ff = cairo_get_font_face(_Context.get());
- _Throw_if_failed_cairo_status_t(cairo_font_face_status(ff));
- // Cairo doesn't increase the font face's reference count when you call cairo_get_font_face so we do it manually.
- return ::std::experimental::io2d::font_face(cairo_font_face_reference(ff));
+experimental::io2d::font_resource surface::font_resource() const noexcept {
+ return _Font_resource;
}
diff --git a/N3888_RefImpl/src/surface_brush_factory.cpp b/io2d/src/surface_brush_factory.cpp
similarity index 100%
rename from N3888_RefImpl/src/surface_brush_factory.cpp
rename to io2d/src/surface_brush_factory.cpp
diff --git a/N3888_RefImpl/src/text_extents.cpp b/io2d/src/text_extents.cpp
similarity index 100%
rename from N3888_RefImpl/src/text_extents.cpp
rename to io2d/src/text_extents.cpp
diff --git a/N3888_RefImpl/src/vector_2d.cpp b/io2d/src/vector_2d.cpp
similarity index 100%
rename from N3888_RefImpl/src/vector_2d.cpp
rename to io2d/src/vector_2d.cpp
diff --git a/libpng16/ANNOUNCE b/libpng16/ANNOUNCE
deleted file mode 100644
index 39fcbd9..0000000
--- a/libpng16/ANNOUNCE
+++ /dev/null
@@ -1,63 +0,0 @@
-
-Libpng 1.6.8beta03 - December 1, 2013
-
-This is not intended to be a public release. It will be replaced
-within a few weeks by a public version or by another test version.
-
-Files available for download:
-
-Source files with LF line endings (for Unix/Linux) and with a
-"configure" script
-
- 1.6.8beta03.tar.xz (LZMA-compressed, recommended)
- 1.6.8beta03.tar.gz
-
-Source files with CRLF line endings (for Windows), without the
-"configure" script
-
- lp168b03.7z (LZMA-compressed, recommended)
- lp168b03.zip
-
-Other information:
-
- 1.6.8beta03-README.txt
- 1.6.8beta03-LICENSE.txt
- Gnupg/*.asc (PGP armored detached signatures)
-
-Changes since the last public release (1.6.7):
-
-Version 1.6.8beta01 [December 1, 2013]
- Changed #ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED in pngpread.c to
- #ifdef PNG_SET_UNKNOWN_CHUNKS_SUPPORTED to be consistent with
- what is in pngpriv.h.
- Moved prototype for png_handle_unknown() in pngpriv.h outside of
- the #ifdef PNG_SET_UNKNOWN_CHUNKS_SUPPORTED/#endif block.
- Added "-Wall" to CFLAGS in contrib/pngminim/*/makefile
- Conditionally compile some unused functions reported by -Wall in pngminim.
- Fixed 'minimal' builds. Various obviously useful minimal configurations
- don't build because of missing contrib/libtests test programs and
- overly complex dependencies in scripts/pnglibconf.dfa. This change
- adds contrib/conftest/*.dfa files that can be used in automatic build
- scripts to ensure that these configurations continue to build.
- Enabled WRITE_INVERT and WRITE_PACK in contrib/pngminim/encoder.
- Fixed pngvalid 'fail' function declaration on the Intel C Compiler.
- This reverts to the previous 'static' implementation and works round
- the 'unused static function' warning by using PNG_UNUSED().
-
-Version 1.6.8beta02 [November 30, 2013]
- Removed or marked PNG_UNUSED some harmless "dead assignments" reported
- by clang scan-build.
- Changed tabs to 3 spaces in png_debug macros and changed '"%s"m'
- to '"%s" m' to improve portability among compilers.
- Changed png_free_default() to free() in pngtest.c
-
-Version 1.6.8beta03 [December 1, 2013]
- Tidied up pngfix inits and fixed pngtest no-write builds.
-
-Send comments/corrections/commendations to png-mng-implement at lists.sf.net
-(subscription required; visit
-https://lists.sourceforge.net/lists/listinfo/png-mng-implement
-to subscribe)
-or to glennrp at users.sourceforge.net
-
-Glenn R-P
diff --git a/libpng16/CHANGES b/libpng16/CHANGES
deleted file mode 100644
index b20a168..0000000
--- a/libpng16/CHANGES
+++ /dev/null
@@ -1,4750 +0,0 @@
-#if 0
-CHANGES - changes for libpng
-
-Version 0.2
- added reader into png.h
- fixed small problems in stub file
-
-Version 0.3
- added pull reader
- split up pngwrite.c to several files
- added pnglib.txt
- added example.c
- cleaned up writer, adding a few new transformations
- fixed some bugs in writer
- interfaced with zlib 0.5
- added K&R support
- added check for 64 KB blocks for 16-bit machines
-
-Version 0.4
- cleaned up code and commented code
- simplified time handling into png_time
- created png_color_16 and png_color_8 to handle color needs
- cleaned up color type defines
- fixed various bugs
- made various names more consistent
- interfaced with zlib 0.71
- cleaned up zTXt reader and writer (using zlib's Reset functions)
- split transformations into pngrtran.c and pngwtran.c
-
-Version 0.5
- interfaced with zlib 0.8
- fixed many reading and writing bugs
- saved using 3 spaces instead of tabs
-
-Version 0.6
- added png_large_malloc() and png_large_free()
- added png_size_t
- cleaned up some compiler warnings
- added png_start_read_image()
-
-Version 0.7
- cleaned up lots of bugs
- finished dithering and other stuff
- added test program
- changed name from pnglib to libpng
-
-Version 0.71 [June, 1995]
- changed pngtest.png for zlib 0.93
- fixed error in libpng.txt and example.c
-
-Version 0.8
- cleaned up some bugs
- added png_set_filler()
- split up pngstub.c into pngmem.c, pngio.c, and pngerror.c
- added #define's to remove unwanted code
- moved png_info_init() to png.c
- added old_size into png_realloc()
- added functions to manually set filtering and compression info
- changed compression parameters based on image type
- optimized filter selection code
- added version info
- changed external functions passing floats to doubles (k&r problems?)
- put all the configurable stuff in pngconf.h
- enabled png_set_shift to work with paletted images on read
- added png_read_update_info() - updates info structure with transformations
-
-Version 0.81 [August, 1995]
- incorporated Tim Wegner's medium model code (thanks, Tim)
-
-Version 0.82 [September, 1995]
- [unspecified changes]
-
-Version 0.85 [December, 1995]
- added more medium model code (almost everything's a far)
- added i/o, error, and memory callback functions
- fixed some bugs (16-bit, 4-bit interlaced, etc.)
- added first run progressive reader (barely tested)
-
-Version 0.86 [January, 1996]
- fixed bugs
- improved documentation
-
-Version 0.87 [January, 1996]
- fixed medium model bugs
- fixed other bugs introduced in 0.85 and 0.86
- added some minor documentation
-
-Version 0.88 [January, 1996]
- fixed progressive bugs
- replaced tabs with spaces
- cleaned up documentation
- added callbacks for read/write and warning/error functions
-
-Version 0.89 [July, 1996]
- Added new initialization API to make libpng work better with shared libs
- we now have png_create_read_struct(), png_create_write_struct(),
- png_create_info_struct(), png_destroy_read_struct(), and
- png_destroy_write_struct() instead of the separate calls to
- malloc and png_read_init(), png_info_init(), and png_write_init()
- Changed warning/error callback functions to fix bug - this means you
- should use the new initialization API if you were using the old
- png_set_message_fn() calls, and that the old API no longer exists
- so that people are aware that they need to change their code
- Changed filter selection API to allow selection of multiple filters
- since it didn't work in previous versions of libpng anyways
- Optimized filter selection code
- Fixed png_set_background() to allow using an arbitrary RGB color for
- paletted images
- Fixed gamma and background correction for paletted images, so
- png_correct_palette is not needed unless you are correcting an
- external palette (you will need to #define PNG_CORRECT_PALETTE_SUPPORTED
- in pngconf.h) - if nobody uses this, it may disappear in the future.
- Fixed bug with Borland 64K memory allocation (Alexander Lehmann)
- Fixed bug in interlace handling (Smarasderagd, I think)
- Added more error checking for writing and image to reduce invalid files
- Separated read and write functions so that they won't both be linked
- into a binary when only reading or writing functionality is used
- New pngtest image also has interlacing and zTXt
- Updated documentation to reflect new API
-
-Version 0.90 [January, 1997]
- Made CRC errors/warnings on critical and ancillary chunks configurable
- libpng will use the zlib CRC routines by (compile-time) default
- Changed DOS small/medium model memory support - needs zlib 1.04 (Tim Wegner)
- Added external C++ wrapper statements to png.h (Gilles Dauphin)
- Allow PNG file to be read when some or all of file signature has already
- been read from the beginning of the stream. ****This affects the size
- of info_struct and invalidates all programs that use a shared libpng****
- Fixed png_filler() declarations
- Fixed? background color conversions
- Fixed order of error function pointers to match documentation
- Current chunk name is now available in png_struct to reduce the number
- of nearly identical error messages (will simplify multi-lingual
- support when available)
- Try to get ready for unknown-chunk callback functions:
- - previously read critical chunks are flagged, so the chunk handling
- routines can determine if the chunk is in the right place
- - all chunk handling routines have the same prototypes, so we will
- be able to handle all chunks via a callback mechanism
- Try to fix Linux "setjmp" buffer size problems
- Removed png_large_malloc, png_large_free, and png_realloc functions.
-
-Version 0.95 [March, 1997]
- Fixed bug in pngwutil.c allocating "up_row" twice and "avg_row" never
- Fixed bug in PNG file signature compares when start != 0
- Changed parameter type of png_set_filler(...filler...) from png_byte
- to png_uint_32
- Added test for MACOS to ensure that both math.h and fp.h are not #included
- Added macros for libpng to be compiled as a Windows DLL (Andreas Kupries)
- Added "packswap" transformation, which changes the endianness of
- packed-pixel bytes (Kevin Bracey)
- Added "strip_alpha" transformation, which removes the alpha channel of
- input images without using it (not necessarily a good idea)
- Added "swap_alpha" transformation, which puts the alpha channel in front
- of the color bytes instead of after
- Removed all implicit variable tests which assume NULL == 0 (I think)
- Changed several variables to "png_size_t" to show 16/32-bit limitations
- Added new pCAL chunk read/write support
- Added experimental filter selection weighting (Greg Roelofs)
- Removed old png_set_rgbx() and png_set_xrgb() functions that have been
- obsolete for about 2 years now (use png_set_filler() instead)
- Added macros to read 16- and 32-bit ints directly from buffer, to be
- used only on those systems that support it (namely PowerPC and 680x0)
- With some testing, this may become the default for MACOS/PPC systems.
- Only calculate CRC on data if we are going to use it
- Added macros for zTXt compression type PNG_zTXt_COMPRESSION_???
- Added macros for simple libpng debugging output selectable at compile time
- Removed PNG_READ_END_MODE in progressive reader (Smarasderagd)
- More description of info_struct in libpng.txt and png.h
- More instructions in example.c
- More chunk types tested in pngtest.c
- Renamed pngrcb.c to pngset.c, and all png_read_ functions to be
- png_set_. We now have corresponding png_get_
- functions in pngget.c to get information in info_ptr. This isolates
- the application from the internal organization of png_info_struct
- (good for shared library implementations).
-
-Version 0.96 [May, 1997]
- Fixed serious bug with < 8bpp images introduced in 0.95
- Fixed 256-color transparency bug (Greg Roelofs)
- Fixed up documentation (Greg Roelofs, Laszlo Nyul)
- Fixed "error" in pngconf.h for Linux setjmp() behavior
- Fixed DOS medium model support (Tim Wegner)
- Fixed png_check_keyword() for case with error in static string text
- Added read of CRC after IEND chunk for embedded PNGs (Laszlo Nyul)
- Added typecasts to quiet compiler errors
- Added more debugging info
-
-Version 0.97 [January, 1998]
- Removed PNG_USE_OWN_CRC capability
- Relocated png_set_crc_action from pngrutil.c to pngrtran.c
- Fixed typecasts of "new_key", etc. (Andreas Dilger)
- Added RFC 1152 [sic] date support
- Fixed bug in gamma handling of 4-bit grayscale
- Added 2-bit grayscale gamma handling (Glenn R-P)
- Added more typecasts. 65536L becomes (png_uint_32)65536L, etc. (Glenn R-P)
- Minor corrections in libpng.txt
- Added simple sRGB support (Glenn R-P)
- Easier conditional compiling, e.g.,
- define PNG_READ/WRITE_NOT_FULLY_SUPPORTED;
- all configurable options can be selected from command-line instead
- of having to edit pngconf.h (Glenn R-P)
- Fixed memory leak in pngwrite.c (free info_ptr->text) (Glenn R-P)
- Added more conditions for png_do_background, to avoid changing
- black pixels to background when a background is supplied and
- no pixels are transparent
- Repaired PNG_NO_STDIO behavior
- Tested NODIV support and made it default behavior (Greg Roelofs)
- Added "-m" option and PNGTEST_DEBUG_MEMORY to pngtest (John Bowler)
- Regularized version numbering scheme and bumped shared-library major
- version number to 2 to avoid problems with libpng 0.89 apps
- (Greg Roelofs)
-
-Version 0.98 [January, 1998]
- Cleaned up some typos in libpng.txt and in code documentation
- Fixed memory leaks in pCAL chunk processing (Glenn R-P and John Bowler)
- Cosmetic change "display_gamma" to "screen_gamma" in pngrtran.c
- Changed recommendation about file_gamma for PC images to .51 from .45,
- in example.c and libpng.txt, added comments to distinguish between
- screen_gamma, viewing_gamma, and display_gamma.
- Changed all references to RFC1152 to read RFC1123 and changed the
- PNG_TIME_RFC1152_SUPPORTED macro to PNG_TIME_RFC1123_SUPPORTED
- Added png_invert_alpha capability (Glenn R-P -- suggestion by Jon Vincent)
- Changed srgb_intent from png_byte to int to avoid compiler bugs
-
-Version 0.99 [January 30, 1998]
- Free info_ptr->text instead of end_info_ptr->text in pngread.c (John Bowler)
- Fixed a longstanding "packswap" bug in pngtrans.c
- Fixed some inconsistencies in pngconf.h that prevented compiling with
- PNG_READ_GAMMA_SUPPORTED and PNG_READ_hIST_SUPPORTED undefined
- Fixed some typos and made other minor rearrangement of libpng.txt (Andreas)
- Changed recommendation about file_gamma for PC images to .50 from .51 in
- example.c and libpng.txt, and changed file_gamma for sRGB images to .45
- Added a number of functions to access information from the png structure
- png_get_image_height(), etc. (Glenn R-P, suggestion by Brad Pettit)
- Added TARGET_MACOS similar to zlib-1.0.8
- Define PNG_ALWAYS_EXTERN when __MWERKS__ && WIN32 are defined
- Added type casting to all png_malloc() function calls
-
-Version 0.99a [January 31, 1998]
- Added type casts and parentheses to all returns that return a value.(Tim W.)
-
-Version 0.99b [February 4, 1998]
- Added type cast png_uint_32 on malloc function calls where needed.
- Changed type of num_hist from png_uint_32 to int (same as num_palette).
- Added checks for rowbytes overflow, in case png_size_t is less than 32 bits.
- Renamed makefile.elf to makefile.lnx.
-
-Version 0.99c [February 7, 1998]
- More type casting. Removed erroneous overflow test in pngmem.c.
- Added png_buffered_memcpy() and png_buffered_memset(), apply them to rowbytes.
- Added UNIX manual pages libpng.3 (incorporating libpng.txt) and png.5.
-
-Version 0.99d [February 11, 1998]
- Renamed "far_to_near()" "png_far_to_near()"
- Revised libpng.3
- Version 99c "buffered" operations didn't work as intended. Replaced them
- with png_memcpy_check() and png_memset_check().
- Added many "if (png_ptr == NULL) return" to quell compiler warnings about
- unused png_ptr, mostly in pngget.c and pngset.c.
- Check for overlength tRNS chunk present when indexed-color PLTE is read.
- Cleaned up spelling errors in libpng.3/libpng.txt
- Corrected a problem with png_get_tRNS() which returned undefined trans array
-
-Version 0.99e [February 28, 1998]
- Corrected png_get_tRNS() again.
- Add parentheses for easier reading of pngget.c, fixed "||" should be "&&".
- Touched up example.c to make more of it compileable, although the entire
- file still can't be compiled (Willem van Schaik)
- Fixed a bug in png_do_shift() (Bryan Tsai)
- Added a space in png.h prototype for png_write_chunk_start()
- Replaced pngtest.png with one created with zlib 1.1.1
- Changed pngtest to report PASS even when file size is different (Jean-loup G.)
- Corrected some logic errors in png_do_invert_alpha() (Chris Patterson)
-
-Version 0.99f [March 5, 1998]
- Corrected a bug in pngpread() introduced in version 99c (Kevin Bracey)
- Moved makefiles into a "scripts" directory, and added INSTALL instruction file
- Added makefile.os2 and pngos2.def (A. Zabolotny) and makefile.s2x (W. Sebok)
- Added pointers to "note on libpng versions" in makefile.lnx and README
- Added row callback feature when reading and writing nonprogressive rows
- and added a test of this feature in pngtest.c
- Added user transform callbacks, with test of the feature in pngtest.c
-
-Version 0.99g [March 6, 1998, morning]
- Minor changes to pngtest.c to suppress compiler warnings.
- Removed "beta" language from documentation.
-
-Version 0.99h [March 6, 1998, evening]
- Minor changes to previous minor changes to pngtest.c
- Changed PNG_READ_NOT_FULLY_SUPPORTED to PNG_READ_TRANSFORMS_NOT_SUPPORTED
- and added PNG_PROGRESSIVE_READ_NOT_SUPPORTED macro
- Added user transform capability
-
-Version 1.00 [March 7, 1998]
- Changed several typedefs in pngrutil.c
- Added makefile.wat (Pawel Mrochen), updated makefile.tc3 (Willem van Schaik)
- Replaced "while(1)" with "for(;;)"
- Added PNGARG() to prototypes in pngtest.c and removed some prototypes
- Updated some of the makefiles (Tom Lane)
- Changed some typedefs (s_start, etc.) in pngrutil.c
- Fixed dimensions of "short_months" array in pngwrite.c
- Replaced ansi2knr.c with the one from jpeg-v6
-
-Version 1.0.0 [March 8, 1998]
- Changed name from 1.00 to 1.0.0 (Adam Costello)
- Added smakefile.ppc (with SCOPTIONS.ppc) for Amiga PPC (Andreas Kleinert)
-
-Version 1.0.0a [March 9, 1998]
- Fixed three bugs in pngrtran.c to make gamma+background handling consistent
- (Greg Roelofs)
- Changed format of the PNG_LIBPNG_VER integer to xyyzz instead of xyz
- for major, minor, and bugfix releases. This is 10001. (Adam Costello,
- Tom Lane)
- Make months range from 1-12 in png_convert_to_rfc1123
-
-Version 1.0.0b [March 13, 1998]
- Quieted compiler complaints about two empty "for" loops in pngrutil.c
- Minor changes to makefile.s2x
- Removed #ifdef/#endif around a png_free() in pngread.c
-
-Version 1.0.1 [March 14, 1998]
- Changed makefile.s2x to reduce security risk of using a relative pathname
- Fixed some typos in the documentation (Greg).
- Fixed a problem with value of "channels" returned by png_read_update_info()
-
-Version 1.0.1a [April 21, 1998]
- Optimized Paeth calculations by replacing abs() function calls with intrinsics
- plus other loop optimizations. Improves avg decoding speed by about 20%.
- Commented out i386istic "align" compiler flags in makefile.lnx.
- Reduced the default warning level in some makefiles, to make them consistent.
- Removed references to IJG and JPEG in the ansi2knr.c copyright statement.
- Fixed a bug in png_do_strip_filler with XXRRGGBB => RRGGBB transformation.
- Added grayscale and 16-bit capability to png_do_read_filler().
- Fixed a bug in pngset.c, introduced in version 0.99c, that sets rowbytes
- too large when writing an image with bit_depth < 8 (Bob Dellaca).
- Corrected some bugs in the experimental weighted filtering heuristics.
- Moved a misplaced pngrutil code block that truncates tRNS if it has more
- than num_palette entries -- test was done before num_palette was defined.
- Fixed a png_convert_to_rfc1123() bug that converts day 31 to 0 (Steve Eddins).
- Changed compiler flags in makefile.wat for better optimization
- (Pawel Mrochen).
-
-Version 1.0.1b [May 2, 1998]
- Relocated png_do_gray_to_rgb() within png_do_read_transformations() (Greg).
- Relocated the png_composite macros from pngrtran.c to png.h (Greg).
- Added makefile.sco (contributed by Mike Hopkirk).
- Fixed two bugs (missing definitions of "istop") introduced in libpng-1.0.1a.
- Fixed a bug in pngrtran.c that would set channels=5 under some circumstances.
- More work on the Paeth-filtering, achieving imperceptible speedup
- (A Kleinert).
- More work on loop optimization which may help when compiled with C++
- compilers.
- Added warnings when people try to use transforms they've defined out.
- Collapsed 4 "i" and "c" loops into single "i" loops in pngrtran and pngwtran.
- Revised paragraph about png_set_expand() in libpng.txt and libpng.3 (Greg)
-
-Version 1.0.1c [May 11, 1998]
- Fixed a bug in pngrtran.c (introduced in libpng-1.0.1a) where the masks for
- filler bytes should have been 0xff instead of 0xf.
- Added max_pixel_depth=32 in pngrutil.c when using FILLER with palette images.
- Moved PNG_WRITE_WEIGHTED_FILTER_SUPPORTED and PNG_WRITE_FLUSH_SUPPORTED
- out of the PNG_WRITE_TRANSFORMS_NOT_SUPPORTED block of pngconf.h
- Added "PNG_NO_WRITE_TRANSFORMS" etc., as alternatives for *_NOT_SUPPORTED,
- for consistency, in pngconf.h
- Added individual "ifndef PNG_NO_[CAPABILITY]" in pngconf.h to make it easier
- to remove unwanted capabilities via the compile line
- Made some corrections to grammar (which, it's) in documentation (Greg).
- Corrected example.c, use of row_pointers in png_write_image().
-
-Version 1.0.1d [May 24, 1998]
- Corrected several statements that used side effects illegally in pngrutil.c
- and pngtrans.c, that were introduced in version 1.0.1b
- Revised png_read_rows() to avoid repeated if-testing for NULL (A Kleinert)
- More corrections to example.c, use of row_pointers in png_write_image()
- and png_read_rows().
- Added pngdll.mak and pngdef.pas to scripts directory, contributed by
- Bob Dellaca, to make a png32bd.dll with Borland C++ 4.5
- Fixed error in example.c with png_set_text: num_text is 3, not 2 (Guido V.)
- Changed several loops from count-down to count-up, for consistency.
-
-Version 1.0.1e [June 6, 1998]
- Revised libpng.txt and libpng.3 description of png_set_read|write_fn(), and
- added warnings when people try to set png_read_fn and png_write_fn in
- the same structure.
- Added a test such that png_do_gamma will be done when num_trans==0
- for truecolor images that have defined a background. This corrects an
- error that was introduced in libpng-0.90 that can cause gamma processing
- to be skipped.
- Added tests in png.h to include "trans" and "trans_values" in structures
- when PNG_READ_BACKGROUND_SUPPORTED or PNG_READ_EXPAND_SUPPORTED is defined.
- Add png_free(png_ptr->time_buffer) in png_destroy_read_struct()
- Moved png_convert_to_rfc_1123() from pngwrite.c to png.c
- Added capability for user-provided malloc_fn() and free_fn() functions,
- and revised pngtest.c to demonstrate their use, replacing the
- PNGTEST_DEBUG_MEM feature.
- Added makefile.w32, for Microsoft C++ 4.0 and later (Tim Wegner).
-
-Version 1.0.2 [June 14, 1998]
- Fixed two bugs in makefile.bor .
-
-Version 1.0.2a [December 30, 1998]
- Replaced and extended code that was removed from png_set_filler() in 1.0.1a.
- Fixed a bug in png_do_filler() that made it fail to write filler bytes in
- the left-most pixel of each row (Kevin Bracey).
- Changed "static pngcharp tIME_string" to "static char tIME_string[30]"
- in pngtest.c (Duncan Simpson).
- Fixed a bug in pngtest.c that caused pngtest to try to write a tIME chunk
- even when no tIME chunk was present in the source file.
- Fixed a problem in pngrutil.c: gray_to_rgb didn't always work with 16-bit.
- Fixed a problem in png_read_push_finish_row(), which would not skip some
- passes that it should skip, for images that are less than 3 pixels high.
- Interchanged the order of calls to png_do_swap() and png_do_shift()
- in pngwtran.c (John Cromer).
- Added #ifdef PNG_DEBUG/#endif surrounding use of PNG_DEBUG in png.h .
- Changed "bad adaptive filter type" from error to warning in pngrutil.c .
- Fixed a documentation error about default filtering with 8-bit indexed-color.
- Separated the PNG_NO_STDIO macro into PNG_NO_STDIO and PNG_NO_CONSOLE_IO
- (L. Peter Deutsch).
- Added png_set_rgb_to_gray() and png_get_rgb_to_gray_status() functions.
- Added png_get_copyright() and png_get_header_version() functions.
- Revised comments on png_set_progressive_read_fn() in libpng.txt and example.c
- Added information about debugging in libpng.txt and libpng.3 .
- Changed "ln -sf" to "ln -s -f" in makefile.s2x, makefile.lnx, and
- makefile.sco.
- Removed lines after Dynamic Dependencies" in makefile.aco .
- Revised makefile.dec to make a shared library (Jeremie Petit).
- Removed trailing blanks from all files.
-
-Version 1.0.2a [January 6, 1999]
- Removed misplaced #endif and #ifdef PNG_NO_EXTERN near the end of png.h
- Added "if" tests to silence complaints about unused png_ptr in png.h and png.c
- Changed "check_if_png" function in example.c to return true (nonzero) if PNG.
- Changed libpng.txt to demonstrate png_sig_cmp() instead of png_check_sig()
- which is obsolete.
-
-Version 1.0.3 [January 14, 1999]
- Added makefile.hux, for Hewlett Packard HPUX 10.20 and 11.00 (Jim Rice)
- Added a statement of Y2K compliance in png.h, libpng.3, and Y2KINFO.
-
-Version 1.0.3a [August 12, 1999]
- Added check for PNG_READ_INTERLACE_SUPPORTED in pngread.c; issue a warning
- if an attempt is made to read an interlaced image when it's not supported.
- Added check if png_ptr->trans is defined before freeing it in pngread.c
- Modified the Y2K statement to include versions back to version 0.71
- Fixed a bug in the check for valid IHDR bit_depth/color_types in pngrutil.c
- Modified makefile.wat (added -zp8 flag, ".symbolic", changed some comments)
- Replaced leading blanks with tab characters in makefile.hux
- Changed "dworkin.wustl.edu" to "ccrc.wustl.edu" in various documents.
- Changed (float)red and (float)green to (double)red, (double)green
- in png_set_rgb_to_gray() to avoid "promotion" problems in AIX.
- Fixed a bug in pngconf.h that omitted when PNG_DEBUG==0 (K Bracey).
- Reformatted libpng.3 and libpngpf.3 with proper fonts (script by J. vanZandt).
- Updated documentation to refer to the PNG-1.2 specification.
- Removed ansi2knr.c and left pointers to the latest source for ansi2knr.c
- in makefile.knr, INSTALL, and README (L. Peter Deutsch)
- Fixed bugs in calculation of the length of rowbytes when adding alpha
- channels to 16-bit images, in pngrtran.c (Chris Nokleberg)
- Added function png_set_user_transform_info() to store user_transform_ptr,
- user_depth, and user_channels into the png_struct, and a function
- png_get_user_transform_ptr() to retrieve the pointer (Chris Nokleberg)
- Added function png_set_empty_plte_permitted() to make libpng useable
- in MNG applications.
- Corrected the typedef for png_free_ptr in png.h (Jesse Jones).
- Correct gamma with srgb is 45455 instead of 45000 in pngrutil.c, to be
- consistent with PNG-1.2, and allow variance of 500 before complaining.
- Added assembler code contributed by Intel in file pngvcrd.c and modified
- makefile.w32 to use it (Nirav Chhatrapati, INTEL Corporation,
- Gilles Vollant)
- Changed "ln -s -f" to "ln -f -s" in the makefiles to make Solaris happy.
- Added some aliases for png_set_expand() in pngrtran.c, namely
- png_set_expand_PLTE(), png_set_expand_depth(), and png_set_expand_tRNS()
- (Greg Roelofs, in "PNG: The Definitive Guide").
- Added makefile.beo for BEOS on X86, contributed by Sander Stok.
-
-Version 1.0.3b [August 26, 1999]
- Replaced 2147483647L several places with PNG_MAX_UINT macro, defined in png.h
- Changed leading blanks to tabs in all makefiles.
- Define PNG_USE_PNGVCRD in makefile.w32, to get MMX assembler code.
- Made alternate versions of png_set_expand() in pngrtran.c, namely
- png_set_gray_1_2_4_to_8, png_set_palette_to_rgb, and png_set_tRNS_to_alpha
- (Greg Roelofs, in "PNG: The Definitive Guide"). Deleted the 1.0.3a aliases.
- Relocated start of 'extern "C"' block in png.h so it doesn't include pngconf.h
- Revised calculation of num_blocks in pngmem.c to avoid a potentially
- negative shift distance, whose results are undefined in the C language.
- Added a check in pngset.c to prevent writing multiple tIME chunks.
- Added a check in pngwrite.c to detect invalid small window_bits sizes.
-
-Version 1.0.3d [September 4, 1999]
- Fixed type casting of igamma in pngrutil.c
- Added new png_expand functions to scripts/pngdef.pas and pngos2.def
- Added a demo read_user_transform_fn that examines the row filters in pngtest.c
-
-Version 1.0.4 [September 24, 1999]
- Define PNG_ALWAYS_EXTERN in pngconf.h if __STDC__ is defined
- Delete #define PNG_INTERNAL and include "png.h" from pngasmrd.h
- Made several minor corrections to pngtest.c
- Renamed the makefiles with longer but more user friendly extensions.
- Copied the PNG copyright and license to a separate LICENSE file.
- Revised documentation, png.h, and example.c to remove reference to
- "viewing_gamma" which no longer appears in the PNG specification.
- Revised pngvcrd.c to use MMX code for interlacing only on the final pass.
- Updated pngvcrd.c to use the faster C filter algorithms from libpng-1.0.1a
- Split makefile.win32vc into two versions, makefile.vcawin32 (uses MMX
- assembler code) and makefile.vcwin32 (doesn't).
- Added a CPU timing report to pngtest.c (enabled by defining PNGTEST_TIMING)
- Added a copy of pngnow.png to the distribution.
-
-Version 1.0.4a [September 25, 1999]
- Increase max_pixel_depth in pngrutil.c if a user transform needs it.
- Changed several division operations to right-shifts in pngvcrd.c
-
-Version 1.0.4b [September 30, 1999]
- Added parentheses in line 3732 of pngvcrd.c
- Added a comment in makefile.linux warning about buggy -O3 in pgcc 2.95.1
-
-Version 1.0.4c [October 1, 1999]
- Added a "png_check_version" function in png.c and pngtest.c that will generate
- a helpful compiler error if an old png.h is found in the search path.
- Changed type of png_user_transform_depth|channels from int to png_byte.
-
-Version 1.0.4d [October 6, 1999]
- Changed 0.45 to 0.45455 in png_set_sRGB()
- Removed unused PLTE entries from pngnow.png
- Re-enabled some parts of pngvcrd.c (png_combine_row) that work properly.
-
-Version 1.0.4e [October 10, 1999]
- Fixed sign error in pngvcrd.c (Greg Roelofs)
- Replaced some instances of memcpy with simple assignments in pngvcrd (GR-P)
-
-Version 1.0.4f [October 15, 1999]
- Surrounded example.c code with #if 0 .. #endif to prevent people from
- inadvertently trying to compile it.
- Changed png_get_header_version() from a function to a macro in png.h
- Added type casting mostly in pngrtran.c and pngwtran.c
- Removed some pointless "ptr = NULL" in pngmem.c
- Added a "contrib" directory containing the source code from Greg's book.
-
-Version 1.0.5 [October 15, 1999]
- Minor editing of the INSTALL and README files.
-
-Version 1.0.5a [October 23, 1999]
- Added contrib/pngsuite and contrib/pngminus (Willem van Schaik)
- Fixed a typo in the png_set_sRGB() function call in example.c (Jan Nijtmans)
- Further optimization and bugfix of pngvcrd.c
- Revised pngset.c so that it does not allocate or free memory in the user's
- text_ptr structure. Instead, it makes its own copy.
- Created separate write_end_info_struct in pngtest.c for a more severe test.
- Added code in pngwrite.c to free info_ptr->text[i].key to stop a memory leak.
-
-Version 1.0.5b [November 23, 1999]
- Moved PNG_FLAG_HAVE_CHUNK_HEADER, PNG_FLAG_BACKGROUND_IS_GRAY and
- PNG_FLAG_WROTE_tIME from flags to mode.
- Added png_write_info_before_PLTE() function.
- Fixed some typecasting in contrib/gregbook/*.c
- Updated scripts/makevms.com and added makevms.com to contrib/gregbook
- and contrib/pngminus (Martin Zinser)
-
-Version 1.0.5c [November 26, 1999]
- Moved png_get_header_version from png.h to png.c, to accommodate ansi2knr.
- Removed all global arrays (according to PNG_NO_GLOBAL_ARRAYS macro), to
- accommodate making DLL's: Moved usr_png_ver from global variable to function
- png_get_header_ver() in png.c. Moved png_sig to png_sig_bytes in png.c and
- eliminated use of png_sig in pngwutil.c. Moved the various png_CHNK arrays
- into pngtypes.h. Eliminated use of global png_pass arrays. Declared the
- png_CHNK and png_pass arrays to be "const". Made the global arrays
- available to applications (although none are used in libpng itself) when
- PNG_NO_GLOBAL_ARRAYS is not defined or when PNG_GLOBAL_ARRAYS is defined.
- Removed some extraneous "-I" from contrib/pngminus/makefile.std
- Changed the PNG_sRGB_INTENT macros in png.h to be consistent with PNG-1.2.
- Change PNG_SRGB_INTENT to PNG_sRGB_INTENT in libpng.txt and libpng.3
-
-Version 1.0.5d [November 29, 1999]
- Add type cast (png_const_charp) two places in png.c
- Eliminated pngtypes.h; use macros instead to declare PNG_CHNK arrays.
- Renamed "PNG_GLOBAL_ARRAYS" to "PNG_USE_GLOBAL_ARRAYS" and made available
- to applications a macro "PNG_USE_LOCAL_ARRAYS".
- comment out (with #ifdef) all the new declarations when
- PNG_USE_GLOBAL_ARRAYS is defined.
- Added PNG_EXPORT_VAR macro to accommodate making DLL's.
-
-Version 1.0.5e [November 30, 1999]
- Added iCCP, iTXt, and sPLT support; added "lang" member to the png_text
- structure; refactored the inflate/deflate support to make adding new chunks
- with trailing compressed parts easier in the future, and added new functions
- png_free_iCCP, png_free_pCAL, png_free_sPLT, png_free_text, png_get_iCCP,
- png_get_spalettes, png_set_iCCP, png_set_spalettes (Eric S. Raymond).
- NOTE: Applications that write text chunks MUST define png_text->lang
- before calling png_set_text(). It must be set to NULL if you want to
- write tEXt or zTXt chunks. If you want your application to be able to
- run with older versions of libpng, use
-
- #ifdef PNG_iTXt_SUPPORTED
- png_text[i].lang = NULL;
- #endif
-
- Changed png_get_oFFs() and png_set_oFFs() to use signed rather than unsigned
- offsets (Eric S. Raymond).
- Combined PNG_READ_cHNK_SUPPORTED and PNG_WRITE_cHNK_SUPPORTED macros into
- PNG_cHNK_SUPPORTED and combined the three types of PNG_text_SUPPORTED
- macros, leaving the separate macros also available.
- Removed comments on #endifs at the end of many short, non-nested #if-blocks.
-
-Version 1.0.5f [December 6, 1999]
- Changed makefile.solaris to issue a warning about potential problems when
- the ucb "ld" is in the path ahead of the ccs "ld".
- Removed "- [date]" from the "synopsis" line in libpng.3 and libpngpf.3.
- Added sCAL chunk support (Eric S. Raymond).
-
-Version 1.0.5g [December 7, 1999]
- Fixed "png_free_spallettes" typo in png.h
- Added code to handle new chunks in pngpread.c
- Moved PNG_CHNK string macro definitions outside of PNG_NO_EXTERN block
- Added "translated_key" to png_text structure and png_write_iTXt().
- Added code in pngwrite.c to work around a newly discovered zlib bug.
-
-Version 1.0.5h [December 10, 1999]
- NOTE: regarding the note for version 1.0.5e, the following must also
- be included in your code:
- png_text[i].translated_key = NULL;
- Unknown chunk handling is now supported.
- Option to eliminate all floating point support was added. Some new
- fixed-point functions such as png_set_gAMA_fixed() were added.
- Expanded tabs and removed trailing blanks in source files.
-
-Version 1.0.5i [December 13, 1999]
- Added some type casts to silence compiler warnings.
- Renamed "png_free_spalette" to "png_free_spalettes" for consistency.
- Removed leading blanks from a #define in pngvcrd.c
- Added some parameters to the new png_set_keep_unknown_chunks() function.
- Added a test for up->location != 0 in the first instance of writing
- unknown chunks in pngwrite.c
- Changed "num" to "i" in png_free_spalettes() and png_free_unknowns() to
- prevent recursion.
- Added png_free_hIST() function.
- Various patches to fix bugs in the sCAL and integer cHRM processing,
- and to add some convenience macros for use with sCAL.
-
-Version 1.0.5j [December 21, 1999]
- Changed "unit" parameter of png_write_sCAL from png_byte to int, to work
- around buggy compilers.
- Added new type "png_fixed_point" for integers that hold float*100000 values
- Restored backward compatibility of tEXt/zTXt chunk processing:
- Restored the first four members of png_text to the same order as v.1.0.5d.
- Added members "lang_key" and "itxt_length" to png_text struct. Set
- text_length=0 when "text" contains iTXt data. Use the "compression"
- member to distinguish among tEXt/zTXt/iTXt types. Added
- PNG_ITXT_COMPRESSION_NONE (1) and PNG_ITXT_COMPRESSION_zTXt(2) macros.
- The "Note" above, about backward incompatibility of libpng-1.0.5e, no
- longer applies.
- Fixed png_read|write_iTXt() to read|write parameters in the right order,
- and to write the iTXt chunk after IDAT if it appears in the end_ptr.
- Added pnggccrd.c, version of pngvcrd.c Intel assembler for gcc (Greg Roelofs)
- Reversed the order of trying to write floating-point and fixed-point gAMA.
-
-Version 1.0.5k [December 27, 1999]
- Added many parentheses, e.g., "if (a && b & c)" becomes "if (a && (b & c))"
- Added png_handle_as_unknown() function (Glenn)
- Added png_free_chunk_list() function and chunk_list and num_chunk_list members
- of png_ptr.
- Eliminated erroneous warnings about multiple sPLT chunks and sPLT-after-PLTE.
- Fixed a libpng-1.0.5h bug in pngrutil.c that was issuing erroneous warnings
- about ignoring incorrect gAMA with sRGB (gAMA was in fact not ignored)
- Added png_free_tRNS(); png_set_tRNS() now malloc's its own trans array (ESR).
- Define png_get_int_32 when oFFs chunk is supported as well as when pCAL is.
- Changed type of proflen from png_int_32 to png_uint_32 in png_get_iCCP().
-
-Version 1.0.5l [January 1, 2000]
- Added functions png_set_read_user_chunk_fn() and png_get_user_chunk_ptr()
- for setting a callback function to handle unknown chunks and for
- retrieving the associated user pointer (Glenn).
-
-Version 1.0.5m [January 7, 2000]
- Added high-level functions png_read_png(), png_write_png(), png_free_pixels().
-
-Version 1.0.5n [January 9, 2000]
- Added png_free_PLTE() function, and modified png_set_PLTE() to malloc its
- own memory for info_ptr->palette. This makes it safe for the calling
- application to free its copy of the palette any time after it calls
- png_set_PLTE().
-
-Version 1.0.5o [January 20, 2000]
- Cosmetic changes only (removed some trailing blanks and TABs)
-
-Version 1.0.5p [January 31, 2000]
- Renamed pngdll.mak to makefile.bd32
- Cosmetic changes in pngtest.c
-
-Version 1.0.5q [February 5, 2000]
- Relocated the makefile.solaris warning about PATH problems.
- Fixed pngvcrd.c bug by pushing/popping registers in mmxsupport (Bruce Oberg)
- Revised makefile.gcmmx
- Added PNG_SETJMP_SUPPORTED, PNG_SETJMP_NOT_SUPPORTED, and PNG_ABORT() macros
-
-Version 1.0.5r [February 7, 2000]
- Removed superfluous prototype for png_get_itxt from png.h
- Fixed a bug in pngrtran.c that improperly expanded the background color.
- Return *num_text=0 from png_get_text() when appropriate, and fix documentation
- of png_get_text() in libpng.txt/libpng.3.
-
-Version 1.0.5s [February 18, 2000]
- Added "png_jmp_env()" macro to pngconf.h, to help people migrate to the
- new error handler that's planned for the next libpng release, and changed
- example.c, pngtest.c, and contrib programs to use this macro.
- Revised some of the DLL-export macros in pngconf.h (Greg Roelofs)
- Fixed a bug in png_read_png() that caused it to fail to expand some images
- that it should have expanded.
- Fixed some mistakes in the unused and undocumented INCH_CONVERSIONS functions
- in pngget.c
- Changed the allocation of palette, history, and trans arrays back to
- the version 1.0.5 method (linking instead of copying) which restores
- backward compatibility with version 1.0.5. Added some remarks about
- that in example.c. Added "free_me" member to info_ptr and png_ptr
- and added png_free_data() function.
- Updated makefile.linux and makefile.gccmmx to make directories conditionally.
- Made cosmetic changes to pngasmrd.h
- Added png_set_rows() and png_get_rows(), for use with png_read|write_png().
- Modified png_read_png() to allocate info_ptr->row_pointers only if it
- hasn't already been allocated.
-
-Version 1.0.5t [March 4, 2000]
- Changed png_jmp_env() migration aiding macro to png_jmpbuf().
- Fixed "interlace" typo (should be "interlaced") in contrib/gregbook/read2-x.c
- Fixed bug with use of PNG_BEFORE_IHDR bit in png_ptr->mode, introduced when
- PNG_FLAG_HAVE_CHUNK_HEADER was moved into png_ptr->mode in version 1.0.5b
- Files in contrib/gregbook were revised to use png_jmpbuf() and to select
- a 24-bit visual if one is available, and to allow abbreviated options.
- Files in contrib/pngminus were revised to use the png_jmpbuf() macro.
- Removed spaces in makefile.linux and makefile.gcmmx, introduced in 1.0.5s
-
-Version 1.0.5u [March 5, 2000]
- Simplified the code that detects old png.h in png.c and pngtest.c
- Renamed png_spalette (_p, _pp) to png_sPLT_t (_tp, _tpp)
- Increased precision of rgb_to_gray calculations from 8 to 15 bits and
- added png_set_rgb_to_gray_fixed() function.
- Added makefile.bc32 (32-bit Borland C++, C mode)
-
-Version 1.0.5v [March 11, 2000]
- Added some parentheses to the png_jmpbuf macro definition.
- Updated references to the zlib home page, which has moved to freesoftware.com.
- Corrected bugs in documentation regarding png_read_row() and png_write_row().
- Updated documentation of png_rgb_to_gray calculations in libpng.3/libpng.txt.
- Renamed makefile.borland,turboc3 back to makefile.bor,tc3 as in version 1.0.3,
- revised borland makefiles; added makefile.ibmvac3 and makefile.gcc (Cosmin)
-
-Version 1.0.6 [March 20, 2000]
- Minor revisions of makefile.bor, libpng.txt, and gregbook/rpng2-win.c
- Added makefile.sggcc (SGI IRIX with gcc)
-
-Version 1.0.6d [April 7, 2000]
- Changed sprintf() to strcpy() in png_write_sCAL_s() to work without STDIO
- Added data_length parameter to png_decompress_chunk() function
- Revised documentation to remove reference to abandoned png_free_chnk functions
- Fixed an error in png_rgb_to_gray_fixed()
- Revised example.c, usage of png_destroy_write_struct().
- Renamed makefile.ibmvac3 to makefile.ibmc, added libpng.icc IBM project file
- Added a check for info_ptr->free_me&PNG_FREE_TEXT when freeing text in png.c
- Simplify png_sig_bytes() function to remove use of non-ISO-C strdup().
-
-Version 1.0.6e [April 9, 2000]
- Added png_data_freer() function.
- In the code that checks for over-length tRNS chunks, added check of
- info_ptr->num_trans as well as png_ptr->num_trans (Matthias Benckmann)
- Minor revisions of libpng.txt/libpng.3.
- Check for existing data and free it if the free_me flag is set, in png_set_*()
- and png_handle_*().
- Only define PNG_WEIGHTED_FILTERS_SUPPORTED when PNG_FLOATING_POINT_SUPPORTED
- is defined.
- Changed several instances of PNG_NO_CONSOLE_ID to PNG_NO_STDIO in pngrutil.c
- and mentioned the purposes of the two macros in libpng.txt/libpng.3.
-
-Version 1.0.6f [April 14, 2000]
- Revised png_set_iCCP() and png_set_rows() to avoid prematurely freeing data.
- Add checks in png_set_text() for NULL members of the input text structure.
- Revised libpng.txt/libpng.3.
- Removed superfluous prototype for png_set_iTXt from png.h
- Removed "else" from pngread.c, after png_error(), and changed "0" to "length".
- Changed several png_errors about malformed ancillary chunks to png_warnings.
-
-Version 1.0.6g [April 24, 2000]
- Added png_pass-* arrays to pnggccrd.c when PNG_USE_LOCAL_ARRAYS is defined.
- Relocated paragraph about png_set_background() in libpng.3/libpng.txt
- and other revisions (Matthias Benckmann)
- Relocated info_ptr->free_me, png_ptr->free_me, and other info_ptr and
- png_ptr members to restore binary compatibility with libpng-1.0.5
- (breaks compatibility with libpng-1.0.6).
-
-Version 1.0.6h [April 24, 2000]
- Changed shared library so-number pattern from 2.x.y.z to xy.z (this builds
- libpng.so.10 & libpng.so.10.6h instead of libpng.so.2 & libpng.so.2.1.0.6h)
- This is a temporary change for test purposes.
-
-Version 1.0.6i [May 2, 2000]
- Rearranged some members at the end of png_info and png_struct, to put
- unknown_chunks_num and free_me within the original size of the png_structs
- and free_me, png_read_user_fn, and png_free_fn within the original png_info,
- because some old applications allocate the structs directly instead of
- using png_create_*().
- Added documentation of user memory functions in libpng.txt/libpng.3
- Modified png_read_png so that it will use user_allocated row_pointers
- if present, unless free_me directs that it be freed, and added description
- of the use of png_set_rows() and png_get_rows() in libpng.txt/libpng.3.
- Added PNG_LEGACY_SUPPORTED macro, and #ifdef out all new (since version
- 1.00) members of png_struct and png_info, to regain binary compatibility
- when you define this macro. Capabilities lost in this event
- are user transforms (new in version 1.0.0),the user transform pointer
- (new in version 1.0.2), rgb_to_gray (new in 1.0.5), iCCP, sCAL, sPLT,
- the high-level interface, and unknown chunks support (all new in 1.0.6).
- This was necessary because of old applications that allocate the structs
- directly as authors were instructed to do in libpng-0.88 and earlier,
- instead of using png_create_*().
- Added modes PNG_CREATED_READ_STRUCT and PNG_CREATED_WRITE_STRUCT which
- can be used to detect codes that directly allocate the structs, and
- code to check these modes in png_read_init() and png_write_init() and
- generate a libpng error if the modes aren't set and PNG_LEGACY_SUPPORTED
- was not defined.
- Added makefile.intel and updated makefile.watcom (Pawel Mrochen)
-
-Version 1.0.6j [May 3, 2000]
- Overloaded png_read_init() and png_write_init() with macros that convert
- calls to png_read_init_2() or png_write_init_2() that check the version
- and structure sizes.
-
-Version 1.0.7beta11 [May 7, 2000]
- Removed the new PNG_CREATED_READ_STRUCT and PNG_CREATED_WRITE_STRUCT modes
- which are no longer used.
- Eliminated the three new members of png_text when PNG_LEGACY_SUPPORTED is
- defined or when neither PNG_READ_iTXt_SUPPORTED nor PNG_WRITE_iTXT_SUPPORTED
- is defined.
- Made PNG_NO_READ|WRITE_iTXt the default setting, to avoid memory
- overrun when old applications fill the info_ptr->text structure directly.
- Added PNGAPI macro, and added it to the definitions of all exported functions.
- Relocated version macro definitions ahead of the includes of zlib.h and
- pngconf.h in png.h.
-
-Version 1.0.7beta12 [May 12, 2000]
- Revised pngset.c to avoid a problem with expanding the png_debug macro.
- Deleted some extraneous defines from pngconf.h
- Made PNG_NO_CONSOLE_IO the default condition when PNG_BUILD_DLL is defined.
- Use MSC _RPTn debugging instead of fprintf if _MSC_VER is defined.
- Added png_access_version_number() function.
- Check for mask&PNG_FREE_CHNK (for TEXT, SCAL, PCAL) in png_free_data().
- Expanded libpng.3/libpng.txt information about png_data_freer().
-
-Version 1.0.7beta14 [May 17, 2000] (beta13 was not published)
- Changed pnggccrd.c and pngvcrd.c to handle bad adaptive filter types as
- warnings instead of errors, as pngrutil.c does.
- Set the PNG_INFO_IDAT valid flag in png_set_rows() so png_write_png()
- will actually write IDATs.
- Made the default PNG_USE_LOCAL_ARRAYS depend on PNG_DLL instead of WIN32.
- Make png_free_data() ignore its final parameter except when freeing data
- that can have multiple instances (text, sPLT, unknowns).
- Fixed a new bug in png_set_rows().
- Removed info_ptr->valid tests from png_free_data(), as in version 1.0.5.
- Added png_set_invalid() function.
- Fixed incorrect illustrations of png_destroy_write_struct() in example.c.
-
-Version 1.0.7beta15 [May 30, 2000]
- Revised the deliberately erroneous Linux setjmp code in pngconf.h to produce
- fewer error messages.
- Rearranged checks for Z_OK to check the most likely path first in pngpread.c
- and pngwutil.c.
- Added checks in pngtest.c for png_create_*() returning NULL, and mentioned
- in libpng.txt/libpng.3 the need for applications to check this.
- Changed names of png_default_*() functions in pngtest to pngtest_*().
- Changed return type of png_get_x|y_offset_*() from png_uint_32 to png_int_32.
- Fixed some bugs in the unused PNG_INCH_CONVERSIONS functions in pngget.c
- Set each pointer to NULL after freeing it in png_free_data().
- Worked around a problem in pngconf.h; AIX's strings.h defines an "index"
- macro that conflicts with libpng's png_color_16.index. (Dimitri
- Papadapoulos)
- Added "msvc" directory with MSVC++ project files (Simon-Pierre Cadieux).
-
-Version 1.0.7beta16 [June 4, 2000]
- Revised the workaround of AIX string.h "index" bug.
- Added a check for overlength PLTE chunk in pngrutil.c.
- Added PNG_NO_POINTER_INDEXING macro to use array-indexing instead of pointer
- indexing in pngrutil.c and pngwutil.c to accommodate a buggy compiler.
- Added a warning in png_decompress_chunk() when it runs out of data, e.g.
- when it tries to read an erroneous PhotoShop iCCP chunk.
- Added PNG_USE_DLL macro.
- Revised the copyright/disclaimer/license notice.
- Added contrib/msvctest directory
-
-Version 1.0.7rc1 [June 9, 2000]
- Corrected the definition of PNG_TRANSFORM_INVERT_ALPHA (0x0400 not 0x0200)
- Added contrib/visupng directory (Willem van Schaik)
-
-Version 1.0.7beta18 [June 23, 2000]
- Revised PNGAPI definition, and pngvcrd.c to work with __GCC__
- and do not redefine PNGAPI if it is passed in via a compiler directive.
- Revised visupng/PngFile.c to remove returns from within the Try block.
- Removed leading underscores from "_PNG_H" and "_PNG_SAVE_BSD_SOURCE" macros.
- Updated contrib/visupng/cexcept.h to version 1.0.0.
- Fixed bugs in pngwrite.c and pngwutil.c that prevented writing iCCP chunks.
-
-Version 1.0.7rc2 [June 28, 2000]
- Updated license to include disclaimers required by UCITA.
- Fixed "DJBPP" typo in pnggccrd.c introduced in beta18.
-
-Version 1.0.7 [July 1, 2000]
- Revised the definition of "trans_values" in libpng.3/libpng.txt
-
-Version 1.0.8beta1 [July 8, 2000]
- Added png_free(png_ptr, key) two places in pngpread.c to stop memory leaks.
- Changed PNG_NO_STDIO to PNG_NO_CONSOLE_IO, several places in pngrutil.c and
- pngwutil.c.
- Changed PNG_EXPORT_VAR to use PNG_IMPEXP, in pngconf.h.
- Removed unused "#include " from png.c
- Added WindowsCE support.
- Revised pnggccrd.c to work with gcc-2.95.2 and in the Cygwin environment.
-
-Version 1.0.8beta2 [July 10, 2000]
- Added project files to the wince directory and made further revisions
- of pngtest.c, pngrio.c, and pngwio.c in support of WindowsCE.
-
-Version 1.0.8beta3 [July 11, 2000]
- Only set the PNG_FLAG_FREE_TRNS or PNG_FREE_TRNS flag in png_handle_tRNS()
- for indexed-color input files to avoid potential double-freeing trans array
- under some unusual conditions; problem was introduced in version 1.0.6f.
- Further revisions to pngtest.c and files in the wince subdirectory.
-
-Version 1.0.8beta4 [July 14, 2000]
- Added the files pngbar.png and pngbar.jpg to the distribution.
- Added makefile.cygwin, and cygwin support in pngconf.h
- Added PNG_NO_ZALLOC_ZERO macro (makes png_zalloc skip zeroing memory)
-
-Version 1.0.8rc1 [July 16, 2000]
- Revised png_debug() macros and statements to eliminate compiler warnings.
-
-Version 1.0.8 [July 24, 2000]
- Added png_flush() in pngwrite.c, after png_write_IEND().
- Updated makefile.hpux to build a shared library.
-
-Version 1.0.9beta1 [November 10, 2000]
- Fixed typo in scripts/makefile.hpux
- Updated makevms.com in scripts and contrib/* and contrib/* (Martin Zinser)
- Fixed seqence-point bug in contrib/pngminus/png2pnm (Martin Zinser)
- Changed "cdrom.com" in documentation to "libpng.org"
- Revised pnggccrd.c to get it all working, and updated makefile.gcmmx (Greg).
- Changed type of "params" from voidp to png_voidp in png_read|write_png().
- Make sure PNGAPI and PNG_IMPEXP are defined in pngconf.h.
- Revised the 3 instances of WRITEFILE in pngtest.c.
- Relocated "msvc" and "wince" project subdirectories into "dll" subdirectory.
- Updated png.rc in dll/msvc project
- Revised makefile.dec to define and use LIBPATH and INCPATH
- Increased size of global png_libpng_ver[] array from 12 to 18 chars.
- Made global png_libpng_ver[], png_sig[] and png_pass_*[] arrays const.
- Removed duplicate png_crc_finish() from png_handle_bKGD() function.
- Added a warning when application calls png_read_update_info() multiple times.
- Revised makefile.cygwin
- Fixed bugs in iCCP support in pngrutil.c and pngwutil.c.
- Replaced png_set_empty_plte_permitted() with png_permit_mng_features().
-
-Version 1.0.9beta2 [November 19, 2000]
- Renamed the "dll" subdirectory "projects".
- Added borland project files to "projects" subdirectory.
- Set VS_FF_PRERELEASE and VS_FF_PATCHED flags in msvc/png.rc when appropriate.
- Add error message in png_set_compression_buffer_size() when malloc fails.
-
-Version 1.0.9beta3 [November 23, 2000]
- Revised PNG_LIBPNG_BUILD_TYPE macro in png.h, used in the msvc project.
- Removed the png_flush() in pngwrite.c that crashes some applications
- that don't set png_output_flush_fn.
- Added makefile.macosx and makefile.aix to scripts directory.
-
-Version 1.0.9beta4 [December 1, 2000]
- Change png_chunk_warning to png_warning in png_check_keyword().
- Increased the first part of msg buffer from 16 to 18 in png_chunk_error().
-
-Version 1.0.9beta5 [December 15, 2000]
- Added support for filter method 64 (for PNG datastreams embedded in MNG).
-
-Version 1.0.9beta6 [December 18, 2000]
- Revised png_set_filter() to accept filter method 64 when appropriate.
- Added new PNG_HAVE_PNG_SIGNATURE bit to png_ptr->mode and use it to
- help prevent applications from using MNG features in PNG datastreams.
- Added png_permit_mng_features() function.
- Revised libpng.3/libpng.txt. Changed "filter type" to "filter method".
-
-Version 1.0.9rc1 [December 23, 2000]
- Revised test for PNG_HAVE_PNG_SIGNATURE in pngrutil.c
- Fixed error handling of unknown compression type in png_decompress_chunk().
- In pngconf.h, define __cdecl when _MSC_VER is defined.
-
-Version 1.0.9beta7 [December 28, 2000]
- Changed PNG_TEXT_COMPRESSION_zTXt to PNG_COMPRESSION_TYPE_BASE several places.
- Revised memory management in png_set_hIST and png_handle_hIST in a backward
- compatible manner. PLTE and tRNS were revised similarly.
- Revised the iCCP chunk reader to ignore trailing garbage.
-
-Version 1.0.9beta8 [January 12, 2001]
- Moved pngasmrd.h into pngconf.h.
- Improved handling of out-of-spec garbage iCCP chunks generated by PhotoShop.
-
-Version 1.0.9beta9 [January 15, 2001]
- Added png_set_invalid, png_permit_mng_features, and png_mmx_supported to
- wince and msvc project module definition files.
- Minor revision of makefile.cygwin.
- Fixed bug with progressive reading of narrow interlaced images in pngpread.c
-
-Version 1.0.9beta10 [January 16, 2001]
- Do not typedef png_FILE_p in pngconf.h when PNG_NO_STDIO is defined.
- Fixed "png_mmx_supported" typo in project definition files.
-
-Version 1.0.9beta11 [January 19, 2001]
- Updated makefile.sgi to make shared library.
- Removed png_mmx_support() function and disabled PNG_MNG_FEATURES_SUPPORTED
- by default, for the benefit of DLL forward compatibility. These will
- be re-enabled in version 1.2.0.
-
-Version 1.0.9rc2 [January 22, 2001]
- Revised cygwin support.
-
-Version 1.0.9 [January 31, 2001]
- Added check of cygwin's ALL_STATIC in pngconf.h
- Added "-nommx" parameter to contrib/gregbook/rpng2-win and rpng2-x demos.
-
-Version 1.0.10beta1 [March 14, 2001]
- Revised makefile.dec, makefile.sgi, and makefile.sggcc; added makefile.hpgcc.
- Reformatted libpng.3 to eliminate bad line breaks.
- Added checks for _mmx_supported in the read_filter_row function of pnggccrd.c
- Added prototype for png_mmx_support() near the top of pnggccrd.c
- Moved some error checking from png_handle_IHDR to png_set_IHDR.
- Added PNG_NO_READ_SUPPORTED and PNG_NO_WRITE_SUPPORTED macros.
- Revised png_mmx_support() function in pnggccrd.c
- Restored version 1.0.8 PNG_WRITE_EMPTY_PLTE_SUPPORTED behavior in pngwutil.c
- Fixed memory leak in contrib/visupng/PngFile.c
- Fixed bugs in png_combine_row() in pnggccrd.c and pngvcrd.c (C version)
- Added warnings when retrieving or setting gamma=0.
- Increased the first part of msg buffer from 16 to 18 in png_chunk_warning().
-
-Version 1.0.10rc1 [March 23, 2001]
- Changed all instances of memcpy, strcpy, and strlen to png_memcpy, png_strcpy,
- and png_strlen.
- Revised png_mmx_supported() function in pnggccrd.c to return proper value.
- Fixed bug in progressive reading (pngpread.c) with small images (height < 8).
-
-Version 1.0.10 [March 30, 2001]
- Deleted extraneous space (introduced in 1.0.9) from line 42 of makefile.cygwin
- Added beos project files (Chris Herborth)
-
-Version 1.0.11beta1 [April 3, 2001]
- Added type casts on several png_malloc() calls (Dimitri Papadapoulos).
- Removed a no-longer needed AIX work-around from pngconf.h
- Changed several "//" single-line comments to C-style in pnggccrd.c
-
-Version 1.0.11beta2 [April 11, 2001]
- Removed PNGAPI from several functions whose prototypes did not have PNGAPI.
- Updated scripts/pngos2.def
-
-Version 1.0.11beta3 [April 14, 2001]
- Added checking the results of many instances of png_malloc() for NULL
-
-Version 1.0.11beta4 [April 20, 2001]
- Undid the changes from version 1.0.11beta3. Added a check for NULL return
- from user's malloc_fn().
- Removed some useless type casts of the NULL pointer.
- Added makefile.netbsd
-
-Version 1.0.11 [April 27, 2001]
- Revised makefile.netbsd
-
-Version 1.0.12beta1 [May 14, 2001]
- Test for Windows platform in pngconf.h when including malloc.h (Emmanuel Blot)
- Updated makefile.cygwin and handling of Cygwin's ALL_STATIC in pngconf.h
- Added some never-to-be-executed code in pnggccrd.c to quiet compiler warnings.
- Eliminated the png_error about apps using png_read|write_init(). Instead,
- libpng will reallocate the png_struct and info_struct if they are too small.
- This retains future binary compatibility for old applications written for
- libpng-0.88 and earlier.
-
-Version 1.2.0beta1 [May 6, 2001]
- Bumped DLLNUM to 2.
- Re-enabled PNG_MNG_FEATURES_SUPPORTED and enabled PNG_ASSEMBLER_CODE_SUPPORTED
- by default.
- Added runtime selection of MMX features.
- Added png_set_strip_error_numbers function and related macros.
-
-Version 1.2.0beta2 [May 7, 2001]
- Finished merging 1.2.0beta1 with version 1.0.11
- Added a check for attempts to read or write PLTE in grayscale PNG datastreams.
-
-Version 1.2.0beta3 [May 17, 2001]
- Enabled user memory function by default.
- Modified png_create_struct so it passes user mem_ptr to user memory allocator.
- Increased png_mng_features flag from png_byte to png_uint_32.
- Bumped shared-library (so-number) and dll-number to 3.
-
-Version 1.2.0beta4 [June 23, 2001]
- Check for missing profile length field in iCCP chunk and free chunk_data
- in case of truncated iCCP chunk.
- Bumped shared-library number to 3 in makefile.sgi and makefile.sggcc
- Bumped dll-number from 2 to 3 in makefile.cygwin
- Revised contrib/gregbook/rpng*-x.c to avoid a memory leak and to exit cleanly
- if user attempts to run it on an 8-bit display.
- Updated contrib/gregbook
- Use png_malloc instead of png_zalloc to allocate palette in pngset.c
- Updated makefile.ibmc
- Added some typecasts to eliminate gcc 3.0 warnings. Changed prototypes
- of png_write_oFFS width and height from png_uint_32 to png_int_32.
- Updated example.c
- Revised prototypes for png_debug_malloc and png_debug_free in pngtest.c
-
-Version 1.2.0beta5 [August 8, 2001]
- Revised contrib/gregbook
- Revised makefile.gcmmx
- Revised pnggccrd.c to conditionally compile some thread-unsafe code only
- when PNG_THREAD_UNSAFE_OK is defined.
- Added tests to prevent pngwutil.c from writing a bKGD or tRNS chunk with
- value exceeding 2^bit_depth-1
- Revised makefile.sgi and makefile.sggcc
- Replaced calls to fprintf(stderr,...) with png_warning() in pnggccrd.c
- Removed restriction that do_invert_mono only operate on 1-bit opaque files
-
-Version 1.2.0 [September 1, 2001]
- Changed a png_warning() to png_debug() in pnggccrd.c
- Fixed contrib/gregbook/rpng-x.c, rpng2-x.c to avoid crash with XFreeGC().
-
-Version 1.2.1beta1 [October 19, 2001]
- Revised makefile.std in contrib/pngminus
- Include background_1 in png_struct regardless of gamma support.
- Revised makefile.netbsd and makefile.macosx, added makefile.darwin.
- Revised example.c to provide more details about using row_callback().
-
-Version 1.2.1beta2 [October 25, 2001]
- Added type cast to each NULL appearing in a function call, except for
- WINCE functions.
- Added makefile.so9.
-
-Version 1.2.1beta3 [October 27, 2001]
- Removed type casts from all NULLs.
- Simplified png_create_struct_2().
-
-Version 1.2.1beta4 [November 7, 2001]
- Revised png_create_info_struct() and png_creat_struct_2().
- Added error message if png_write_info() was omitted.
- Type cast NULLs appearing in function calls when _NO_PROTO or
- PNG_TYPECAST_NULL is defined.
-
-Version 1.2.1rc1 [November 24, 2001]
- Type cast NULLs appearing in function calls except when PNG_NO_TYPECAST_NULL
- is defined.
- Changed typecast of "size" argument to png_size_t in pngmem.c calls to
- the user malloc_fn, to agree with the prototype in png.h
- Added a pop/push operation to pnggccrd.c, to preserve Eflag (Maxim Sobolev)
- Updated makefile.sgi to recognize LIBPATH and INCPATH.
- Updated various makefiles so "make clean" does not remove previous major
- version of the shared library.
-
-Version 1.2.1rc2 [December 4, 2001]
- Always allocate 256-entry internal palette, hist, and trans arrays, to
- avoid out-of-bounds memory reference caused by invalid PNG datastreams.
- Added a check for prefix_length > data_length in iCCP chunk handler.
-
-Version 1.2.1 [December 7, 2001]
- None.
-
-Version 1.2.2beta1 [February 22, 2002]
- Fixed a bug with reading the length of iCCP profiles (Larry Reeves).
- Revised makefile.linux, makefile.gcmmx, and makefile.sgi to generate
- libpng.a, libpng12.so (not libpng.so.3), and libpng12/png.h
- Revised makefile.darwin to remove "-undefined suppress" option.
- Added checks for gamma and chromaticity values over 21474.83, which exceed
- the limit for PNG unsigned 32-bit integers when encoded.
- Revised calls to png_create_read_struct() and png_create_write_struct()
- for simpler debugging.
- Revised png_zalloc() so zlib handles errors (uses PNG_FLAG_MALLOC_NULL_MEM_OK)
-
-Version 1.2.2beta2 [February 23, 2002]
- Check chunk_length and idat_size for invalid (over PNG_MAX_UINT) lengths.
- Check for invalid image dimensions in png_get_IHDR.
- Added missing "fi;" in the install target of the SGI makefiles.
- Added install-static to all makefiles that make shared libraries.
- Always do gamma compensation when image is partially transparent.
-
-Version 1.2.2beta3 [March 7, 2002]
- Compute background.gray and background_1.gray even when color_type is RGB
- in case image gets reduced to gray later.
- Modified shared-library makefiles to install pkgconfig/libpngNN.pc.
- Export (with PNGAPI) png_zalloc, png_zfree, and png_handle_as_unknown
- Removed unused png_write_destroy_info prototype from png.h
- Eliminated incorrect use of width_mmx from pnggccrd.c in pixel_bytes == 8 case
- Added install-shared target to all makefiles that make shared libraries.
- Stopped a double free of palette, hist, and trans when not using free_me.
- Added makefile.32sunu for Sun Ultra 32 and makefile.64sunu for Sun Ultra 64.
-
-Version 1.2.2beta4 [March 8, 2002]
- Compute background.gray and background_1.gray even when color_type is RGB
- in case image gets reduced to gray later (Jason Summers).
- Relocated a misplaced /bin/rm in the "install-shared" makefile targets
- Added PNG_1_0_X macro which can be used to build a 1.0.x-compatible library.
-
-Version 1.2.2beta5 [March 26, 2002]
- Added missing PNGAPI to several function definitions.
- Check for invalid bit_depth or color_type in png_get_IHDR(), and
- check for missing PLTE or IHDR in png_push_read_chunk() (Matthias Clasen).
- Revised iTXt support to accept NULL for lang and lang_key.
- Compute gamma for color components of background even when color_type is gray.
- Changed "()" to "{}" in scripts/libpng.pc.in.
- Revised makefiles to put png.h and pngconf.h only in $prefix/include/libpngNN
- Revised makefiles to make symlink to libpng.so.NN in addition to libpngNN.so
-
-Version 1.2.2beta6 [March 31, 2002]
-
-Version 1.0.13beta1 [March 31, 2002]
- Prevent png_zalloc() from trying to memset memory that it failed to acquire.
- Add typecasts of PNG_MAX_UINT in pngset_cHRM_fixed() (Matt Holgate).
- Ensure that the right function (user or default) is used to free the
- png_struct after an error in png_create_read_struct_2().
-
-Version 1.2.2rc1 [April 7, 2002]
-
-Version 1.0.13rc1 [April 7, 2002]
- Save the ebx register in pnggccrd.c (Sami Farin)
- Add "mem_ptr = png_ptr->mem_ptr" in png_destroy_write_struct() (Paul Gardner).
- Updated makefiles to put headers in include/libpng and remove old include/*.h.
-
-Version 1.2.2 [April 15, 2002]
-
-Version 1.0.13 [April 15, 2002]
- Revised description of png_set_filter() in libpng.3/libpng.txt.
- Revised makefile.netbsd and added makefile.neNNbsd and makefile.freebsd
-
-Version 1.0.13patch01 [April 17, 2002]
-
-Version 1.2.2patch01 [April 17, 2002]
- Changed ${PNGMAJ}.${PNGVER} bug to ${PNGVER} in makefile.sgi and
- makefile.sggcc
- Fixed VER -> PNGVER typo in makefile.macosx and added install-static to
- install
- Added install: target to makefile.32sunu and makefile.64sunu
-
-Version 1.0.13patch03 [April 18, 2002]
-
-Version 1.2.2patch03 [April 18, 2002]
- Revised 15 makefiles to link libpng.a to libpngNN.a and the include libpng
- subdirectory to libpngNN subdirectory without the full pathname.
- Moved generation of libpng.pc from "install" to "all" in 15 makefiles.
-
-Version 1.2.3rc1 [April 28, 2002]
- Added install-man target to 15 makefiles (Dimitri Papadopolous-Orfanos).
- Added $(DESTDIR) feature to 24 makefiles (Tim Mooney)
- Fixed bug with $prefix, should be $(prefix) in makefile.hpux.
- Updated cygwin-specific portion of pngconf.h and revised makefile.cygwin
- Added a link from libpngNN.pc to libpng.pc in 15 makefiles.
- Added links from include/libpngNN/*.h to include/*.h in 24 makefiles.
- Revised makefile.darwin to make relative links without full pathname.
- Added setjmp() at the end of png_create_*_struct_2() in case user forgets
- to put one in their application.
- Restored png_zalloc() and png_zfree() prototypes to version 1.2.1 and
- removed them from module definition files.
-
-Version 1.2.3rc2 [May 1, 2002]
- Fixed bug in reporting number of channels in pngget.c and pngset.c,
- that was introduced in version 1.2.2beta5.
- Exported png_zalloc(), png_zfree(), png_default_read(), png_default_write(),
- png_default_flush(), and png_push_fill_buffer() and included them in
- module definition files.
- Added "libpng.pc" dependency to the "install-shared" target in 15 makefiles.
-
-Version 1.2.3rc3 [May 1, 2002]
- Revised prototype for png_default_flush()
- Remove old libpng.pc and libpngNN.pc before installing new ones.
-
-Version 1.2.3rc4 [May 2, 2002]
- Typos in *.def files (png_default_read|write -> png_default_read|write_data)
- In makefiles, changed rm libpng.NN.pc to rm libpngNN.pc
- Added libpng-config and libpngNN-config and modified makefiles to install
- them.
- Changed $(MANPATH) to $(DESTDIR)$(MANPATH) in makefiles
- Added "Win32 DLL VB" configuration to projects/msvc/libpng.dsp
-
-Version 1.2.3rc5 [May 11, 2002]
- Changed "error" and "message" in prototypes to "error_message" and
- "warning_message" to avoid namespace conflict.
- Revised 15 makefiles to build libpng-config from libpng-config-*.in
- Once more restored png_zalloc and png_zfree to regular nonexported form.
- Restored png_default_read|write_data, png_default_flush, png_read_fill_buffer
- to nonexported form, but with PNGAPI, and removed them from module def
- files.
-
-Version 1.2.3rc6 [May 14, 2002]
- Removed "PNGAPI" from png_zalloc() and png_zfree() in png.c
- Changed "Gz" to "Gd" in projects/msvc/libpng.dsp and zlib.dsp.
- Removed leftover libpng-config "sed" script from four makefiles.
- Revised libpng-config creating script in 16 makefiles.
-
-Version 1.2.3 [May 22, 2002]
- Revised libpng-config target in makefile.cygwin.
- Removed description of png_set_mem_fn() from documentation.
- Revised makefile.freebsd.
- Minor cosmetic changes to 15 makefiles, e.g., $(DI) = $(DESTDIR)/$(INCDIR).
- Revised projects/msvc/README.txt
- Changed -lpng to -lpngNN in LDFLAGS in several makefiles.
-
-Version 1.2.4beta1 [May 24, 2002]
- Added libpng.pc and libpng-config to "all:" target in 16 makefiles.
- Fixed bug in 16 makefiles: $(DESTDIR)/$(LIBPATH) to $(DESTDIR)$(LIBPATH)
- Added missing "\" before closing double quote in makefile.gcmmx.
- Plugged various memory leaks; added png_malloc_warn() and png_set_text_2()
- functions.
-
-Version 1.2.4beta2 [June 25, 2002]
- Plugged memory leak of png_ptr->current_text (Matt Holgate).
- Check for buffer overflow before reading CRC in pngpread.c (Warwick Allison)
- Added -soname to the loader flags in makefile.dec, makefile.sgi, and
- makefile.sggcc.
- Added "test-installed" target to makefile.linux, makefile.gcmmx,
- makefile.sgi, and makefile.sggcc.
-
-Version 1.2.4beta3 [June 28, 2002]
- Plugged memory leak of row_buf in pngtest.c when there is a png_error().
- Detect buffer overflow in pngpread.c when IDAT is corrupted with extra data.
- Added "test-installed" target to makefile.32sunu, makefile.64sunu,
- makefile.beos, makefile.darwin, makefile.dec, makefile.macosx,
- makefile.solaris, makefile.hpux, makefile.hpgcc, and makefile.so9.
-
-Version 1.2.4rc1 and 1.0.14rc1 [July 2, 2002]
- Added "test-installed" target to makefile.cygwin and makefile.sco.
- Revised pnggccrd.c to be able to back out version 1.0.x via PNG_1_0_X macro.
-
-Version 1.2.4 and 1.0.14 [July 8, 2002]
- Changed png_warning() to png_error() when width is too large to process.
-
-Version 1.2.4patch01 [July 20, 2002]
- Revised makefile.cygwin to use DLL number 12 instead of 13.
-
-Version 1.2.5beta1 [August 6, 2002]
- Added code to contrib/gregbook/readpng2.c to ignore unused chunks.
- Replaced toucan.png in contrib/gregbook (it has been corrupt since 1.0.11)
- Removed some stray *.o files from contrib/gregbook.
- Changed png_error() to png_warning() about "Too much data" in pngpread.c
- and about "Extra compressed data" in pngrutil.c.
- Prevent png_ptr->pass from exceeding 7 in png_push_finish_row().
- Updated makefile.hpgcc
- Updated png.c and pnggccrd.c handling of return from png_mmx_support()
-
-Version 1.2.5beta2 [August 15, 2002]
- Only issue png_warning() about "Too much data" in pngpread.c when avail_in
- is nonzero.
- Updated makefiles to install a separate libpng.so.3 with its own rpath.
-
-Version 1.2.5rc1 and 1.0.15rc1 [August 24, 2002]
- Revised makefiles to not remove previous minor versions of shared libraries.
-
-Version 1.2.5rc2 and 1.0.15rc2 [September 16, 2002]
- Revised 13 makefiles to remove "-lz" and "-L$(ZLIBLIB)", etc., from shared
- library loader directive.
- Added missing "$OBJSDLL" line to makefile.gcmmx.
- Added missing "; fi" to makefile.32sunu.
-
-Version 1.2.5rc3 and 1.0.15rc3 [September 18, 2002]
- Revised libpng-config script.
-
-Version 1.2.5 and 1.0.15 [October 3, 2002]
- Revised makefile.macosx, makefile.darwin, makefile.hpgcc, and makefile.hpux,
- and makefile.aix.
- Relocated two misplaced PNGAPI lines in pngtest.c
-
-Version 1.2.6beta1 [October 22, 2002]
- Commented out warning about uninitialized mmx_support in pnggccrd.c.
- Changed "IBMCPP__" flag to "__IBMCPP__" in pngconf.h.
- Relocated two more misplaced PNGAPI lines in pngtest.c
- Fixed memory overrun bug in png_do_read_filler() with 16-bit datastreams,
- introduced in version 1.0.2.
- Revised makefile.macosx, makefile.dec, makefile.aix, and makefile.32sunu.
-
-Version 1.2.6beta2 [November 1, 2002]
- Added libpng-config "--ldopts" output.
- Added "AR=ar" and "ARFLAGS=rc" and changed "ar rc" to "$(AR) $(ARFLAGS)"
- in makefiles.
-
-Version 1.2.6beta3 [July 18, 2004]
- Reverted makefile changes from version 1.2.6beta2 and some of the changes
- from version 1.2.6beta1; these will be postponed until version 1.2.7.
- Version 1.2.6 is going to be a simple bugfix release.
- Changed the one instance of "ln -sf" to "ln -f -s" in each Sun makefile.
- Fixed potential overrun in pngerror.c by using strncpy instead of memcpy.
- Added "#!/bin/sh" at the top of configure, for recognition of the
- 'x' flag under Cygwin (Cosmin).
- Optimized vacuous tests that silence compiler warnings, in png.c (Cosmin).
- Added support for PNG_USER_CONFIG, in pngconf.h (Cosmin).
- Fixed the special memory handler for Borland C under DOS, in pngmem.c
- (Cosmin).
- Removed some spurious assignments in pngrutil.c (Cosmin).
- Replaced 65536 with 65536L, and 0xffff with 0xffffL, to silence warnings
- on 16-bit platforms (Cosmin).
- Enclosed shift op expressions in parentheses, to silence warnings (Cosmin).
- Used proper type png_fixed_point, to avoid problems on 16-bit platforms,
- in png_handle_sRGB() (Cosmin).
- Added compression_type to png_struct, and optimized the window size
- inside the deflate stream (Cosmin).
- Fixed definition of isnonalpha(), in pngerror.c and pngrutil.c (Cosmin).
- Fixed handling of unknown chunks that come after IDAT (Cosmin).
- Allowed png_error() and png_warning() to work even if png_ptr == NULL
- (Cosmin).
- Replaced row_info->rowbytes with row_bytes in png_write_find_filter()
- (Cosmin).
- Fixed definition of PNG_LIBPNG_VER_DLLNUM (Simon-Pierre).
- Used PNG_LIBPNG_VER and PNG_LIBPNG_VER_STRING instead of the hardcoded
- values in png.c (Simon-Pierre, Cosmin).
- Initialized png_libpng_ver[] with PNG_LIBPNG_VER_STRING (Simon-Pierre).
- Replaced PNG_LIBPNG_VER_MAJOR with PNG_LIBPNG_VER_DLLNUM in png.rc
- (Simon-Pierre).
- Moved the definition of PNG_HEADER_VERSION_STRING near the definitions
- of the other PNG_LIBPNG_VER_... symbols in png.h (Cosmin).
- Relocated #ifndef PNGAPI guards in pngconf.h (Simon-Pierre, Cosmin).
- Updated scripts/makefile.vc(a)win32 (Cosmin).
- Updated the MSVC project (Simon-Pierre, Cosmin).
- Updated the Borland C++ Builder project (Cosmin).
- Avoided access to asm_flags in pngvcrd.c, if PNG_1_0_X is defined (Cosmin).
- Commented out warning about uninitialized mmx_support in pngvcrd.c (Cosmin).
- Removed scripts/makefile.bd32 and scripts/pngdef.pas (Cosmin).
- Added extra guard around inclusion of Turbo C memory headers, in pngconf.h
- (Cosmin).
- Renamed projects/msvc/ to projects/visualc6/, and projects/borland/ to
- projects/cbuilder5/ (Cosmin).
- Moved projects/visualc6/png32ms.def to scripts/pngw32.def,
- and projects/visualc6/png.rc to scripts/pngw32.rc (Cosmin).
- Added projects/visualc6/pngtest.dsp; removed contrib/msvctest/ (Cosmin).
- Changed line endings to DOS style in cbuilder5 and visualc6 files, even
- in the tar.* distributions (Cosmin).
- Updated contrib/visupng/VisualPng.dsp (Cosmin).
- Updated contrib/visupng/cexcept.h to version 2.0.0 (Cosmin).
- Added a separate distribution with "configure" and supporting files (Junichi).
-
-Version 1.2.6beta4 [July 28, 2004]
- Added user ability to change png_size_t via a PNG_SIZE_T macro.
- Added png_sizeof() and png_convert_size() functions.
- Added PNG_SIZE_MAX (maximum value of a png_size_t variable.
- Added check in png_malloc_default() for (size_t)size != (png_uint_32)size
- which would indicate an overflow.
- Changed sPLT failure action from png_error to png_warning and abandon chunk.
- Changed sCAL and iCCP failures from png_error to png_warning and abandon.
- Added png_get_uint_31(png_ptr, buf) function.
- Added PNG_UINT_32_MAX macro.
- Renamed PNG_MAX_UINT to PNG_UINT_31_MAX.
- Made png_zalloc() issue a png_warning and return NULL on potential
- overflow.
- Turn on PNG_NO_ZALLOC_ZERO by default in version 1.2.x
- Revised "clobber list" in pnggccrd.c so it will compile under gcc-3.4.
- Revised Borland portion of png_malloc() to return NULL or issue
- png_error() according to setting of PNG_FLAG_MALLOC_NULL_MEM_OK.
- Added PNG_NO_SEQUENTIAL_READ_SUPPORTED macro to conditionally remove
- sequential read support.
- Added some "#if PNG_WRITE_SUPPORTED" blocks.
- Added #ifdef to remove some redundancy in png_malloc_default().
- Use png_malloc instead of png_zalloc to allocate the pallete.
-
-Version 1.0.16rc1 and 1.2.6rc1 [August 4, 2004]
- Fixed buffer overflow vulnerability in png_handle_tRNS()
- Fixed integer arithmetic overflow vulnerability in png_read_png().
- Fixed some harmless bugs in png_handle_sBIT, etc, that would cause
- duplicate chunk types to go undetected.
- Fixed some timestamps in the -config version
- Rearranged order of processing of color types in png_handle_tRNS().
- Added ROWBYTES macro to calculate rowbytes without integer overflow.
- Updated makefile.darwin and removed makefile.macosx from scripts directory.
- Imposed default one million column, one-million row limits on the image
- dimensions, and added png_set_user_limits() function to override them.
- Revised use of PNG_SET_USER_LIMITS_SUPPORTED macro.
- Fixed wrong cast of returns from png_get_user_width|height_max().
- Changed some "keep the compiler happy" from empty statements to returns,
- Revised libpng.txt to remove 1.2.x stuff from the 1.0.x distribution
-
-Version 1.0.16rc2 and 1.2.6rc2 [August 7, 2004]
- Revised makefile.darwin and makefile.solaris. Removed makefile.macosx.
- Revised pngtest's png_debug_malloc() to use png_malloc() instead of
- png_malloc_default() which is not supposed to be exported.
- Fixed off-by-one error in one of the conversions to PNG_ROWBYTES() in
- pngpread.c. Bug was introduced in 1.2.6rc1.
- Fixed bug in RGB to RGBX transformation introduced in 1.2.6rc1.
- Fixed old bug in RGB to Gray transformation.
- Fixed problem with 64-bit compilers by casting arguments to abs()
- to png_int_32.
- Changed "ln -sf" to "ln -f -s" in three makefiles (solaris, sco, so9).
- Changed "HANDLE_CHUNK_*" to "PNG_HANDLE_CHUNK_*" (Cosmin)
- Added "-@/bin/rm -f $(DL)/$(LIBNAME).so.$(PNGMAJ)" to 15 *NIX makefiles.
- Added code to update the row_info->colortype in png_do_read_filler() (MSB).
-
-Version 1.0.16rc3 and 1.2.6rc3 [August 9, 2004]
- Eliminated use of "abs()" in testing cHRM and gAMA values, to avoid
- trouble with some 64-bit compilers. Created PNG_OUT_OF_RANGE() macro.
- Revised documentation of png_set_keep_unknown_chunks().
- Check handle_as_unknown status in pngpread.c, as in pngread.c previously.
- Moved "PNG_HANDLE_CHUNK_*" macros out of PNG_INTERNAL section of png.h
- Added "rim" definitions for CONST4 and CONST6 in pnggccrd.c
-
-Version 1.0.16rc4 and 1.2.6rc4 [August 10, 2004]
- Fixed mistake in pngtest.c introduced in 1.2.6rc2 (declaration of
- "pinfo" was out of place).
-
-Version 1.0.16rc5 and 1.2.6rc5 [August 10, 2004]
- Moved "PNG_HANDLE_CHUNK_*" macros out of PNG_ASSEMBLER_CODE_SUPPORTED
- section of png.h where they were inadvertently placed in version rc3.
-
-Version 1.2.6 and 1.0.16 [August 15, 2004]
- Revised pngtest so memory allocation testing is only done when PNG_DEBUG==1.
-
-Version 1.2.7beta1 [August 26, 2004]
- Removed unused pngasmrd.h file.
- Removed references to uu.net for archived files. Added references to
- PNG Spec (second edition) and the PNG ISO/IEC Standard.
- Added "test-dd" target in 15 makefiles, to run pngtest in DESTDIR.
- Fixed bug with "optimized window size" in the IDAT datastream, that
- causes libpng to write PNG files with incorrect zlib header bytes.
-
-Version 1.2.7beta2 [August 28, 2004]
- Fixed bug with sCAL chunk and big-endian machines (David Munro).
- Undid new code added in 1.2.6rc2 to update the color_type in
- png_set_filler().
- Added png_set_add_alpha() that updates color type.
-
-Version 1.0.17rc1 and 1.2.7rc1 [September 4, 2004]
- Revised png_set_strip_filler() to not remove alpha if color_type has alpha.
-
-Version 1.2.7 and 1.0.17 [September 12, 2004]
- Added makefile.hp64
- Changed projects/msvc/png32ms.def to scripts/png32ms.def in makefile.cygwin
-
-Version 1.2.8beta1 [November 1, 2004]
- Fixed bug in png_text_compress() that would fail to complete a large block.
- Fixed bug, introduced in libpng-1.2.7, that overruns a buffer during
- strip alpha operation in png_do_strip_filler().
- Added PNG_1_2_X definition in pngconf.h
- Use #ifdef to comment out png_info_init in png.c and png_read_init in
- pngread.c (as of 1.3.0)
-
-Version 1.2.8beta2 [November 2, 2004]
- Reduce color_type to a nonalpha type after strip alpha operation in
- png_do_strip_filler().
-
-Version 1.2.8beta3 [November 3, 2004]
- Revised definitions of PNG_MAX_UINT_32, PNG_MAX_SIZE, and PNG_MAXSUM
-
-Version 1.2.8beta4 [November 12, 2004]
- Fixed (again) definition of PNG_LIBPNG_VER_DLLNUM in png.h (Cosmin).
- Added PNG_LIBPNG_BUILD_PRIVATE in png.h (Cosmin).
- Set png_ptr->zstream.data_type to Z_BINARY, to avoid unnecessary detection
- of data type in deflate (Cosmin).
- Deprecated but continue to support SPECIALBUILD and PRIVATEBUILD in favor of
- PNG_LIBPNG_BUILD_SPECIAL_STRING and PNG_LIBPNG_BUILD_PRIVATE_STRING.
-
-Version 1.2.8beta5 [November 20, 2004]
- Use png_ptr->flags instead of png_ptr->transformations to pass
- PNG_STRIP_ALPHA info to png_do_strip_filler(), to preserve ABI
- compatibility.
- Revised handling of SPECIALBUILD, PRIVATEBUILD,
- PNG_LIBPNG_BUILD_SPECIAL_STRING and PNG_LIBPNG_BUILD_PRIVATE_STRING.
-
-Version 1.2.8rc1 [November 24, 2004]
- Moved handling of BUILD macros from pngconf.h to png.h
- Added definition of PNG_LIBPNG_BASE_TYPE in png.h, inadvertently
- omitted from beta5.
- Revised scripts/pngw32.rc
- Despammed mailing addresses by masking "@" with "at".
- Inadvertently installed a supposedly faster test version of pngrutil.c
-
-Version 1.2.8rc2 [November 26, 2004]
- Added two missing "\" in png.h
- Change tests in pngread.c and pngpread.c to
- if (png_ptr->transformations || (png_ptr->flags&PNG_FLAG_STRIP_ALPHA))
- png_do_read_transformations(png_ptr);
-
-Version 1.2.8rc3 [November 28, 2004]
- Reverted pngrutil.c to version libpng-1.2.8beta5.
- Added scripts/makefile.elf with supporting code in pngconf.h for symbol
- versioning (John Bowler).
-
-Version 1.2.8rc4 [November 29, 2004]
- Added projects/visualc7 (Simon-pierre).
-
-Version 1.2.8rc5 [November 29, 2004]
- Fixed new typo in scripts/pngw32.rc
-
-Version 1.2.8 [December 3, 2004]
- Removed projects/visualc7, added projects/visualc71.
-
-Version 1.2.9beta1 [February 21, 2006]
- Initialized some structure members in pngwutil.c to avoid gcc-4.0.0 complaints
- Revised man page and libpng.txt to make it clear that one should not call
- png_read_end or png_write_end after png_read_png or png_write_png.
- Updated references to png-mng-implement mailing list.
- Fixed an incorrect typecast in pngrutil.c
- Added PNG_NO_READ_SUPPORTED conditional for making a write-only library.
- Added PNG_NO_WRITE_INTERLACING_SUPPORTED conditional.
- Optimized alpha-inversion loops in pngwtran.c
- Moved test for nonzero gamma outside of png_build_gamma_table() in pngrtran.c
- Make sure num_trans is <= 256 before copying data in png_set_tRNS().
- Make sure num_palette is <= 256 before copying data in png_set_PLTE().
- Interchanged order of write_swap_alpha and write_invert_alpha transforms.
- Added parentheses in the definition of PNG_LIBPNG_BUILD_TYPE (Cosmin).
- Optimized zlib window flag (CINFO) in contrib/pngsuite/*.png (Cosmin).
- Updated scripts/makefile.bc32 for Borland C++ 5.6 (Cosmin).
- Exported png_get_uint_32, png_save_uint_32, png_get_uint_16, png_save_uint_16,
- png_get_int_32, png_save_int_32, png_get_uint_31 (Cosmin).
- Added type cast (png_byte) in png_write_sCAL() (Cosmin).
- Fixed scripts/makefile.cygwin (Christian Biesinger, Cosmin).
- Default iTXt support was inadvertently enabled.
-
-Version 1.2.9beta2 [February 21, 2006]
- Check for png_rgb_to_gray and png_gray_to_rgb read transformations before
- checking for png_read_dither in pngrtran.c
- Revised checking of chromaticity limits to accommodate extended RGB
- colorspace (John Denker).
- Changed line endings in some of the project files to CRLF, even in the
- "Unix" tar distributions (Cosmin).
- Made png_get_int_32 and png_save_int_32 always available (Cosmin).
- Updated scripts/pngos2.def, scripts/pngw32.def and projects/wince/png32ce.def
- with the newly exported functions.
- Eliminated distributions without the "configure" script.
- Updated INSTALL instructions.
-
-Version 1.2.9beta3 [February 24, 2006]
- Fixed CRCRLF line endings in contrib/visupng/VisualPng.dsp
- Made libpng.pc respect EXEC_PREFIX (D. P. Kreil, J. Bowler)
- Removed reference to pngasmrd.h from Makefile.am
- Renamed CHANGES to ChangeLog.
- Renamed LICENSE to COPYING.
- Renamed ANNOUNCE to NEWS.
- Created AUTHORS file.
-
-Version 1.2.9beta4 [March 3, 2006]
- Changed definition of PKGCONFIG from $prefix/lib to $libdir in configure.ac
- Reverted to filenames LICENSE and ANNOUNCE; removed AUTHORS and COPYING.
- Removed newline from the end of some error and warning messages.
- Removed test for sqrt() from configure.ac and configure.
- Made swap tables in pngtrans.c PNG_CONST (Carlo Bramix).
- Disabled default iTXt support that was inadvertently enabled in
- libpng-1.2.9beta1.
- Added "OS2" to list of systems that don't need underscores, in pnggccrd.c
- Removed libpng version and date from *.c files.
-
-Version 1.2.9beta5 [March 4, 2006]
- Removed trailing blanks from source files.
- Put version and date of latest change in each source file, and changed
- copyright year accordingly.
- More cleanup of configure.ac, Makefile.am, and associated scripts.
- Restored scripts/makefile.elf which was inadvertently deleted.
-
-Version 1.2.9beta6 [March 6, 2006]
- Fixed typo (RELEASE) in configuration files.
-
-Version 1.2.9beta7 [March 7, 2006]
- Removed libpng.vers and libpng.sym from libpng12_la_SOURCES in Makefile.am
- Fixed inconsistent #ifdef's around png_sig_bytes() and png_set_sCAL_s()
- in png.h.
- Updated makefile.elf as suggested by debian.
- Made cosmetic changes to some makefiles, adding LN_SF and other macros.
- Made some makefiles accept "exec_prefix".
-
-Version 1.2.9beta8 [March 9, 2006]
- Fixed some "#if defined (..." which should be "#if defined(..."
- Bug introduced in libpng-1.2.8.
- Fixed inconsistency in definition of png_default_read_data()
- Restored blank that was lost from makefile.sggcc "clean" target in beta7.
- Revised calculation of "current" and "major" for irix in ltmain.sh
- Changed "mkdir" to "MKDIR_P" in some makefiles.
- Separated PNG_EXPAND and PNG_EXPAND_tRNS.
- Added png_set_expand_gray_1_2_4_to_8() and deprecated
- png_set_gray_1_2_4_to_8() which also expands tRNS to alpha.
-
-Version 1.2.9beta9 [March 10, 2006]
- Include "config.h" in pngconf.h when available.
- Added some checks for NULL png_ptr or NULL info_ptr (timeless)
-
-Version 1.2.9beta10 [March 20, 2006]
- Removed extra CR from contrib/visualpng/VisualPng.dsw (Cosmin)
- Made pnggccrd.c PIC-compliant (Christian Aichinger).
- Added makefile.mingw (Wolfgang Glas).
- Revised pngconf.h MMX checking.
-
-Version 1.2.9beta11 [March 22, 2006]
- Fixed out-of-order declaration in pngwrite.c that was introduced in beta9
- Simplified some makefiles by using LIBSO, LIBSOMAJ, and LIBSOVER macros.
-
-Version 1.2.9rc1 [March 31, 2006]
- Defined PNG_USER_PRIVATEBUILD when including "pngusr.h" (Cosmin).
- Removed nonsensical assertion check from pngtest.c (Cosmin).
-
-Version 1.2.9 [April 14, 2006]
- Revised makefile.beos and added "none" selector in ltmain.sh
-
-Version 1.2.10beta1 [April 15, 2006]
- Renamed "config.h" to "png_conf.h" and revised Makefile.am to add
- -DPNG_BUILDING_LIBPNG to compile directive, and modified pngconf.h
- to include png_conf.h only when PNG_BUILDING_LIBPNG is defined.
-
-Version 1.2.10beta2 [April 15, 2006]
- Manually updated Makefile.in and configure. Changed png_conf.h.in
- back to config.h.
-
-Version 1.2.10beta3 [April 15, 2006]
- Change png_conf.h back to config.h in pngconf.h.
-
-Version 1.2.10beta4 [April 16, 2006]
- Change PNG_BUILDING_LIBPNG to PNG_CONFIGURE_LIBPNG in config/Makefile*.
-
-Version 1.2.10beta5 [April 16, 2006]
- Added a configure check for compiling assembler code in pnggccrd.c
-
-Version 1.2.10beta6 [April 17, 2006]
- Revised the configure check for pnggccrd.c
- Moved -DPNG_CONFIGURE_LIBPNG into @LIBPNG_DEFINES@
- Added @LIBPNG_DEFINES@ to arguments when building libpng.sym
-
-Version 1.2.10beta7 [April 18, 2006]
- Change "exec_prefix=$prefix" to "exec_prefix=$(prefix)" in makefiles.
-
-Version 1.2.10rc1 [April 19, 2006]
- Ensure pngconf.h doesn't define both PNG_USE_PNGGCCRD and PNG_USE_PNGVCRD
- Fixed "LN_FS" typo in makefile.sco and makefile.solaris.
-
-Version 1.2.10rc2 [April 20, 2006]
- Added a backslash between -DPNG_CONFIGURE_LIBPNG and -DPNG_NO_ASSEMBLER_CODE
- in configure.ac and configure
- Made the configure warning about versioned symbols less arrogant.
-
-Version 1.2.10rc3 [April 21, 2006]
- Added a note in libpng.txt that png_set_sig_bytes(8) can be used when
- writing an embedded PNG without the 8-byte signature.
- Revised makefiles and configure to avoid making links to libpng.so.*
-
-Version 1.2.10 [April 23, 2006]
- Reverted configure to "rc2" state.
-
-Version 1.2.11beta1 [May 31, 2006]
- scripts/libpng.pc.in contained "configure" style version info and would
- not work with makefiles.
- The shared-library makefiles were linking to libpng.so.0 instead of
- libpng.so.3 compatibility as the library.
-
-Version 1.2.11beta2 [June 2, 2006]
- Increased sprintf buffer from 50 to 52 chars in pngrutil.c to avoid
- buffer overflow.
- Fixed bug in example.c (png_set_palette_rgb -> png_set_palette_to_rgb)
-
-Version 1.2.11beta3 [June 5, 2006]
- Prepended "#! /bin/sh" to ltmail.sh and contrib/pngminus/*.sh (Cosmin).
- Removed the accidental leftover Makefile.in~ (Cosmin).
- Avoided potential buffer overflow and optimized buffer in
- png_write_sCAL(), png_write_sCAL_s() (Cosmin).
- Removed the include directories and libraries from CFLAGS and LDFLAGS
- in scripts/makefile.gcc (Nelson A. de Oliveira, Cosmin).
-
-Version 1.2.11beta4 [June 6, 2006]
- Allow zero-length IDAT chunks after the entire zlib datastream, but not
- after another intervening chunk type.
-
-Version 1.0.19rc1, 1.2.11rc1 [June 13, 2006]
- Deleted extraneous square brackets from [config.h] in configure.ac
-
-Version 1.0.19rc2, 1.2.11rc2 [June 14, 2006]
- Added prototypes for PNG_INCH_CONVERSIONS functions to png.h
- Revised INSTALL and autogen.sh
- Fixed typo in several makefiles (-W1 should be -Wl)
- Added typedef for png_int_32 and png_uint_32 on 64-bit systems.
-
-Version 1.0.19rc3, 1.2.11rc3 [June 15, 2006]
- Removed the new typedefs for 64-bit systems (delay until version 1.4.0)
- Added one zero element to png_gamma_shift[] array in pngrtran.c to avoid
- reading out of bounds.
-
-Version 1.0.19rc4, 1.2.11rc4 [June 15, 2006]
- Really removed the new typedefs for 64-bit systems.
-
-Version 1.0.19rc5, 1.2.11rc5 [June 22, 2006]
- Removed png_sig_bytes entry from scripts/pngw32.def
-
-Version 1.0.19, 1.2.11 [June 26, 2006]
- None.
-
-Version 1.0.20, 1.2.12 [June 27, 2006]
- Really increased sprintf buffer from 50 to 52 chars in pngrutil.c to avoid
- buffer overflow.
-
-Version 1.2.13beta1 [October 2, 2006]
- Removed AC_FUNC_MALLOC from configure.ac
- Work around Intel-Mac compiler bug by setting PNG_NO_MMX_CODE in pngconf.h
- Change "logical" to "bitwise" throughout documentation.
- Detect and fix attempt to write wrong iCCP profile length (CVE-2006-7244)
-
-Version 1.0.21, 1.2.13 [November 14, 2006]
- Fix potential buffer overflow in sPLT chunk handler.
- Fix Makefile.am to not try to link to noexistent files.
- Check all exported functions for NULL png_ptr.
-
-Version 1.2.14beta1 [November 17, 2006]
- Relocated three misplaced tests for NULL png_ptr.
- Built Makefile.in with automake-1.9.6 instead of 1.9.2.
- Build configure with autoconf-2.60 instead of 2.59
-
-Version 1.2.14beta2 [November 17, 2006]
- Added some typecasts in png_zalloc().
-
-Version 1.2.14rc1 [November 20, 2006]
- Changed "strtod" to "png_strtod" in pngrutil.c
-
-Version 1.0.22, 1.2.14 [November 27, 2006]
- Added missing "$(srcdir)" in Makefile.am and Makefile.in
-
-Version 1.2.15beta1 [December 3, 2006]
- Generated configure with autoconf-2.61 instead of 2.60
- Revised configure.ac to update libpng.pc and libpng-config.
-
-Version 1.2.15beta2 [December 3, 2006]
- Always export MMX asm functions, just stubs if not building pnggccrd.c
-
-Version 1.2.15beta3 [December 4, 2006]
- Add "png_bytep" typecast to profile while calculating length in pngwutil.c
-
-Version 1.2.15beta4 [December 7, 2006]
- Added scripts/CMakeLists.txt
- Changed PNG_NO_ASSEMBLER_CODE to PNG_NO_MMX_CODE in scripts, like 1.4.0beta
-
-Version 1.2.15beta5 [December 7, 2006]
- Changed some instances of PNG_ASSEMBLER_* to PNG_MMX_* in pnggccrd.c
- Revised scripts/CMakeLists.txt
-
-Version 1.2.15beta6 [December 13, 2006]
- Revised scripts/CMakeLists.txt and configure.ac
-
-Version 1.2.15rc1 [December 18, 2006]
- Revised scripts/CMakeLists.txt
-
-Version 1.2.15rc2 [December 21, 2006]
- Added conditional #undef jmpbuf in pngtest.c to undo #define in AIX headers.
- Added scripts/makefile.nommx
-
-Version 1.2.15rc3 [December 25, 2006]
- Fixed shared library numbering error that was introduced in 1.2.15beta6.
-
-Version 1.2.15rc4 [December 27, 2006]
- Fixed handling of rgb_to_gray when png_ptr->color.gray isn't set.
-
-Version 1.2.15rc5 [December 31, 2006]
- Revised handling of rgb_to_gray.
-
-Version 1.2.15 [January 5, 2007]
- Added some (unsigned long) typecasts in pngtest.c to avoid printing errors.
-
-Version 1.2.16beta1 [January 6, 2007]
- Fix bugs in makefile.nommx
-
-Version 1.2.16beta2 [January 16, 2007]
- Revised scripts/CMakeLists.txt
-
-Version 1.2.16 [January 31, 2007]
- No changes.
-
-Version 1.2.17beta1 [March 6, 2007]
- Revised scripts/CMakeLists.txt to install both shared and static libraries.
- Deleted a redundant line from pngset.c.
-
-Version 1.2.17beta2 [April 26, 2007]
- Relocated misplaced test for png_ptr == NULL in pngpread.c
- Change "==" to "&" for testing PNG_RGB_TO_GRAY_ERR & PNG_RGB_TO_GRAY_WARN
- flags.
- Changed remaining instances of PNG_ASSEMBLER_* to PNG_MMX_*
- Added pngerror() when write_IHDR fails in deflateInit2().
- Added "const" to some array declarations.
- Mention examples of libpng usage in the libpng*.txt and libpng.3 documents.
-
-Version 1.2.17rc1 [May 4, 2007]
- No changes.
-
-Version 1.2.17rc2 [May 8, 2007]
- Moved several PNG_HAVE_* macros out of PNG_INTERNAL because applications
- calling set_unknown_chunk_location() need them.
- Changed transformation flag from PNG_EXPAND_tRNS to PNG_EXPAND in
- png_set_expand_gray_1_2_4_to_8().
- Added png_ptr->unknown_chunk to hold working unknown chunk data, so it
- can be free'ed in case of error. Revised unknown chunk handling in
- pngrutil.c and pngpread.c to use this structure.
-
-Version 1.2.17rc3 [May 8, 2007]
- Revised symbol-handling in configure script.
-
-Version 1.2.17rc4 [May 10, 2007]
- Revised unknown chunk handling to avoid storing unknown critical chunks.
-
-Version 1.0.25 [May 15, 2007]
-Version 1.2.17 [May 15, 2007]
- Added "png_ptr->num_trans=0" before error return in png_handle_tRNS,
- to eliminate a vulnerability (CVE-2007-2445, CERT VU#684664)
-
-Version 1.0.26 [May 15, 2007]
-Version 1.2.18 [May 15, 2007]
- Reverted the libpng-1.2.17rc3 change to symbol-handling in configure script
-
-Version 1.2.19beta1 [May 18, 2007]
- Changed "const static" to "static PNG_CONST" everywhere, mostly undoing
- change of libpng-1.2.17beta2. Changed other "const" to "PNG_CONST"
- Changed some handling of unused parameters, to avoid compiler warnings.
- "if (unused == NULL) return;" becomes "unused = unused".
-
-Version 1.2.19beta2 [May 18, 2007]
- Only use the valid bits of tRNS value in png_do_expand() (Brian Cartier)
-
-Version 1.2.19beta3 [May 19, 2007]
- Add some "png_byte" typecasts in png_check_keyword() and write new_key
- instead of key in zTXt chunk (Kevin Ryde).
-
-Version 1.2.19beta4 [May 21, 2007]
- Add png_snprintf() function and use it in place of sprint() for improved
- defense against buffer overflows.
-
-Version 1.2.19beta5 [May 21, 2007]
- Fixed png_handle_tRNS() to only use the valid bits of tRNS value.
- Changed handling of more unused parameters, to avoid compiler warnings.
- Removed some PNG_CONST in pngwutil.c to avoid compiler warnings.
-
-Version 1.2.19beta6 [May 22, 2007]
- Added some #ifdef PNG_MMX_CODE_SUPPORTED where needed in pngvcrd.c
- Added a special "_MSC_VER" case that defines png_snprintf to _snprintf
-
-Version 1.2.19beta7 [May 22, 2007]
- Squelched png_squelch_warnings() in pnggccrd.c and added
- an #ifdef PNG_MMX_CODE_SUPPORTED block around the declarations that caused
- the warnings that png_squelch_warnings was squelching.
-
-Version 1.2.19beta8 [May 22, 2007]
- Removed __MMX__ from test in pngconf.h.
-
-Version 1.2.19beta9 [May 23, 2007]
- Made png_squelch_warnings() available via PNG_SQUELCH_WARNINGS macro.
- Revised png_squelch_warnings() so it might work.
- Updated makefile.sgcc and makefile.solaris; added makefile.solaris-x86.
-
-Version 1.2.19beta10 [May 24, 2007]
- Resquelched png_squelch_warnings(), use "__attribute__((used))" instead.
-
-Version 1.4.0beta1 [April 20, 2006]
- Enabled iTXt support (changes png_struct, thus requires so-number change).
- Cleaned up PNG_ASSEMBLER_CODE_SUPPORTED vs PNG_MMX_CODE_SUPPORTED
- Eliminated PNG_1_0_X and PNG_1_2_X macros.
- Removed deprecated functions png_read_init, png_write_init, png_info_init,
- png_permit_empty_plte, png_set_gray_1_2_4_to_8, png_check_sig, and
- removed the deprecated macro PNG_MAX_UINT.
- Moved "PNG_INTERNAL" parts of png.h and pngconf.h into pngintrn.h
- Removed many WIN32_WCE #ifdefs (Cosmin).
- Reduced dependency on C-runtime library when on Windows (Simon-Pierre)
- Replaced sprintf() with png_sprintf() (Simon-Pierre)
-
-Version 1.4.0beta2 [April 20, 2006]
- Revised makefiles and configure to avoid making links to libpng.so.*
- Moved some leftover MMX-related defines from pngconf.h to pngintrn.h
- Updated scripts/pngos2.def, pngw32.def, and projects/wince/png32ce.def
-
-Version 1.4.0beta3 [May 10, 2006]
- Updated scripts/pngw32.def to comment out MMX functions.
- Added PNG_NO_GET_INT_32 and PNG_NO_SAVE_INT_32 macros.
- Scripts/libpng.pc.in contained "configure" style version info and would
- not work with makefiles.
- Revised pngconf.h and added pngconf.h.in, so makefiles and configure can
- pass defines to libpng and applications.
-
-Version 1.4.0beta4 [May 11, 2006]
- Revised configure.ac, Makefile.am, and many of the makefiles to write
- their defines in pngconf.h.
-
-Version 1.4.0beta5 [May 15, 2006]
- Added a missing semicolon in Makefile.am and Makefile.in
- Deleted extraneous square brackets from configure.ac
-
-Version 1.4.0beta6 [June 2, 2006]
- Increased sprintf buffer from 50 to 52 chars in pngrutil.c to avoid
- buffer overflow.
- Changed sonum from 0 to 1.
- Removed unused prototype for png_check_sig() from png.h
-
-Version 1.4.0beta7 [June 16, 2006]
- Exported png_write_sig (Cosmin).
- Optimized buffer in png_handle_cHRM() (Cosmin).
- Set pHYs = 2835 x 2835 pixels per meter, and added
- sCAL = 0.352778e-3 x 0.352778e-3 meters, in pngtest.png (Cosmin).
- Added png_set_benign_errors(), png_benign_error(), png_chunk_benign_error().
- Added typedef for png_int_32 and png_uint_32 on 64-bit systems.
- Added "(unsigned long)" typecast on png_uint_32 variables in printf lists.
-
-Version 1.4.0beta8 [June 22, 2006]
- Added demonstration of user chunk support in pngtest.c, to support the
- public sTER chunk and a private vpAg chunk.
-
-Version 1.4.0beta9 [July 3, 2006]
- Removed ordinals from scripts/pngw32.def and removed png_info_int and
- png_set_gray_1_2_4_to_8 entries.
- Inline call of png_get_uint_32() in png_get_uint_31().
- Use png_get_uint_31() to get vpAg width and height in pngtest.c
- Removed WINCE and Netware projects.
- Removed standalone Y2KINFO file.
-
-Version 1.4.0beta10 [July 12, 2006]
- Eliminated automatic copy of pngconf.h to pngconf.h.in from configure and
- some makefiles, because it was not working reliably. Instead, distribute
- pngconf.h.in along with pngconf.h and cause configure and some of the
- makefiles to update pngconf.h from pngconf.h.in.
- Added pngconf.h to DEPENDENCIES in Makefile.am
-
-Version 1.4.0beta11 [August 19, 2006]
- Removed AC_FUNC_MALLOC from configure.ac.
- Added a warning when writing iCCP profile with mismatched profile length.
- Patched pnggccrd.c to assemble on x86_64 platforms.
- Moved chunk header reading into a separate function png_read_chunk_header()
- in pngrutil.c. The chunk header (len+sig) is now serialized in a single
- operation (Cosmin).
- Implemented support for I/O states. Added png_ptr member io_state, and
- functions png_get_io_chunk_name() and png_get_io_state() in pngget.c
- (Cosmin).
- Added png_get_io_chunk_name and png_get_io_state to scripts/*.def (Cosmin).
- Renamed scripts/pngw32.* to scripts/pngwin.* (Cosmin).
- Removed the include directories and libraries from CFLAGS and LDFLAGS
- in scripts/makefile.gcc (Cosmin).
- Used png_save_uint_32() to set vpAg width and height in pngtest.c (Cosmin).
- Cast to proper type when getting/setting vpAg units in pngtest.c (Cosmin).
- Added pngintrn.h to the Visual C++ projects (Cosmin).
- Removed scripts/list (Cosmin).
- Updated copyright year in scripts/pngwin.def (Cosmin).
- Removed PNG_TYPECAST_NULL and used standard NULL consistently (Cosmin).
- Disallowed the user to redefine png_size_t, and enforced a consistent use
- of png_size_t across libpng (Cosmin).
- Changed the type of png_ptr->rowbytes, PNG_ROWBYTES() and friends
- to png_size_t (Cosmin).
- Removed png_convert_size() and replaced png_sizeof with sizeof (Cosmin).
- Removed some unnecessary type casts (Cosmin).
- Changed prototype of png_get_compression_buffer_size() and
- png_set_compression_buffer_size() to work with png_size_t instead of
- png_uint_32 (Cosmin).
- Removed png_memcpy_check() and png_memset_check() (Cosmin).
- Fixed a typo (png_byte --> png_bytep) in libpng.3 and libpng.txt (Cosmin).
- Clarified that png_zalloc() does not clear the allocated memory,
- and png_zalloc() and png_zfree() cannot be PNGAPI (Cosmin).
- Renamed png_mem_size_t to png_alloc_size_t, fixed its definition in
- pngconf.h, and used it in all memory allocation functions (Cosmin).
- Renamed pngintrn.h to pngpriv.h, added a comment at the top of the file
- mentioning that the symbols declared in that file are private, and
- updated the scripts and the Visual C++ projects accordingly (Cosmin).
- Removed circular references between pngconf.h and pngconf.h.in in
- scripts/makefile.vc*win32 (Cosmin).
- Removing trailing '.' from the warning and error messages (Cosmin).
- Added pngdefs.h that is built by makefile or configure, instead of
- pngconf.h.in (Glenn).
- Detect and fix attempt to write wrong iCCP profile length.
-
-Version 1.4.0beta12 [October 19, 2006]
- Changed "logical" to "bitwise" in the documentation.
- Work around Intel-Mac compiler bug by setting PNG_NO_MMX_CODE in pngconf.h
- Add a typecast to stifle compiler warning in pngrutil.c
-
-Version 1.4.0beta13 [November 10, 2006]
- Fix potential buffer overflow in sPLT chunk handler.
- Fix Makefile.am to not try to link to noexistent files.
-
-Version 1.4.0beta14 [November 15, 2006]
- Check all exported functions for NULL png_ptr.
-
-Version 1.4.0beta15 [November 17, 2006]
- Relocated two misplaced tests for NULL png_ptr.
- Built Makefile.in with automake-1.9.6 instead of 1.9.2.
- Build configure with autoconf-2.60 instead of 2.59
- Add "install: all" in Makefile.am so "configure; make install" will work.
-
-Version 1.4.0beta16 [November 17, 2006]
- Added a typecast in png_zalloc().
-
-Version 1.4.0beta17 [December 4, 2006]
- Changed "new_key[79] = '\0';" to "(*new_key)[79] = '\0';" in pngwutil.c
- Add "png_bytep" typecast to profile while calculating length in pngwutil.c
-
-Version 1.4.0beta18 [December 7, 2006]
- Added scripts/CMakeLists.txt
-
-Version 1.4.0beta19 [May 16, 2007]
- Revised scripts/CMakeLists.txt
- Rebuilt configure and Makefile.in with newer tools.
- Added conditional #undef jmpbuf in pngtest.c to undo #define in AIX headers.
- Added scripts/makefile.nommx
-
-Version 1.4.0beta20 [July 9, 2008]
- Moved several PNG_HAVE_* macros from pngpriv.h to png.h because applications
- calling set_unknown_chunk_location() need them.
- Moved several macro definitions from pngpriv.h to pngconf.h
- Merge with changes to the 1.2.X branch, as of 1.2.30beta04.
- Deleted all use of the MMX assembler code and Intel-licensed optimizations.
- Revised makefile.mingw
-
-Version 1.4.0beta21 [July 21, 2008]
- Moved local array "chunkdata" from pngrutil.c to the png_struct, so
- it will be freed by png_read_destroy() in case of a read error (Kurt
- Christensen).
-
-Version 1.4.0beta22 [July 21, 2008]
- Change "purpose" and "buffer" to png_ptr->chunkdata to avoid memory leaking.
-
-Version 1.4.0beta23 [July 22, 2008]
- Change "chunkdata = NULL" to "png_ptr->chunkdata = NULL" several places in
- png_decompress_chunk().
-
-Version 1.4.0beta24 [July 25, 2008]
- Change all remaining "chunkdata" to "png_ptr->chunkdata" in
- png_decompress_chunk(), and remove "chunkdata" from parameter list.
- Put a call to png_check_chunk_name() in png_read_chunk_header().
- Revised png_check_chunk_name() to reject a name with a lowercase 3rd byte.
- Removed two calls to png_check_chunk_name() occuring later in the process.
- Define PNG_NO_ERROR_NUMBERS by default in pngconf.h
-
-Version 1.4.0beta25 [July 30, 2008]
- Added a call to png_check_chunk_name() in pngpread.c
- Reverted png_check_chunk_name() to accept a name with a lowercase 3rd byte.
- Added png_push_have_buffer() function to pngpread.c
- Eliminated PNG_BIG_ENDIAN_SUPPORTED and associated png_get_* macros.
- Made inline expansion of png_get_*() optional with PNG_USE_READ_MACROS.
- Eliminated all PNG_USELESS_TESTS and PNG_CORRECT_PALETTE_SUPPORTED code.
- Synced contrib directory and configure files with libpng-1.2.30beta06.
- Eliminated no-longer-used pngdefs.h (but it's still built in the makefiles)
- Relocated a misplaced "#endif /* PNG_NO_WRITE_FILTER */" in pngwutil.c
-
-Version 1.4.0beta26 [August 4, 2008]
- Removed png_push_have_buffer() function in pngpread.c. It increased the
- compiled library size slightly.
- Changed "-Wall" to "-W -Wall" in the CFLAGS in all makefiles (Cosmin Truta)
- Declared png_ptr "volatile" in pngread.c and pngwrite.c to avoid warnings.
- Updated contrib/visupng/cexcept.h to version 2.0.1
- Added PNG_LITERAL_CHARACTER macros for #, [, and ].
-
-Version 1.4.0beta27 [August 5, 2008]
- Revised usage of PNG_LITERAL_SHARP in pngerror.c.
- Moved newline character from individual png_debug messages into the
- png_debug macros.
- Allow user to #define their own png_debug, png_debug1, and png_debug2.
-
-Version 1.4.0beta28 [August 5, 2008]
- Revised usage of PNG_LITERAL_SHARP in pngerror.c.
- Added PNG_STRING_NEWLINE macro
-
-Version 1.4.0beta29 [August 9, 2008]
- Revised usage of PNG_STRING_NEWLINE to work on non-ISO compilers.
- Added PNG_STRING_COPYRIGHT macro.
- Added non-ISO versions of png_debug macros.
-
-Version 1.4.0beta30 [August 14, 2008]
- Added premultiplied alpha feature (Volker Wiendl).
-
-Version 1.4.0beta31 [August 18, 2008]
- Moved png_set_premultiply_alpha from pngtrans.c to pngrtran.c
- Removed extra crc check at the end of png_handle_cHRM(). Bug introduced
- in libpng-1.4.0beta20.
-
-Version 1.4.0beta32 [August 19, 2008]
- Added PNG_WRITE_FLUSH_SUPPORTED block around new png_flush() call.
- Revised PNG_NO_STDIO version of png_write_flush()
-
-Version 1.4.0beta33 [August 20, 2008]
- Added png_get|set_chunk_cache_max() to limit the total number of sPLT,
- text, and unknown chunks that can be stored.
-
-Version 1.4.0beta34 [September 6, 2008]
- Shortened tIME_string to 29 bytes in pngtest.c
- Fixed off-by-one error introduced in png_push_read_zTXt() function in
- libpng-1.2.30beta04/pngpread.c (Harald van Dijk)
-
-Version 1.4.0beta35 [October 6, 2008]
- Changed "trans_values" to "trans_color".
- Changed so-number from 0 to 14. Some OS do not like 0.
- Revised makefile.darwin to fix shared library numbering.
- Change png_set_gray_1_2_4_to_8() to png_set_expand_gray_1_2_4_to_8()
- in example.c (debian bug report)
-
-Version 1.4.0beta36 [October 25, 2008]
- Sync with tEXt vulnerability fix in libpng-1.2.33rc02.
-
-Version 1.4.0beta37 [November 13, 2008]
- Added png_check_cHRM in png.c and moved checking from pngget.c, pngrutil.c,
- and pngwrite.c
-
-Version 1.4.0beta38 [November 22, 2008]
- Added check for zero-area RGB cHRM triangle in png_check_cHRM() and
- png_check_cHRM_fixed().
-
-Version 1.4.0beta39 [November 23, 2008]
- Revised png_warning() to write its message on standard output by default
- when warning_fn is NULL.
-
-Version 1.4.0beta40 [November 24, 2008]
- Eliminated png_check_cHRM(). Instead, always use png_check_cHRM_fixed().
- In png_check_cHRM_fixed(), ensure white_y is > 0, and removed redundant
- check for all-zero coordinates that is detected by the triangle check.
-
-Version 1.4.0beta41 [November 26, 2008]
- Fixed string vs pointer-to-string error in png_check_keyword().
- Rearranged test expressions in png_check_cHRM_fixed() to avoid internal
- overflows.
- Added PNG_NO_CHECK_cHRM conditional.
-
-Version 1.4.0beta42, 43 [December 1, 2008]
- Merge png_debug with version 1.2.34beta04.
-
-Version 1.4.0beta44 [December 6, 2008]
- Removed redundant check for key==NULL before calling png_check_keyword()
- to ensure that new_key gets initialized and removed extra warning
- (Merge with version 1.2.34beta05 -- Arvan Pritchard).
-
-Version 1.4.0beta45 [December 9, 2008]
- In png_write_png(), respect the placement of the filler bytes in an earlier
- call to png_set_filler() (Jim Barry).
-
-Version 1.4.0beta46 [December 10, 2008]
- Undid previous change and added PNG_TRANSFORM_STRIP_FILLER_BEFORE and
- PNG_TRANSFORM_STRIP_FILLER_AFTER conditionals and deprecated
- PNG_TRANSFORM_STRIP_FILLER (Jim Barry).
-
-Version 1.4.0beta47 [December 15, 2008]
- Support for dithering was disabled by default, because it has never
- been well tested and doesn't work very well. The code has not
- been removed, however, and can be enabled by building libpng with
- PNG_READ_DITHER_SUPPORTED defined.
-
-Version 1.4.0beta48 [February 14, 2009]
- Added new exported function png_calloc().
- Combined several instances of png_malloc(); png_memset() into png_calloc().
- Removed prototype for png_freeptr() that was added in libpng-1.4.0beta24
- but was never defined.
-
-Version 1.4.0beta49 [February 28, 2009]
- Added png_fileno() macro to pngconf.h, used in pngwio.c
- Corrected order of #ifdef's in png_debug definition in png.h
- Fixed bug introduced in libpng-1.4.0beta48 with the memset arguments
- for pcal_params.
- Fixed order of #ifdef directives in the png_debug defines in png.h
- (bug introduced in libpng-1.2.34/1.4.0beta29).
- Revised comments in png_set_read_fn() and png_set_write_fn().
-
-Version 1.4.0beta50 [March 18, 2009]
- Use png_calloc() instead of png_malloc() to allocate big_row_buf when
- reading an interlaced file, to avoid a possible UMR.
- Undid revision of PNG_NO_STDIO version of png_write_flush(). Users
- having trouble with fflush() can build with PNG_NO_WRITE_FLUSH defined
- or supply their own flush_fn() replacement.
- Revised libpng*.txt and png.h documentation about use of png_write_flush()
- and png_set_write_fn().
- Removed fflush() from pngtest.c.
- Added "#define PNG_NO_WRITE_FLUSH" to contrib/pngminim/encoder/pngusr.h
-
-Version 1.4.0beta51 [March 21, 2009]
- Removed new png_fileno() macro from pngconf.h .
-
-Version 1.4.0beta52 [March 27, 2009]
- Relocated png_do_chop() ahead of building gamma tables in pngrtran.c
- This avoids building 16-bit gamma tables unnecessarily.
- Removed fflush() from pngtest.c.
- Added "#define PNG_NO_WRITE_FLUSH" to contrib/pngminim/encoder/pngusr.h
- Added a section on differences between 1.0.x and 1.2.x to libpng.3/libpng.txt
-
-Version 1.4.0beta53 [April 1, 2009]
- Removed some remaining MMX macros from pngpriv.h
- Fixed potential memory leak of "new_name" in png_write_iCCP() (Ralph Giles)
-
-Version 1.4.0beta54 [April 13, 2009]
- Added "ifndef PNG_SKIP_SETJMP_CHECK" block in pngconf.h to allow
- application code writers to bypass the check for multiple inclusion
- of setjmp.h when they know that it is safe to ignore the situation.
- Eliminated internal use of setjmp() in pngread.c and pngwrite.c
- Reordered ancillary chunks in pngtest.png to be the same as what
- pngtest now produces, and made some cosmetic changes to pngtest output.
- Eliminated deprecated png_read_init_3() and png_write_init_3() functions.
-
-Version 1.4.0beta55 [April 15, 2009]
- Simplified error handling in pngread.c and pngwrite.c by putting
- the new png_read_cleanup() and png_write_cleanup() functions inline.
-
-Version 1.4.0beta56 [April 25, 2009]
- Renamed "user_chunk_data" to "my_user_chunk_data" in pngtest.c to suppress
- "shadowed declaration" warning from gcc-4.3.3.
- Renamed "gamma" to "png_gamma" in pngset.c to avoid "shadowed declaration"
- warning about a global "gamma" variable in math.h on some platforms.
-
-Version 1.4.0beta57 [May 2, 2009]
- Removed prototype for png_freeptr() that was added in libpng-1.4.0beta24
- but was never defined (again).
- Rebuilt configure scripts with autoconf-2.63 instead of 2.62
- Removed pngprefs.h and MMX from makefiles
-
-Version 1.4.0beta58 [May 14, 2009]
- Changed pngw32.def to pngwin.def in makefile.mingw (typo was introduced
- in beta57).
- Clarified usage of sig_bit versus sig_bit_p in example.c (Vincent Torri)
-
-Version 1.4.0beta59 [May 15, 2009]
- Reformated sources in libpng style (3-space intentation, comment format)
- Fixed typo in libpng docs (PNG_FILTER_AVE should be PNG_FILTER_AVG)
- Added sections about the git repository and our coding style to the
- documentation
- Relocated misplaced #endif in pngwrite.c, sCAL chunk handler.
-
-Version 1.4.0beta60 [May 19, 2009]
- Conditionally compile png_read_finish_row() which is not used by
- progressive readers.
- Added contrib/pngminim/preader to demonstrate building minimal progressive
- decoder, based on contrib/gregbook with embedded libpng and zlib.
-
-Version 1.4.0beta61 [May 20, 2009]
- In contrib/pngminim/*, renamed "makefile.std" to "makefile", since there
- is only one makefile in those directories, and revised the README files
- accordingly.
- More reformatting of comments, mostly to capitalize sentences.
-
-Version 1.4.0beta62 [June 2, 2009]
- Added "#define PNG_NO_WRITE_SWAP" to contrib/pngminim/encoder/pngusr.h
- and "define PNG_NO_READ_SWAP" to decoder/pngusr.h and preader/pngusr.h
- Reformatted several remaining "else statement" into two lines.
- Added a section to the libpng documentation about using png_get_io_ptr()
- in configure scripts to detect the presence of libpng.
-
-Version 1.4.0beta63 [June 15, 2009]
- Revised libpng*.txt and libpng.3 to mention calling png_set_IHDR()
- multiple times and to specify the sample order in the tRNS chunk,
- because the ISO PNG specification has a typo in the tRNS table.
- Changed several PNG_UNKNOWN_CHUNK_SUPPORTED to
- PNG_HANDLE_AS_UNKNOWN_SUPPORTED, to make the png_set_keep mechanism
- available for ignoring known chunks even when not saving unknown chunks.
- Adopted preference for consistent use of "#ifdef" and "#ifndef" versus
- "#if defined()" and "if !defined()" where possible.
-
-Version 1.4.0beta64 [June 24, 2009]
- Eliminated PNG_LEGACY_SUPPORTED code.
- Moved the various unknown chunk macro definitions outside of the
- PNG_READ|WRITE_ANCILLARY_CHUNK_SUPPORTED blocks.
-
-Version 1.4.0beta65 [June 26, 2009]
- Added a reference to the libpng license in each file.
-
-Version 1.4.0beta66 [June 27, 2009]
- Refer to the libpng license instead of the libpng license in each file.
-
-Version 1.4.0beta67 [July 6, 2009]
- Relocated INVERT_ALPHA within png_read_png() and png_write_png().
- Added high-level API transform PNG_TRANSFORM_GRAY_TO_RGB.
- Added an "xcode" project to the projects directory (Alam Arias).
-
-Version 1.4.0beta68 [July 19, 2009]
- Avoid some tests in filter selection in pngwutil.c
-
-Version 1.4.0beta69 [July 25, 2009]
- Simplified the new filter-selection test. This runs faster in the
- common "PNG_ALL_FILTERS" and PNG_FILTER_NONE cases.
- Removed extraneous declaration from the new call to png_read_gray_to_rgb()
- (bug introduced in libpng-1.4.0beta67).
- Fixed up xcode project (Alam Arias)
- Added a prototype for png_64bit_product() in png.c
-
-Version 1.4.0beta70 [July 27, 2009]
- Avoid a possible NULL dereference in debug build, in png_set_text_2().
- (bug introduced in libpng-0.95, discovered by Evan Rouault)
-
-Version 1.4.0beta71 [July 29, 2009]
- Rebuilt configure scripts with autoconf-2.64.
-
-Version 1.4.0beta72 [August 1, 2009]
- Replaced *.tar.lzma with *.tar.xz in distribution. Get the xz codec
- from .
-
-Version 1.4.0beta73 [August 1, 2009]
- Reject attempt to write iCCP chunk with negative embedded profile length
- (JD Chen) (CVE-2009-5063).
-
-Version 1.4.0beta74 [August 8, 2009]
- Changed png_ptr and info_ptr member "trans" to "trans_alpha".
-
-Version 1.4.0beta75 [August 21, 2009]
- Removed an extra png_debug() recently added to png_write_find_filter().
- Fixed incorrect #ifdef in pngset.c regarding unknown chunk support.
-
-Version 1.4.0beta76 [August 22, 2009]
- Moved an incorrectly located test in png_read_row() in pngread.c
-
-Version 1.4.0beta77 [August 27, 2009]
- Removed lpXYZ.tar.bz2 (with CRLF), KNOWNBUG, libpng-x.y.z-KNOWNBUG.txt,
- and the "noconfig" files from the distribution.
- Moved CMakeLists.txt from scripts into the main libpng directory.
- Various bugfixes and improvements to CMakeLists.txt (Philip Lowman)
-
-Version 1.4.0beta78 [August 31, 2009]
- Converted all PNG_NO_* tests to PNG_*_SUPPORTED everywhere except pngconf.h
- Eliminated PNG_NO_FREE_ME and PNG_FREE_ME_SUPPORTED macros.
- Use png_malloc plus a loop instead of png_calloc() to initialize
- row_pointers in png_read_png().
-
-Version 1.4.0beta79 [September 1, 2009]
- Eliminated PNG_GLOBAL_ARRAYS and PNG_LOCAL_ARRAYS; always use local arrays.
- Eliminated PNG_CALLOC_SUPPORTED macro and always provide png_calloc().
-
-Version 1.4.0beta80 [September 17, 2009]
- Removed scripts/libpng.icc
- Changed typecast of filler from png_byte to png_uint_16 in png_set_filler().
- (Dennis Gustafsson)
- Fixed typo introduced in beta78 in pngtest.c ("#if def " should be "#ifdef ")
-
-Version 1.4.0beta81 [September 23, 2009]
- Eliminated unused PNG_FLAG_FREE_* defines from pngpriv.h
- Expanded TAB characters in pngrtran.c
- Removed PNG_CONST from all "PNG_CONST PNG_CHNK" declarations to avoid
- compiler complaints about doubly declaring things "const".
- Changed all "#if [!]defined(X)" to "if[n]def X" where possible.
- Eliminated unused png_ptr->row_buf_size
-
-Version 1.4.0beta82 [September 25, 2009]
- Moved redundant IHDR checking into new png_check_IHDR() in png.c
- and report all errors found in the IHDR data.
- Eliminated useless call to png_check_cHRM() from pngset.c
-
-Version 1.4.0beta83 [September 25, 2009]
- Revised png_check_IHDR() to eliminate bogus complaint about filter_type.
-
-Version 1.4.0beta84 [September 30, 2009]
- Fixed some inconsistent indentation in pngconf.h
- Revised png_check_IHDR() to add a test for width variable less than 32-bit.
-
-Version 1.4.0beta85 [October 1, 2009]
- Revised png_check_IHDR() again, to check info_ptr members instead of
- the contents of the returned parameters.
-
-Version 1.4.0beta86 [October 9, 2009]
- Updated the "xcode" project (Alam Arias).
- Eliminated a shadowed declaration of "pp" in png_handle_sPLT().
-
-Version 1.4.0rc01 [October 19, 2009]
- Trivial cosmetic changes.
-
-Version 1.4.0beta87 [October 30, 2009]
- Moved version 1.4.0 back into beta.
-
-Version 1.4.0beta88 [October 30, 2009]
- Revised libpng*.txt section about differences between 1.2.x and 1.4.0
- because most of the new features have now been ported back to 1.2.41
-
-Version 1.4.0beta89 [November 1, 2009]
- More bugfixes and improvements to CMakeLists.txt (Philip Lowman)
- Removed a harmless extra png_set_invert_alpha() from pngwrite.c
- Apply png_user_chunk_cache_max within png_decompress_chunk().
- Merged libpng-1.2.41.txt with libpng-1.4.0.txt where appropriate.
-
-Version 1.4.0beta90 [November 2, 2009]
- Removed all remaining WIN32_WCE #ifdefs except those involving the
- time.h "tm" structure
-
-Version 1.4.0beta91 [November 3, 2009]
- Updated scripts/pngw32.def and projects/wince/png32ce.def
- Copied projects/wince/png32ce.def to the scripts directory.
- Added scripts/makefile.wce
- Patched ltmain.sh for wince support.
- Added PNG_CONVERT_tIME_SUPPORTED macro.
-
-Version 1.4.0beta92 [November 4, 2009]
- Make inclusion of time.h in pngconf.h depend on PNG_CONVERT_tIME_SUPPORTED
- Make #define PNG_CONVERT_tIME_SUPPORTED depend on PNG_WRITE_tIME_SUPPORTED
- Revised libpng*.txt to describe differences from 1.2.40 to 1.4.0 (instead
- of differences from 1.2.41 to 1.4.0)
-
-Version 1.4.0beta93 [November 7, 2009]
- Added PNG_DEPSTRUCT, PNG_DEPRECATED, PNG_USE_RESULT, PNG_NORETURN, and
- PNG_ALLOCATED macros to detect deprecated direct access to the
- png_struct or info_struct members and other deprecated usage in
- applications (John Bowler).
- Updated scripts/makefile* to add "-DPNG_CONFIGURE_LIBPNG" to CFLAGS,
- to prevent warnings about direct access to png structs by libpng
- functions while building libpng. They need to be tested, especially
- those using compilers other than gcc.
- Updated projects/visualc6 and visualc71 with "/d PNG_CONFIGURE_LIBPNG".
- They should work but still need to be updated to remove
- references to pnggccrd.c or pngvcrd.c and ASM building.
- Added README.txt to the beos, cbuilder5, netware, and xcode projects warning
- that they need to be updated, to remove references to pnggccrd.c and
- pngvcrd.c and to depend on pngpriv.h
- Removed three direct references to read_info_ptr members in pngtest.c
- that were detected by the new PNG_DEPSTRUCT macro.
- Moved the png_debug macro definitions and the png_read_destroy(),
- png_write_destroy() and png_far_to_near() prototypes from png.h
- to pngpriv.h (John Bowler)
- Moved the synopsis lines for png_read_destroy(), png_write_destroy()
- png_debug(), png_debug1(), and png_debug2() from libpng.3 to libpngpf.3.
-
-Version 1.4.0beta94 [November 9, 2009]
- Removed the obsolete, unused pnggccrd.c and pngvcrd.c files.
- Updated CMakeLists.txt to add "-DPNG_CONFIGURE_LIBPNG" to the definitions.
- Removed dependency of pngtest.o on pngpriv.h in the makefiles.
- Only #define PNG_DEPSTRUCT, etc. in pngconf.h if not already defined.
-
-Version 1.4.0beta95 [November 10, 2009]
- Changed png_check_sig() to !png_sig_cmp() in contrib programs.
- Added -DPNG_CONFIGURE_LIBPNG to contrib/pngminm/*/makefile
- Changed png_check_sig() to !png_sig_cmp() in contrib programs.
- Corrected the png_get_IHDR() call in contrib/gregbook/readpng2.c
- Changed pngminim/*/gather.sh to stop trying to remove pnggccrd.c and pngvcrd.c
- Added dependency on pngpriv.h in contrib/pngminim/*/makefile
-
-Version 1.4.0beta96 [November 12, 2009]
- Renamed scripts/makefile.wce to scripts/makefile.cegcc
- Revised Makefile.am to use libpng.sys while building libpng.so
- so that only PNG_EXPORT functions are exported.
- Removed the deprecated png_check_sig() function/macro.
- Removed recently removed function names from scripts/*.def
- Revised pngtest.png to put chunks in the same order written by pngtest
- (evidently the same change made in libpng-1.0beta54 was lost).
- Added PNG_PRIVATE macro definition in pngconf.h for possible future use.
-
-Version 1.4.0beta97 [November 13, 2009]
- Restored pngtest.png to the libpng-1.4.0beta7 version.
- Removed projects/beos and netware.txt; no one seems to be supporting them.
- Revised Makefile.in
-
-Version 1.4.0beta98 [November 13, 2009]
- Added the "xcode" project to zip distributions,
- Fixed a typo in scripts/pngwin.def introduced in beta97.
-
-Version 1.4.0beta99 [November 14, 2009]
- Moved libpng-config.in and libpng.pc-configure.in out of the scripts
- directory, to libpng-config.in and libpng-pc.in, respectively, and
- modified Makefile.am and configure.ac accordingly. Now "configure"
- needs nothing from the "scripts" directory.
- Avoid redefining PNG_CONST in pngconf.h
-
-Version 1.4.0beta100 [November 14, 2009]
- Removed ASM builds from projects/visualc6 and projects/visualc71
- Removed scripts/makefile.nommx and makefile.vcawin32
- Revised CMakeLists.txt to account for new location of libpng-config.in
- and libpng-pc.in
- Updated INSTALL to reflect removal and relocation of files.
-
-Version 1.4.0beta101 [November 14, 2009]
- Restored the binary files (*.jpg, *.png, some project files) that were
- accidentally deleted from the zip and 7z distributions when the xcode
- project was added.
-
-Version 1.4.0beta102 [November 18, 2009]
- Added libpng-config.in and libpng-pc.in to the zip and 7z distributions.
- Fixed a typo in projects/visualc6/pngtest.dsp, introduced in beta100.
- Moved descriptions of makefiles and other scripts out of INSTALL into
- scripts/README.txt
- Updated the copyright year in scripts/pngwin.rc from 2006 to 2009.
-
-Version 1.4.0beta103 [November 21, 2009]
- Removed obsolete comments about ASM from projects/visualc71/README_zlib.txt
- Align row_buf on 16-byte boundary in memory.
- Restored the PNG_WRITE_FLUSH_AFTER_IEND_SUPPORTED guard around the call
- to png_flush() after png_write_IEND(). See 1.4.0beta32, 1.4.0beta50
- changes above and 1.2.30, 1.2.30rc01 and rc03 in 1.2.41 CHANGES. Someone
- needs this feature.
- Make the 'png_jmpbuf' macro expand to a call that records the correct
- longjmp function as well as returning a pointer to the setjmp
- jmp_buf buffer, and marked direct access to jmpbuf 'deprecated'.
- (John Bowler)
-
-Version 1.4.0beta104 [November 22, 2009]
- Removed png_longjmp_ptr from scripts/*.def and libpng.3
- Rebuilt configure scripts with autoconf-2.65
-
-Version 1.4.0beta105 [November 25, 2009]
- Use fast integer PNG_DIVIDE_BY_255() or PNG_DIVIDE_BY_65535()
- to accomplish alpha premultiplication when
- PNG_READ_COMPOSITE_NODIV_SUPPORTED is defined.
- Changed "/255" to "/255.0" in background calculations to make it clear
- that the 255 is used as a double.
-
-Version 1.4.0beta106 [November 27, 2009]
- Removed premultiplied alpha feature.
-
-Version 1.4.0beta107 [December 4, 2009]
- Updated README
- Added "#define PNG_NO_PEDANTIC_WARNINGS" in the libpng source files.
- Removed "-DPNG_CONFIGURE_LIBPNG" from the makefiles and projects.
- Revised scripts/makefile.netbsd, makefile.openbsd, and makefile.sco
- to put png.h and pngconf.h in $prefix/include, like the other scripts,
- instead of in $prefix/include/libpng. Also revised makefile.sco
- to put them in $prefix/include/libpng15 instead of in
- $prefix/include/libpng/libpng15.
-
-Version 1.4.0beta108 [December 11, 2009]
- Removed leftover "-DPNG_CONFIGURE_LIBPNG" from contrib/pngminim/*/makefile
- Relocated png_do_chop() to its original position in pngrtran.c; the
- change in version 1.2.41beta08 caused transparency to be handled wrong
- in some 16-bit datastreams (Yusaku Sugai).
-
-Version 1.4.0beta109 [December 13, 2009]
- Added "bit_depth" parameter to the private png_build_gamma_table() function.
- Pass bit_depth=8 to png_build_gamma_table() when bit_depth is 16 but the
- PNG_16_TO_8 transform has been set, to avoid unnecessary build of 16-bit
- tables.
-
-Version 1.4.0rc02 [December 20, 2009]
- Declared png_cleanup_needed "volatile" in pngread.c and pngwrite.c
-
-Version 1.4.0rc03 [December 22, 2009]
- Renamed libpng-pc.in back to libpng.pc.in and revised CMakeLists.txt
- (revising the change in 1.4.0beta99)
-
-Version 1.4.0rc04 [December 25, 2009]
- Swapped PNG_UNKNOWN_CHUNKS_SUPPORTED and PNG_HANDLE_AS_UNKNOWN_SUPPORTED
- in pngset.c to be consistent with other changes in version 1.2.38.
-
-Version 1.4.0rc05 [December 25, 2009]
- Changed "libpng-pc.in" to "libpng.pc.in" in configure.ac, configure, and
- Makefile.in to be consistent with changes in libpng-1.4.0rc03
-
-Version 1.4.0rc06 [December 29, 2009]
- Reverted the gamma_table changes from libpng-1.4.0beta109.
- Fixed some indentation errors.
-
-Version 1.4.0rc07 [January 1, 2010]
- Revised libpng*.txt and libpng.3 about 1.2.x->1.4.x differences.
- Use png_calloc() instead of png_malloc(); png_memset() in pngrutil.c
- Update copyright year to 2010.
-
-Version 1.4.0rc08 [January 2, 2010]
- Avoid deprecated references to png_ptr-io_ptr and png_ptr->error_ptr
- in pngtest.c
-
-Version 1.4.0 [January 3, 2010]
- No changes.
-
-Version 1.4.1beta01 [January 8, 2010]
- Updated CMakeLists.txt for consistent indentation and to avoid an
- unclosed if-statement warning (Philip Lowman).
- Revised Makefile.am and Makefile.in to remove references to Y2KINFO,
- KNOWNBUG, and libpng.la (Robert Schwebel).
- Revised the makefiles to install the same files and symbolic
- links as configure, except for libpng.la and libpng14.la.
- Make png_set|get_compression_buffer_size() available even when
- PNG_WRITE_SUPPORTED is not enabled.
- Revised Makefile.am and Makefile.in to simplify their maintenance.
- Revised scripts/makefile.linux to install a link to libpng14.so.14.1
-
-Version 1.4.1beta02 [January 9, 2010]
- Revised the rest of the makefiles to install a link to libpng14.so.14.1
-
-Version 1.4.1beta03 [January 10, 2010]
- Removed png_set_premultiply_alpha() from scripts/*.def
-
-Version 1.4.1rc01 [January 16, 2010]
- No changes.
-
-Version 1.4.1beta04 [January 23, 2010]
- Revised png_decompress_chunk() to improve speed and memory usage when
- decoding large chunks.
- Added png_set|get_chunk_malloc_max() functions.
-
-Version 1.4.1beta05 [January 26, 2010]
- Relocated "int k" declaration in pngtest.c to minimize its scope.
-
-Version 1.4.1beta06 [January 28, 2010]
- Revised png_decompress_chunk() to use a two-pass method suggested by
- John Bowler.
-
-Version 1.4.1beta07 [February 6, 2010]
- Folded some long lines in the source files.
- Added defineable PNG_USER_CHUNK_CACHE_MAX, PNG_USER_CHUNK_MALLOC_MAX,
- and a PNG_USER_LIMITS_SUPPORTED flag.
- Eliminated use of png_ptr->irowbytes and reused the slot in png_ptr as
- png_ptr->png_user_chunk_malloc_max.
- Revised png_push_save_buffer() to do fewer but larger png_malloc() calls.
-
-Version 1.4.1beta08 [February 6, 2010]
- Minor cleanup and updating of dates and copyright year.
-
-Version 1.5.0beta01 [February 7, 2010]
- Moved declaration of png_struct into private pngstruct.h and png_info
- into pnginfo.h
-
-Version 1.4.1beta09 and 1.5.0beta02 [February 7, 2010]
- Reverted to original png_push_save_buffer() code.
-
-Version 1.4.1beta10 and 1.5.0beta03 [February 8, 2010]
- Return allocated "old_buffer" in png_push_save_buffer() before
- calling png_error(), to avoid a potential memory leak.
- Updated configure script to use SO number 15.
-
-Version 1.5.0beta04 [February 9, 2010]
- Removed malformed "incomplete struct declaration" of png_info from png.h
-
-Version 1.5.0beta05 [February 12, 2010]
- Removed PNG_DEPSTRUCT markup in pngstruct.h and pnginfo.h, and undid the
- linewrapping that it entailed.
- Revised comments in pngstruct.h and pnginfo.h and added pointers to
- the libpng license.
- Changed PNG_INTERNAL to PNG_EXPOSE_INTERNAL_STRUCTURES
- Removed the cbuilder5 project, which has not been updated to 1.4.0.
-
-Version 1.4.1beta12 and 1.5.0beta06 [February 14, 2010]
- Fixed type declaration of png_get_chunk_malloc_max() in pngget.c (Daisuke
- Nishikawa)
-
-Version 1.5.0beta07 [omitted]
-
-Version 1.5.0beta08 [February 19, 2010]
- Changed #ifdef PNG_NO_STDIO_SUPPORTED to #ifdef PNG_NO_CONSOLE_IO_SUPPORTED
- wherever png_snprintf() is used to construct error and warning messages.
- Noted in scripts/makefile.mingw that it expects to be run under MSYS.
- Removed obsolete unused MMX-querying support from contrib/gregbook
- Added exported png_longjmp() function.
- Removed the AIX redefinition of jmpbuf in png.h
- Added -D_ALLSOURCE in configure.ac, makefile.aix, and CMakeLists.txt
- when building on AIX.
-
-Version 1.5.0beta09 [February 19, 2010]
- Removed -D_ALLSOURCE from configure.ac, makefile.aix, and CMakeLists.txt.
- Changed the name of png_ptr->jmpbuf to png_ptr->png_jmpbuf in pngstruct.h
-
-Version 1.5.0beta10 [February 25, 2010]
- Removed unused gzio.c from contrib/pngminim gather and makefile scripts
- Removed replacement error handlers from contrib/gregbook. Because of
- the new png_longjmp() function they are no longer needed.
-
-Version 1.5.0beta11 [March 6, 2010]
- Removed checking for already-included setjmp.h from pngconf.h
- Fixed inconsistent indentations and made numerous cosmetic changes.
- Revised the "SEE ALSO" style of libpng.3, libpngpf.3, and png.5
-
-Version 1.5.0beta12 [March 9, 2010]
- Moved "#include png.h" inside pngpriv.h and removed "#include png.h" from
- the source files, along with "#define PNG_EXPOSE_INTERNAL_STRUCTURES"
- and "#define PNG_NO_PEDANTIC_WARNINGS" (John Bowler).
- Created new pngdebug.h and moved debug definitions there.
-
-Version 1.5.0beta13 [March 10, 2010]
- Protect pngstruct.h, pnginfo.h, and pngdebug.h from being included twice.
- Revise the "#ifdef" blocks in png_inflate() so it will compile when neither
- PNG_USER_CHUNK_MALLOC_MAX nor PNG_SET_CHUNK_MALLOC_LIMIT_SUPPORTED
- is defined.
- Removed unused png_measure_compressed_chunk() from pngpriv.h and libpngpf.3
- Moved the 'config.h' support from pngconf.h to pngpriv.h
- Removed PNGAPI from the png_longjmp_ptr typedef.
- Eliminated dependence of pngtest.c on the private pngdebug.h file.
- Make all png_debug macros into *unterminated* statements or
- expressions (i.e. a trailing ';' must always be added) and correct
- the format statements in various png_debug messages.
-
-Version 1.5.0beta14 [March 14, 2010]
- Removed direct access to png_ptr->io_ptr from the Windows code in pngtest.c
- Revised Makefile.am to account for recent additions and replacements.
- Corrected CE and OS/2 DEF files (scripts/png*def) for symbols removed and
- added ordinal numbers to the Windows DEF file and corrected the duplicated
- ordinal numbers on CE symbols that are commented out.
- Added back in export symbols that can be present in the Windows build but
- are disabled by default.
- PNG_EXPORT changed to include an 'ordinal' field for DEF file generation.
- PNG_CALLBACK added to make callback definitions uniform. PNGAPI split
- into PNGCAPI (base C form), PNGAPI (exports) and PNGCBAPI (callbacks),
- and appropriate changes made to all files. Cygwin builds re-hinged to
- allow procedure call standard changes and to remove the need for the DEF
- file (fixes build on Cygwin).
- Enabled 'attribute' warnings that are relevant to library APIs and callbacks.
- Changed rules for generation of the various symbol files and added a new
- rule for a DEF file (which is also added to the distribution).
- Updated the symbol file generation to stop it adding spurious spaces
- to EOL (coming from preprocessor macro expansion). Added a facility
- to join tokens in the output and rewrite *.dfn to use this.
- Eliminated scripts/*.def in favor of libpng.def; updated projects/visualc71
- and removed scripts/makefile.cygwin.
- Made PNG_BUILD_DLL safe: it can be set whenever a DLL is being built.
- Removed the include of sys/types.h - apparently unnecessary now on the
- platforms on which it happened (all but Mac OS and RISC OS).
- Moved the Mac OS test into pngpriv.h (the only place it is used.)
-
-Version 1.5.0beta15 [March 17, 2010]
- Added symbols.chk target to Makefile.am to validate the symbols in png.h
- against the new DEF file scripts/symbols.def.
- Changed the default DEF file back to pngwin.def.
- Removed makefile.mingw.
- Eliminated PNG_NO_EXTERN and PNG_ALL_EXTERN
-
-Version 1.5.0beta16 [April 1, 2010]
- Make png_text_struct independent of PNG_iTXt_SUPPORTED, so that
- fields are initialized in all configurations. The READ/WRITE
- macros (PNG_(READ|WRITE)_iTXt_SUPPORTED) still function as
- before to disable code to actually read or write iTXt chunks
- and iTXt_SUPPORTED can be used to detect presence of either
- read or write support (but it is probably better to check for
- the one actually required - read or write.)
- Combined multiple png_warning() calls for a single error.
- Restored the macro definition of png_check_sig().
-
-Version 1.5.0beta17 [April 17, 2010]
- Added some "(long)" typecasts to printf calls in png_handle_cHRM().
- Documented the fact that png_set_dither() was disabled since libpng-1.4.0.
- Reenabled png_set_dither() but renamed it to png_set_quantize() to reflect
- more accurately what it actually does. At the same time, renamed
- the PNG_DITHER_[RED,GREEN_BLUE]_BITS macros to
- PNG_QUANTIZE_[RED,GREEN,BLUE]_BITS.
- Added some "(long)" typecasts to printf calls in png_handle_cHRM().
- Freeze build-time only configuration in the build.
- In all prior versions of libpng most configuration options
- controlled by compiler #defines had to be repeated by the
- application code that used libpng. This patch changes this
- so that compilation options that can only be changed at build
- time are frozen in the build. Options that are compiler
- dependent (and those that are system dependent) are evaluated
- each time - pngconf.h holds these. Options that can be changed
- per-file in the application are in png.h. Frozen options are
- in the new installed header file pnglibconf.h (John Bowler)
- Removed the xcode project because it has not been updated to work
- with libpng-1.5.0.
- Removed the ability to include optional pngusr.h
-
-Version 1.5.0beta18 [April 17, 2010]
- Restored the ability to include optional pngusr.h
- Moved replacements for png_error() and png_warning() from the
- contrib/pngminim project to pngerror.c, for use when warnings or
- errors are disabled via PNG_NO_WARN or PNG_NO_ERROR_TEXT, to avoid
- storing unneeded error/warning text.
- Updated contrib/pngminim project to work with the new pnglibconf.h
- Added some PNG_NO_* defines to contrib/pngminim/*/pngusr.h to save space.
-
-Version 1.5.0beta19 [April 24, 2010]
- Added PNG_{READ,WRITE}_INT_FUNCTIONS_SUPPORTED. This allows the functions
- to read and write ints to be disabled independently of PNG_USE_READ_MACROS,
- which allows libpng to be built with the functions even though the default
- is to use the macros - this allows applications to choose at app build
- time whether or not to use macros (previously impossible because the
- functions weren't in the default build.)
- Changed Windows calling convention back to __cdecl for API functions.
- For Windows/x86 platforms only:
- __stdcall is no longer needed for Visual Basic, so libpng-1.5.0 uses
- __cdecl throughout (both API functions and callbacks) on Windows/x86
- platforms.
- Replaced visualc6 and visualc71 projects with new vstudio project
- Relaxed the overly-restrictive permissions of some files.
-
-Version 1.5.0beta20 [April 24, 2010]
- Relaxed more overly-restrictive permissions of some files.
-
-Version 1.5.0beta21 [April 27, 2010]
- Removed some unwanted binary bytes and changed CRLF to NEWLINE in the new
- vstudio project files, and some trivial editing of some files in the
- scripts directory.
- Set PNG_NO_READ_BGR, PNG_NO_IO_STATE, and PNG_NO_TIME_RFC1123 in
- contrib/pngminim/decoder/pngusr.h to make a smaller decoder application.
-
-Version 1.5.0beta22 [April 28, 2010]
- Fixed dependencies of GET_INT_32 - it does not require READ_INT_FUNCTIONS
- because it has a macro equivalent.
- Improved the options.awk script; added an "everything off" option.
- Revised contrib/pngminim to use the "everything off" option in pngusr.dfa.
-
-Version 1.5.0beta23 [April 29, 2010]
- Corrected PNG_REMOVED macro to take five arguments.
- The macro was documented with two arguments (name,ordinal), however
- the symbol checking .dfn files assumed five arguments. The five
- argument form seems more useful so it is changed to that.
- Corrected PNG_UNKNOWN_CHUNKS_SUPPORTED to PNG_HANDLE_AS_UNKNOWN_SUPPORTED
- in gregbook/readpng2.c
- Corrected protection of png_get_user_transform_ptr. The API declaration in
- png.h is removed if both READ and WRITE USER_TRANSFORM are turned off
- but was left defined in pngtrans.c
- Added logunsupported=1 to cause pnglibconf.h to document disabled options.
- This makes the installed pnglibconf.h more readable but causes no
- other change. The intention is that users of libpng will find it
- easier to understand if an API they need is missing.
- Include png_reset_zstream() in png.c only when PNG_READ_SUPPORTED is defined.
- Removed dummy_inflate.c from contrib/pngminim/encoder
- Removed contrib/pngminim/*/gather.sh; gathering is now done in the makefile.
-
-Version 1.5.0beta24 [May 7, 2010]
- Use bitwise "&" instead of arithmetic mod in pngrutil.c calculation of the
- offset of the png_ptr->rowbuf pointer into png_ptr->big_row_buf.
- Added more blank lines for readability.
-
-Version 1.5.0beta25 [June 18, 2010]
- In pngpread.c: png_push_have_row() add check for new_row > height
- Removed the now-redundant check for out-of-bounds new_row from example.c
-
-Version 1.5.0beta26 [June 18, 2010]
- In pngpread.c: png_push_process_row() add check for too many rows.
-
-Version 1.5.0beta27 [June 18, 2010]
- Removed the check added in beta25 as it is now redundant.
-
-Version 1.5.0beta28 [June 20, 2010]
- Rewrote png_process_IDAT_data to consistently treat extra data as warnings
- and handle end conditions more cleanly.
- Removed the new (beta26) check in png_push_process_row().
-
-Version 1.5.0beta29 [June 21, 2010]
- Revised scripts/options.awk to work on Sunos (but still doesn't work)
- Added comment to options.awk and contrib/pngminim/*/makefile to try nawk.
-
-Version 1.5.0beta30 [June 22, 2010]
- Stop memory leak when reading a malformed sCAL chunk.
-
-Version 1.5.0beta31 [June 26, 2010]
- Revised pngpread.c patch of beta28 to avoid an endless loop.
- Removed some trailing blanks.
-
-Version 1.5.0beta32 [June 26, 2010]
- Removed leftover scripts/options.patch and scripts/options.rej
-
-Version 1.5.0beta33 [July 6, 3010]
- Made FIXED and FLOATING options consistent in the APIs they enable and
- disable. Corrected scripts/options.awk to handle both command line
- options and options specified in the .dfa files.
- Changed char *msg to PNG_CONST char *msg in pngrutil.c
- Make png_set_sRGB_gAMA_and_cHRM set values using either the fixed or
- floating point APIs, but not both.
- Reversed patch to remove error handler when the jmp_buf is stored in the
- main program structure, not the png_struct.
- The error handler is needed because the default handler in libpng will
- always use the jmp_buf in the library control structure; this is never
- set. The gregbook code is a useful example because, even though it
- uses setjmp/longjmp, it shows how error handling can be implemented
- using control mechanisms not directly supported by libpng. The
- technique will work correctly with mechanisms such as Microsoft
- Structure Exceptions or C++ exceptions (compiler willing - note that gcc
- does not by default support interworking of C and C++ error handling.)
- Reverted changes to call png_longjmp in contrib/gregbook where it is not
- appropriate. If mainprog->jmpbuf is used by setjmp, then png_longjmp
- cannot be used.
- Changed "extern PNG_EXPORT" to "PNG_EXPORT" in png.h (Jan Nijtmans)
- Changed "extern" to "PNG_EXTERN" in pngpriv.h (except for the 'extern "C" {')
-
-Version 1.5.0beta34 [July 12, 2010]
- Put #ifndef PNG_EXTERN, #endif around the define PNG_EXTERN in pngpriv.h
-
-Version 1.5.0beta35 [July 24, 2010]
- Removed some newly-added TAB characters.
- Added -DNO_PNG_SNPRINTF to CFLAGS in scripts/makefile.dj2
- Moved the definition of png_snprintf() outside of the enclosing
- #ifdef blocks in pngconf.h
-
-Version 1.5.0beta36 [July 29, 2010]
- Patches by John Bowler:
- Fixed point APIs are now supported throughout (no missing APIs).
- Internal fixed point arithmetic support exists for all internal floating
- point operations.
- sCAL validates the floating point strings it is passed.
- Safe, albeit rudimentary, Watcom support is provided by PNG_API_RULE==2
- Two new APIs exist to get the number of passes without turning on the
- PNG_INTERLACE transform and to get the number of rows in the current
- pass.
- A new test program, pngvalid.c, validates the gamma code.
- Errors in the 16-bit gamma correction (overflows) have been corrected.
- cHRM chunk testing is done consistently (previously the floating point
- API bypassed it, because the test really didn't work on FP, now the test
- is performed on the actual values to be stored in the PNG file so it
- works in the FP case too.)
- Most floating point APIs now simply call the fixed point APIs after
- converting the values to the fixed point form used in the PNG file.
- The standard headers no longer include zlib.h, which is currently only
- required for pngstruct.h and can therefore be internal.
- Revised png_get_int_32 to undo the PNG two's complement representation of
- negative numbers.
-
-Version 1.5.0beta37 [July 30, 2010]
- Added a typecast in png_get_int_32() in png.h and pngrutil.h to avoid
- a compiler warning.
- Replaced oFFs 0,0 with oFFs -10,20 in pngtest.png
-
-Version 1.5.0beta38 [July 31, 2010]
- Implemented remaining "_fixed" functions.
- Corrected a number of recently introduced warnings mostly resulting from
- safe but uncast assignments to shorter integers. Also added a zlib
- VStudio release library project because the latest zlib Official Windows
- build does not include such a thing.
- Revised png_get_int_16() to be similar to png_get_int_32().
- Restored projects/visualc71.
-
-Version 1.5.0beta39 [August 2, 2010]
- VisualC/GCC warning fixes, VisualC build fixes
- The changes include support for function attributes in VC in addition to
- those already present in GCC - necessary because without these some
- warnings are unavoidable. Fixes include signed/unsigned fixes in
- pngvalid and checks with gcc -Wall -Wextra -Wunused.
- VC requires function attributes on function definitions as well as
- declarations, PNG_FUNCTION has been added to enable this and the
- relevant function definitions changed.
-
-Version 1.5.0beta40 [August 6, 2010]
- Correct use of _WINDOWS_ in pngconf.h
- Removed png_mem_ #defines; they are no longer used.
- Added the sRGB chunk to pngtest.png
-
-Version 1.5.0beta41 [August 11, 2010]
- Added the cHRM chunk to pngtest.png
- Don't try to use version-script with cygwin/mingw.
- Revised contrib/gregbook to work under cygwin/mingw.
-
-Version 1.5.0beta42 [August 18, 2010]
- Add .dll.a to the list of extensions to be symlinked by Makefile.am (Yaakov)
- Made all API functions that have const arguments and constant string
- literal pointers declare them (John Bowler).
-
-Version 1.5.0beta43 [August 20, 2010]
- Removed spurious tabs, shorten long lines (no source change)
- Also added scripts/chkfmt to validate the format of all the files that can
- reasonably be validated (it is suggested to run "make distclean" before
- checking, because some machine generated files have long lines.)
- Reformatted the CHANGES file to be more consistent throughout.
- Made changes to address various issues identified by GCC, mostly
- signed/unsigned and shortening problems on assignment but also a few
- difficult to optimize (for GCC) loops.
- Fixed non-GCC fixed point builds. In png.c a declaration was misplaced
- in an earlier update. Fixed to declare the auto variables at the head.
- Use cexcept.h in pngvalid.c.
-
-Version 1.5.0beta44 [August 24, 2010]
- Updated CMakeLists.txt to use CMAKE_INSTALL_LIBDIR variable; useful for
- installing libpng in /usr/lib64 (Funda Wang).
- Revised CMakeLists.txt to put the man pages in share/man/man* not man/man*
- Revised CMakeLists.txt to make symlinks instead of copies when installing.
- Changed PNG_LIB_NAME from pngNN to libpngNN in CMakeLists.txt (Philip Lowman)
- Implemented memory checks within pngvalid
- Reformatted/rearranged pngvalid.c to assist use of progressive reader.
- Check interlaced images in pngvalid
- Clarified pngusr.h comments in pnglibconf.dfa
- Simplified the pngvalid error-handling code now that cexcept.h is in place.
- Implemented progressive reader in pngvalid.c for standard tests
- Implemented progressive read in pngvalid.c gamma tests
- Turn on progressive reader in pngvalid.c by default and tidy code.
-
-Version 1.5.0beta45 [August 26, 2010]
- Added an explicit make step to projects/vstudio for pnglibconf.h
- Also corrected zlib.vcxproj into which Visual Studio had introduced
- what it calls an "authoring error". The change to make pnglibconf.h
- simply copies the file; in the future it may actually generate the
- file from scripts/pnglibconf.dfa as the other build systems do.
- Changed pngvalid to work when floating point APIs are disabled
- Renamed the prebuilt scripts/pnglibconf.h to scripts/pnglibconf.h.prebuilt
- Supply default values for PNG_USER_PRIVATEBUILD and PNG_USER_DLLFNAME_POSTFIX
- in pngpriv.h in case the user neglected to define them in their pngusr.h
-
-Version 1.5.0beta46 [August 28, 2010]
- Added new private header files to libpng_sources in CMakeLists.txt
- Added PNG_READ_16BIT, PNG_WRITE_16BIT, and PNG_16BIT options.
- Added reference to scripts/pnglibconf.h.prebuilt in the visualc71 project.
-
-Version 1.5.0beta47 [September 11, 2010]
- Fixed a number of problems with 64-bit compilation reported by Visual
- Studio 2010 (John Bowler).
-
-Version 1.5.0beta48 [October 4, 2010]
- Updated CMakeLists.txt (Philip Lowman).
- Revised autogen.sh to recognize and use $AUTOCONF, $AUTOMAKE, $AUTOHEADER,
- $AUTOPOINT, $ACLOCAL and $LIBTOOLIZE
- Fixed problem with symbols creation in Makefile.am which was assuming that
- all versions of ccp write to standard output by default (Martin Banky). The
- bug was introduced in libpng-1.2.9beta5.
- Removed unused mkinstalldirs.
-
-Version 1.5.0beta49 [October 8, 2010]
- Undid Makefile.am revision of 1.5.0beta48.
-
-Version 1.5.0beta50 [October 14, 2010]
- Revised Makefile.in to account for mkinstalldirs being removed.
- Added some "(unsigned long)" typecasts in printf statements in pngvalid.c.
- Suppressed a compiler warning in png_handle_sPLT().
- Check for out-of-range text compression mode in png_set_text().
-
-Version 1.5.0beta51 [October 15, 2010]
- Changed embedded dates to "(PENDING RELEASE) in beta releases (and future
- rc releases) to minimize the difference between releases.
-
-Version 1.5.0beta52 [October 16, 2010]
- Restored some of the embedded dates (in png.h, png.c, documentation, etc.)
-
-Version 1.5.0beta53 [October 18, 2010]
- Updated INSTALL to mention using "make maintainer-clean" and to remove
- obsolete statement about a custom ltmain.sh
- Disabled "color-tests" by default in Makefile.am so it will work with
- automake versions earlier than 1.11.1
- Use document name "libpng-manual.txt" instead of "libpng-.txt"
- to simplify version differences.
- Removed obsolete remarks about setjmp handling from INSTALL.
- Revised and renamed the typedef in png.h and png.c that was designed
- to catch library and header mismatch.
-
-Version 1.5.0beta54 [November 10, 2010]
- Require 48 bytes, not 64 bytes, for big_row_buf in overflow checks.
- Used a consistent structure for the pngget.c functions.
-
-Version 1.5.0beta55 [November 21, 2010]
- Revised png_get_uint_32, png_get_int_32, png_get_uint_16 (Cosmin)
- Moved reading of file signature into png_read_sig (Cosmin)
- Fixed atomicity of chunk header serialization (Cosmin)
- Added test for io_state in pngtest.c (Cosmin)
- Added "#!/bin/sh" at the top of contrib/pngminim/*/gather.sh scripts.
- Changes to remove gcc warnings (John Bowler)
- Certain optional gcc warning flags resulted in warnings in libpng code.
- With these changes only -Wconversion and -Wcast-qual cannot be turned on.
- Changes are trivial rearrangements of code. -Wconversion is not possible
- for pngrutil.c (because of the widespread use of += et al on variables
- smaller than (int) or (unsigned int)) and -Wcast-qual is not possible
- with pngwio.c and pngwutil.c because the 'write' callback and zlib
- compression both fail to declare their input buffers with 'const'.
-
-Version 1.5.0beta56 [December 7, 2010]
- Added the private PNG_UNUSED() macro definition in pngpriv.h.
- Added some commentary about PNG_EXPORT in png.h and pngconf.h
- Revised PNG_EXPORT() macro and added PNG_EXPORTA() macro, with the
- objective of simplifying and improving the cosmetic appearance of png.h.
- Fixed some incorrect "=" macro names in pnglibconf.dfa
- Included documentation of changes in 1.5.0 from 1.4.x in libpng-manual.txt
-
-Version 1.5.0beta57 [December 9, 2010]
- Documented the pngvalid gamma error summary with additional comments and
- print statements.
- Improved missing symbol handling in checksym.awk; symbols missing in both
- the old and new files can now be optionally ignored, treated as errors
- or warnings.
- Removed references to pngvcrd.c and pnggccrd.c from the vstudio project.
- Updated "libpng14" to "libpng15" in the visualc71 project.
- Enabled the strip16 tests in pngvalid.`
- Don't display test results (except PASS/FAIL) when running "make test".
- Instead put them in pngtest-log.txt
- Added "--with-zprefix=