summaryrefslogtreecommitdiff
path: root/test/error-setters.c
Commit message (Collapse)AuthorAgeFilesLines
* Drop cairo-glEmmanuele Bassi2023-01-271-8/+0
| | | | | | | | | The GL support in Cairo has always been a prototype, and nothing happened in the past 10+ years to make it work as it was meant to. GL support is not enabled by any downstream packagers of Cairo, so nobody should notice its absence.
* Drop OS/2 supportEmmanuele Bassi2022-02-251-9/+0
| | | | | | | OS/2 support was last built in Cairo 1.12, which was released 10 years ago. Additionally, OS/2 is not supported by Meson.
* Drop the conditional inclusion of config.hEmmanuele Bassi2021-05-011-2/+0
| | | | | | | | | | | | We *always* generate this file, and we depend on its existence. The idea behind HAVE_CONFIG_H was being able to include random files from different projects, back in a time where "libraries" were literally just random files instead of actual shared objects. Since we're not in the '80s any more, and our build system(s) define HAVE_CONFIG_H *and* generate the config.h header file, we don't need a conditional guard around its inclusion.
* Fix the number of parameters for cairo_os2_surface_set_size()Dave Yeo2011-09-181-1/+1
| | | | | | | test/error-setters.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
* test: Add test checking that all setters properly check surface->statusBenjamin Otte2010-04-141-0/+109
In particular, make sure that the setters when called on a const nil surface don't try to set surface->status.