From: Eric Engestrom
To file a Mesa bug, go to
-
+
GitLab on freedesktop.org
-Wstrict-aliasing=2 -fstrict-aliasing
arguments, and
@@ -47,7 +47,7 @@ You can find some further To-do lists here:
Common To-Do lists:
bin/meson-options.py
script that prints
the options for you.
If that script doesn't work for some reason, you can always look in the
-
+
meson_options.txt file at the root of the project.
diff --git a/docs/relnotes/19.1.8.html b/docs/relnotes/19.1.8.html
index f1851fe4bf0..43d10639160 100644
--- a/docs/relnotes/19.1.8.html
+++ b/docs/relnotes/19.1.8.html
@@ -51,23 +51,23 @@ f0fe8289b7d147943bf2fc2147833254881577e8f9ed3d94ddb39e430e711725 mesa-19.1.8.ta
doxygen
directory and run make
.
For an example of Doxygen usage in Mesa, see a recent source file -such as bufferobj.c. +such as bufferobj.c.
diff --git a/docs/submittingpatches.html b/docs/submittingpatches.html index 15674291d08..fb614a790b6 100644 --- a/docs/submittingpatches.html +++ b/docs/submittingpatches.html @@ -76,7 +76,7 @@ platform.-Closes: https://gitlab.freedesktop.org/mesa/mesa/issues/1 +Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/1
Prefer the full url to just Closes: #1
, since the url makes it
easier to get to the bug page from git log
To participate in code review, you can monitor the GitLab Mesa - Merge + Merge Requests page, and/or register for notifications in your gitlab settings.
diff --git a/meson.build b/meson.build index 3d4ea165c99..e0906dee3a6 100644 --- a/meson.build +++ b/meson.build @@ -46,7 +46,7 @@ pre_args = [ '-D__STDC_FORMAT_MACROS', '-D__STDC_LIMIT_MACROS', '-DPACKAGE_VERSION="@0@"'.format(meson.project_version()), - '-DPACKAGE_BUGREPORT="https://gitlab.freedesktop.org/mesa/mesa/issues"', + '-DPACKAGE_BUGREPORT="https://gitlab.freedesktop.org/mesa/mesa/-/issues"', ] with_vulkan_icd_dir = get_option('vulkan-icd-dir') @@ -1530,7 +1530,7 @@ else # Disable deprecated keyword warnings, since we have to use them for # old-bison compat. See discussion in - # https://gitlab.freedesktop.org/mesa/mesa/merge_requests/2161 + # https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/2161 if meson.version().version_compare('>= 0.52.0') and find_program('bison', required : false, version : '> 2.3').found() prog_bison = [prog_bison, '-Wno-deprecated'] endif diff --git a/src/compiler/nir/nir_opt_if.c b/src/compiler/nir/nir_opt_if.c index 4b2d0159bab..e07e852f869 100644 --- a/src/compiler/nir/nir_opt_if.c +++ b/src/compiler/nir/nir_opt_if.c @@ -630,7 +630,7 @@ opt_simplify_bcsel_of_phi(nir_builder *b, nir_loop *loop) * bcsel that must come before any break. * * For more details, see - * https://gitlab.freedesktop.org/mesa/mesa/merge_requests/170#note_110305 + * https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/170#note_110305 */ nir_foreach_instr_safe(instr, header_block) { if (instr->type != nir_instr_type_alu) diff --git a/src/gallium/drivers/i915/TODO b/src/gallium/drivers/i915/TODO index b8693346364..20c082062cd 100644 --- a/src/gallium/drivers/i915/TODO +++ b/src/gallium/drivers/i915/TODO @@ -35,4 +35,4 @@ Random list of problems with i915g: - Fix fragment discard Other bugs can be found here: -https://gitlab.freedesktop.org/mesa/mesa/issues?scope=all&utf8=%E2%9C%93&state=opened&label_name[]=i915g +https://gitlab.freedesktop.org/mesa/mesa/-/issues?scope=all&utf8=%E2%9C%93&state=opened&label_name[]=i915g diff --git a/src/gallium/drivers/radeonsi/si_pipe.c b/src/gallium/drivers/radeonsi/si_pipe.c index c370c659d1d..1d14442b445 100644 --- a/src/gallium/drivers/radeonsi/si_pipe.c +++ b/src/gallium/drivers/radeonsi/si_pipe.c @@ -474,13 +474,13 @@ static struct pipe_context *si_create_context(struct pipe_screen *screen, unsign if (sscreen->info.num_rings[RING_DMA] && !(sscreen->debug_flags & DBG(NO_SDMA)) && /* SDMA causes corruption on RX 580: - * https://gitlab.freedesktop.org/mesa/mesa/issues/1399 - * https://gitlab.freedesktop.org/mesa/mesa/issues/1889 + * https://gitlab.freedesktop.org/mesa/mesa/-/issues/1399 + * https://gitlab.freedesktop.org/mesa/mesa/-/issues/1889 */ (sctx->chip_class != GFX8 || sscreen->debug_flags & DBG(FORCE_SDMA)) && /* SDMA timeouts sometimes on gfx10 so disable it for now. See: * https://bugs.freedesktop.org/show_bug.cgi?id=111481 - * https://gitlab.freedesktop.org/mesa/mesa/issues/1907 + * https://gitlab.freedesktop.org/mesa/mesa/-/issues/1907 */ (sctx->chip_class != GFX10 || sscreen->debug_flags & DBG(FORCE_SDMA))) { sctx->sdma_cs = sctx->ws->cs_create(sctx->ctx, RING_DMA, (void *)si_flush_dma_cs, sctx, diff --git a/src/intel/compiler/brw_fs.cpp b/src/intel/compiler/brw_fs.cpp index 62025406d1c..56de5950962 100644 --- a/src/intel/compiler/brw_fs.cpp +++ b/src/intel/compiler/brw_fs.cpp @@ -8728,7 +8728,7 @@ brw_compile_fs(const struct brw_compiler *compiler, void *log_data, } /* Limit dispatch width to simd8 with dual source blending on gen8. - * See: https://gitlab.freedesktop.org/mesa/mesa/issues/1917 + * See: https://gitlab.freedesktop.org/mesa/mesa/-/issues/1917 */ if (devinfo->gen == 8 && prog_data->dual_src_blend && !(INTEL_DEBUG & DEBUG_NO8)) { diff --git a/src/intel/isl/isl_surface_state.c b/src/intel/isl/isl_surface_state.c index 7aba99fbebf..a3dc15708b0 100644 --- a/src/intel/isl/isl_surface_state.c +++ b/src/intel/isl/isl_surface_state.c @@ -928,7 +928,7 @@ isl_genX(null_fill_state)(void *state, struct isl_extent3d size) /* We previously had this format set to B8G8R8A8_UNORM but ran into * hangs on IVB. R32_UINT seems to work for everybody. * - * https://gitlab.freedesktop.org/mesa/mesa/issues/1872 + * https://gitlab.freedesktop.org/mesa/mesa/-/issues/1872 */ .SurfaceFormat = ISL_FORMAT_R32_UINT, #if GEN_GEN >= 7 diff --git a/src/util/00-mesa-defaults.conf b/src/util/00-mesa-defaults.conf index 22c0cc295a7..1cc98479926 100644 --- a/src/util/00-mesa-defaults.conf +++ b/src/util/00-mesa-defaults.conf @@ -264,17 +264,17 @@ TODO: document the other workarounds.