summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update Nepali translationHEADcogl-1.22Pawan Chitrakar2021-05-021-24/+20
|
* Update Catalan translationJordi Mas2021-04-251-3/+3
|
* Update Nepali translationPawan Chitrakar2021-04-221-52/+38
|
* Merge branch 'gles2' into 'cogl-1.22'Emmanuele Bassi2021-04-091-0/+1
|\ | | | | | | | | cogl-gles2: Fix undefined references. See merge request GNOME/cogl!35
| * cogl-gles2: Fix undefined references.orbea2021-03-251-0/+1
|/
* Update Galician translationFran Dieguez2021-02-231-105/+107
|
* Update Slovenian translationMatej Urbančič2021-02-171-136/+135
|
* Post-release version bump to 1.22.9Emmanuele Bassi2020-06-041-1/+1
|
* Release Cogl 1.22.81.22.8Emmanuele Bassi2020-06-042-2/+13
|
* Merge branch 'issue-14' into 'cogl-1.22'Emmanuele Bassi2020-06-041-3/+3
|\ | | | | | | | | | | | | Free state after freeing its contents Closes #14 See merge request GNOME/cogl!25
| * Free state after freeing its contentsEmmanuele Bassi2020-06-041-3/+3
|/ | | | | | | We are freeing the big state inside the CoglPipeline before freeing the snippets list, even though the snippets are stored in the big state. Fixes: #14
* Merge branch 'simple-ci' into 'cogl-1.22'Emmanuele Bassi2020-06-041-0/+48
|\ | | | | | | | | Simple ci See merge request GNOME/cogl!26
| * ci: Disable test suiteEmmanuele Bassi2020-06-041-1/+3
| | | | | | | | Needs further experiments, as it completely fails on the CI runner.
| * ci: Force GLX rendererEmmanuele Bassi2020-06-041-0/+1
| |
| * ci: Drop _FORTIFY_SOURCEEmmanuele Bassi2020-06-041-1/+1
| | | | | | | | | | Injecting this in the CPPFLAGS gets propagated into the introspection build, which is not ideal, and will generate warnings.
| * ci: Add Xvfb and run the tests under itEmmanuele Bassi2020-06-041-2/+3
| |
| * Apply suggestion to .gitlab-ci.ymlEmmanuele Bassi2020-06-041-1/+1
| |
| * ci: Add naive CIBastien Nocera2020-06-041-0/+44
|/
* Merge branch 'wip/smcv/double-close' into 'cogl-1.22'Emmanuele Bassi2020-03-101-1/+4
|\ | | | | | | | | cogl-xlib-renderer: Ensure we don't close the same X display twice See merge request GNOME/cogl!23
| * cogl-xlib-renderer: Ensure we don't close the same X display twiceSimon McVittie2020-03-101-1/+4
|/ | | | | | | | | | | | | | | | | | | | | | If we don't do this, it results in a double-free that segfaults test_atlas_migration on ES2, when running an x86_64 build under Xvfb (probably other architectures and displays, I haven't checked). ==671783==ERROR: AddressSanitizer: SEGV on unknown address ... ==671783==The signal is caused by a READ memory access. #0 0x7fbc0b5a28e7 in xcb_disconnect (...) #1 0x7fbc0bfc2be8 in XCloseDisplay (...) #2 0x7fbc0d6b8910 in _cogl_xlib_renderer_disconnect .../cogl/cogl-xlib-renderer.c:573 #3 0x7fbc0d6eba71 in _cogl_winsys_renderer_disconnect .../cogl/winsys/cogl-winsys-egl-x11.c:257 #4 0x7fbc0d6ebd7e in _cogl_winsys_renderer_connect .../cogl/winsys/cogl-winsys-egl-x11.c:289 #5 0x7fbc0d55e970 in cogl_renderer_connect .../cogl/cogl-renderer.c:687 #6 0x7fbc0d557dff in cogl_context_new .../cogl/cogl-context.c:202 #7 0x7fbc0d6fcce5 in test_utils_init .../test-fixtures/test-utils.c:176 #8 0x557c76a1c7f5 in main .../tests/conform/test-conform-main.c:90 #9 0x7fbc0c527bba in __libc_start_main ../csu/libc-start.c:308 #10 0x557c76a1b209 in _start (...) Signed-off-by: Simon McVittie <smcv@debian.org>
* Merge branch 'wip/smcv/test-timeout' into 'cogl-1.22'Emmanuele Bassi2020-03-102-0/+11
|\ | | | | | | | | [1.22] Terminate tests with SIGALRM if they take more than 120 seconds See merge request GNOME/cogl!11
| * Terminate tests with SIGALRM if they take more than 120 secondsSimon McVittie2020-03-092-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Debian autobuilders run cogl's build-time tests to get an idea of how much can be expected to work on each supported architecture. We're currently ignoring test failures and running the tests for information only, but if a test hangs, that will still cause the build to fail (and tie up an autobuilder until a rather long timeout is reached). The fork of cogl in Mutter uses a 120 second timeout for tests in its Meson build system, but other than that it's purely an arbitrary number. dbus uses a similar alarm()-based watchdog, as do a couple of tests in GLib. Bug-Debian: https://bugs.debian.org/935592 Signed-off-by: Simon McVittie <smcv@debian.org>
* | Merge branch 'wip/smcv/tests-verbose' into 'cogl-1.22'Emmanuele Bassi2020-03-101-1/+8
|\ \ | | | | | | | | | | | | [1.22] tests: Show the actual output from tests if VERBOSE is set See merge request GNOME/cogl!14
| * | tests: Show the actual output from tests if VERBOSE is setSimon McVittie2020-03-091-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Writing tests' output to a log file makes them difficult to debug when the test might be running on an autobuilder or CI system where only stdout/stderr are recorded. This is particularly troublesome if a failure is only reproducible on a particular autobuilder. Recent Automake versions have the convention that detailed output from failing tests is written to stdout/stderr, not just to log files, when the VERBOSE environment variable is set; borrow that convention as a trigger for producing detailed test output. Signed-off-by: Simon McVittie <smcv@debian.org>
* | | Merge branch 'wip/smcv/tests-skip' into 'cogl-1.22'Emmanuele Bassi2020-03-104-12/+27
|\ \ \ | | | | | | | | | | | | | | | | [1.22] Normally skip tests that are not expected to succeed See merge request GNOME/cogl!15
| * | | Normally skip tests that are not expected to succeedSimon McVittie2020-03-094-12/+27
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If a test is not expected to succeed, then running it could be considered to be a waste of resources, particularly if the failure might manifest as an indefinite hang (see !11), or if the test is likely to dump core and trigger "expensive" crash-reporting mechanisms like systemd-coredump, corekeeper, abrt or apport. Skip the tests that are expected to fail. They can still be requested via an environment variable, which can be set after fixing a bug to check which tests are now passing. Signed-off-by: Simon McVittie <smcv@debian.org>
* | | Merge branch 'wip/smcv/undefined-left-shift' into 'cogl-1.22'Emmanuele Bassi2020-03-102-4/+14
|\ \ \ | | | | | | | | | | | | | | | | [1.22] tests: Force defined behaviour for 24-bit left-shifts See merge request GNOME/cogl!22
| * | | tests: Force defined behaviour for 24-bit left-shiftsSimon McVittie2020-03-102-4/+14
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When r is 128 or more, running tests compiled with the undefined behaviour sanitizer (ubsan) reports: test-utils.c:312:45: runtime error: left shift of 128 by 24 places cannot be represented in type 'int' which indeed it cannot. Force the type to be unsigned 32-bit so that we get defined behaviour. Similarly, in test-atlas-migration, the left-shifted guint8 is promoted to int, which again does not have enough non-sign bits available to left-shift a value >= 128 by 24 bits. Again, force the shift to be done in unsigned 32-bit space. Signed-off-by: Simon McVittie <smcv@debian.org>
* | | Merge branch 'wip/smcv/automake' into 'cogl-1.22'Emmanuele Bassi2020-03-101-13/+5
|\ \ \ | | | | | | | | | | | | | | | | autogen.sh: Stop checking for specific versions of Automake See merge request GNOME/cogl!20
| * | | autogen.sh: Stop checking for specific versions of AutomakeSimon McVittie2020-03-091-13/+5
| |/ / | | | | | | | | | | | | | | | | | | Automake 1.11 was released in May 2009, so cogl has been compatible with the latest version for at least that long. Signed-off-by: Simon McVittie <smcv@debian.org>
* | | Merge branch 'wip/smcv/test-logs-to-mktemp' into 'cogl-1.22'Emmanuele Bassi2020-03-101-3/+7
|\ \ \ | | |/ | |/| | | | | | | [1.22] tests: Use tmp file to dump test results See merge request GNOME/cogl!10
| * | tests: Use tmp file to dump test resultsGeorges Basile Stavracas Neto2020-03-091-3/+7
| |/ | | | | | | | | | | | | | | | | | | | | | | | | When running installed tests, the working directory for Cogl tests is in /usr/libexec/installed-tests, which isn't writable by normal users. To avoid the adding stray hidden files to the current directory, adapt the runner script to fallback to $(mktemp) - which is available on all platform we care about - and avoid adding hidden files everywhere. (Originally commit 05ab8eebe8f37d437fb915a2dafe0c0bb68e3950 in mutter's fork of cogl.)
* | Merge branch 'wip/smcv/uninitialized' into 'cogl-1.22'Emmanuele Bassi2020-03-102-0/+4
|\ \ | | | | | | | | | | | | [1.22] Reassure gcc 9 that variables are not uninitialized See merge request GNOME/cogl!21
| * | tests: Reassure compiler that uninitialized variables are not reachedSimon McVittie2020-03-101-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | gcc 9 detects that if we exit this switch due to an unsupported cull mode, the variables that it sets will remain uninitialized, causing compilation with -Werror=uninitialized to fail. Signed-off-by: Simon McVittie <smcv@debian.org>
| * | gles: Reassure compiler that uninitialized variables are not reachedSimon McVittie2020-03-101-0/+1
| |/ | | | | | | | | | | | | | | | | gcc 9 detects that if we exit this switch due to an unsupported pixel format, the variables that it sets will remain uninitialized, causing compilation with -Werror=uninitialized to fail. Treat invalid pixel formats the same as the ones that are already unsupported. Signed-off-by: Simon McVittie <smcv@debian.org>
* | Merge branch 'cherry-pick-9c476422' into 'cogl-1.22'Emmanuele Bassi2020-03-101-2/+14
|\ \ | | | | | | | | | | | | [1.22] Fix building against libglvnd-provided EGL headers See merge request GNOME/cogl!19
| * | Fix building against libglvnd-provided EGL headersAlexander Tsoy2020-03-091-2/+14
|/ / | | | | | | | | | | | | | | | | Add missing EGL/eglmesaext.h include. When building against mesa-provided headers, this header is included indirectly via EGL/eglext.h. Also fix typo COGL_EGL_INCLUDE -> COGL_EGL_INCLUDES (cherry picked from commit 9c4764224aded552fb855b1c2b85b26d2b894adf)
* | Merge branch 'wip/smcv/test-premult-use-after-free-1.22' into 'cogl-1.22'Emmanuele Bassi2020-03-092-2/+6
|\ \ | |/ |/| | | | | [1.22] test-premult: Don't free texture data until CoglBitmap is freed See merge request GNOME/cogl!12
| * test-premult: Don't free texture data until CoglBitmap is freedSimon McVittie2019-09-062-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | According to the cogl_bitmap_new_for_data documentation, the data is not copied, so the application must keep the buffer alive for the lifetime of the CoglBitmap. Freeing it too early led to a use-after-free in the cogl unit tests. With that fixed, the test passes, so remove the known failure annotation. ==6223==ERROR: AddressSanitizer: heap-use-after-free on address 0x62100001a500 at pc 0x7f3e2d4e7f4e bp 0x7ffcd9c41f30 sp 0x7ffcd9c416e0 READ of size 4096 at 0x62100001a500 thread T0 #0 0x7f3e2d4e7f4d (/usr/lib/x86_64-linux-gnu/libasan.so.5+0x96f4d) #1 0x7f3e260c7f6b in util_copy_box ../src/gallium/auxiliary/util/u_surface.c:131 #2 0x7f3e268c6c10 in u_default_texture_subdata ../src/gallium/auxiliary/util/u_transfer.c:67 #3 0x7f3e26486459 in st_TexSubImage ../src/mesa/state_tracker/st_cb_texture.c:1480 #4 0x7f3e26487029 in st_TexImage ../src/mesa/state_tracker/st_cb_texture.c:1709 #5 0x7f3e26487029 in st_TexImage ../src/mesa/state_tracker/st_cb_texture.c:1691 #6 0x7f3e2644bdba in teximage ../src/mesa/main/teximage.c:3105 #7 0x7f3e2644bdba in teximage_err ../src/mesa/main/teximage.c:3132 #8 0x7f3e2644d84f in _mesa_TexImage2D ../src/mesa/main/teximage.c:3170 #9 0x7f3e2cd1f7df in _cogl_texture_driver_upload_to_gl driver/gl/gl/cogl-texture-driver-gl.c:347 #10 0x7f3e2ccd441b in allocate_from_bitmap driver/gl/cogl-texture-2d-gl.c:255 #11 0x7f3e2ccd441b in _cogl_texture_2d_gl_allocate driver/gl/cogl-texture-2d-gl.c:462 #12 0x7f3e2ce3a6c0 in cogl_texture_allocate cogl/cogl-texture.c:1398 #13 0x7f3e2ce3e116 in _cogl_texture_pre_paint cogl/cogl-texture.c:359 #14 0x7f3e2cdee177 in _cogl_pipeline_layer_pre_paint cogl/cogl-pipeline-layer.c:864 #15 0x7f3e2cd574af in _cogl_rectangles_validate_layer_cb cogl/cogl-primitives.c:542 #16 0x7f3e2cdd742f in cogl_pipeline_foreach_layer cogl/cogl-pipeline.c:735 #17 0x7f3e2cd5c8b0 in _cogl_framebuffer_draw_multitextured_rectangles cogl/cogl-primitives.c:658 #18 0x7f3e2cd60152 in cogl_rectangle cogl/cogl-primitives.c:858 #19 0x5570a71ed6a0 in check_texture tests/conform/test-premult.c:103 #20 0x5570a71ed946 in test_premult tests/conform/test-premult.c:159 #21 0x5570a71df0d6 in main tests/conform/test-conform-main.c:58 #22 0x7f3e2bcd809a in __libc_start_main ../csu/libc-start.c:308 #23 0x5570a71e0869 in _start (/home/smcv/src/debian/cogl/tests/conform/.libs/test-conformance+0x33869) 0x62100001a500 is located 0 bytes inside of 4096-byte region [0x62100001a500,0x62100001b500) freed by thread T0 here: #0 0x7f3e2d5581d7 in __interceptor_free (/usr/lib/x86_64-linux-gnu/libasan.so.5+0x1071d7) #1 0x5570a71ed58b in make_texture tests/conform/test-premult.c:69 previously allocated by thread T0 here: #0 0x7f3e2d558588 in malloc (/usr/lib/x86_64-linux-gnu/libasan.so.5+0x107588) #1 0x7f3e2d384500 in g_malloc ../../../glib/gmem.c:99 Signed-off-by: Simon McVittie <smcv@debian.org>
* | Post-release version bump to 1.22.7Emmanuele Bassi2020-03-091-1/+1
| |
* | Release Cogl 1.22.61.22.6Emmanuele Bassi2020-03-092-1/+9
| |
* | Merge branch 'wip/smcv/fix-pkg-config-1.22' into 'cogl-1.22'Emmanuele Bassi2020-03-094-5/+5
|\ \ | | | | | | | | | | | | [1.22] Fix some pkg-config metadata See merge request GNOME/cogl!13
| * | cogl-pango-2.0-experimental.pc: Reference correct library nameSimon McVittie2019-09-061-1/+1
| | | | | | | | | | | | | | | | | | It's libcogl-pango.so, not libcoglpango.so. Signed-off-by: Simon McVittie <smcv@debian.org>
| * | gst, pango: Add missing pkg-config dependenciesSimon McVittie2019-09-064-4/+4
| |/ | | | | | | | | | | | | | | | | Adding automated tests for the Debian -dev packages, which link a trivial program to the pkg-config module under test, revealed that these .pc files were not self-contained. Add the necessary dependencies for linking to succeed. Signed-off-by: Simon McVittie <smcv@debian.org>
* | Add Malay translationUmarzuki Bin Mochlis Moktar2020-01-081-0/+365
|/
* Add Finnish translationJiri Grönroos2019-08-221-0/+363
|
* Update German translationWolfgang Stöggl2019-08-221-112/+113
|
* Update Russian translationStas Solovey2019-07-231-105/+108
|
* Add fallback for semi-private symbols in PangoEmmanuele Bassi2019-07-071-0/+7
| | | | | Pango dropped the PANGO_ENABLE_BACKEND and PANGO_ENABLE_ENGINE symbols, so we need to add our own defines to avoid breaking the build.
* Update Hungarian translationBalázs Úr2019-06-011-107/+110
|