CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2023/03/24 23:49:50 Modified files: sys/conf : newvers.sh Log message: we are now hacking on 7.3-current CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2023/03/24 23:56:49 Modified files: . : events.html Added files: papers : csw2023.pdf Log message: slide deck from cansecwest talk CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/25 03:09:28 Modified files: lib/libcrypto/dsa: dsa_asn1.c lib/libcrypto/ecdsa: ecs_asn1.c Log message: BN_free() is defined in This is currently pulled in via dsa.h and ecdsa.h, but only when OPENSSL_NO_DEPRECATED is not defined. We should fix this in the public header, too - let's wait a bit with that. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/25 03:12:35 Modified files: lib/libcrypto/rsa: rsa_ameth.c Log message: Pull in directly This is needed for many reasons. It is currently pulled in via x509.h but only when OPENSSL_NO_DEPRECATED is undefined. Again this should be fixed in the public header as well. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/25 03:17:14 Modified files: regress/lib/libcrypto/wycheproof: wycheproof.go Log message: Remove dead/unreachable code A copy-paste error would have resulted in a modified msg in case ctLen == 0 or msgLen == 0. So obviously this is unreachable code. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/25 03:21:17 Modified files: regress/lib/libcrypto/wycheproof: wycheproof.go Log message: Enable FRP256v2 tests This was previously disabled because tb apparently can't grep. Exercise this curve as well as part of the new test cases in ECDH wycheproof. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/25 03:23:44 Modified files: regress/lib/libcrypto/ec: ec_point_conversion.c Log message: Guard GF2m-specifics with OPENSSL_NO_EC2M CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/03/25 04:14:58 Modified files: sys/dev/fdt : if_dwqe_fdt.c Log message: The "snps,reset-*" properties are deprecatedand are being replaced with "reset-*" proprties on the PHY device tree nodes. Add support for this. ok dlg@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/25 04:41:53 Modified files: lib/libcrypto/asn1: bio_asn1.c Log message: Unindent asn1_bio_get_ex() CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/25 04:45:20 Modified files: lib/libcrypto/asn1: bio_asn1.c Log message: Drop unnecessary casts from and to void * CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/25 04:51:18 Modified files: lib/libcrypto/bn: bn_kron.c Log message: Zap an empty line CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/25 05:02:26 Modified files: lib/libcrypto/bn: bn_prime.pl Log message: Add checks to ensure the uint16_t array isn't overflowed when this script is run. This is more of an issue with uint16_t now than it was with prime_t aka BN_ULONG before r1.6. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/25 05:03:45 Modified files: lib/libcrypto/bn: bn_prime.pl Log message: Add RCSID CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/25 05:09:58 Modified files: lib/libcrypto/bn: bn_prime.pl Log message: Use Eric Young's usual license in the proper place rather than a weird commented-out license stub in a HERE document. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/25 05:28:55 Modified files: lib/libcrypto/bn: bn_prime.pl Log message: Make an attempt at reducing the eyebleed in bn_prime.pl Use a style more resembling KNF and drop lots of parentheses. Simplify a few things. No change in generated output on success. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/25 05:35:02 Modified files: lib/libcrypto/bn: bn_prime.pl Log message: Use strict and warnings CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/03/25 09:05:45 Modified files: sbin/fdisk : cmd.c gpt.c part.c part.h Log message: Rename *_sname fields/functions to *_name to remove implied shortness of the names. No functional change. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2023/03/25 09:07:19 Modified files: etc/root : root.mail Log message: things will be ready a bit earlier CVSROOT: /cvs Module name: src Changes by: otto@cvs.openbsd.org 2023/03/25 09:22:06 Modified files: lib/libc/stdlib: malloc.c Log message: Change malloc chunk sizes to be fine grained. The basic idea is simple: one of the reasons the recent sshd bug is potentially exploitable is that a (erroneously) freed malloc chunk gets re-used in a different role. malloc has power of two chunk sizes and so one page of chunks holds many different types of allocations. Userland malloc has no knowledge of types, we only know about sizes. So I changed that to use finer-grained chunk sizes. This has some performance impact as we need to allocate chunk pages in more cases. Gain it back by allocation chunk_info pages in a bundle, and use less buckets is !malloc option S. The chunk sizes used are 16, 32, 48, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, 384, 448, 512, 640, 768, 896, 1024, 1280, 1536, 1792, 2048 (and a few more for sparc64 with its 8k sized pages and loongson with its 16k pages). If malloc option S (or rather cache size 0) is used we use strict multiple of 16 sized chunks, to get as many buckets as possible. ssh(d) enabled malloc option S, in general security sensitive programs should. See the find_bucket() and bin_of() functions. Thanks to Tony Finch for pointing me to code to compute nice bucket sizes. ok tb@ CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/03/25 09:58:44 Modified files: sbin/fdisk : cmd.c part.c part.h Log message: Make *_name fields char * instead of char[]. Specify desired width of output in printf() rather than "%-*s" and sizeof(name) + 1. Clearer, may even save some bytes as many names are shorter than the max. Rename PRT_print_mbrtypes() to PRT_print_mbrmenu() and PRT_print_gpttypes() to PRT_print_gptmenu() to remove implied completeness of list presented in menu. No functional change. CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/03/25 09:59:24 Modified files: sys/netinet6 : nd6.c Log message: sync nd6_resolve() uptime handling with arpresolve() makes the two familiar functions look more alike; OK bluhm CVSROOT: /cvs Module name: www Changes by: krw@cvs.openbsd.org 2023/03/25 10:00:20 Modified files: . : events.html Log message: The future is 2023, not 2022. CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/03/25 10:01:37 Modified files: sys/netinet6 : nd6.c Log message: sync nd6_resolve() EINVAL handling with arpresolve() Less diff between them; merging three returns into one also reduces upcoming unlock diffs. OK bluhm CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/03/25 12:27:28 Modified files: distrib/miniroot: install.sub Log message: simplify final MAKEDEV call No need to loop here, the script takes multiple args. OK tb afresh1 CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/03/25 12:29:37 Modified files: distrib/arm64/ramdisk: install.md Log message: pine64: Silence dd(1) properly We must not discard all errors, just disable informational messages. OK tb CVSROOT: /cvs Module name: src Changes by: otto@cvs.openbsd.org 2023/03/25 13:16:34 Modified files: lib/libc/net : recv.c Log message: Last arg is also a pointer, so pass NULL instead of 0; ok deraadt@ CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/03/25 13:37:34 Modified files: sbin/fdisk : part.c Log message: Rename ascii_id() find_mbr_type(), make it a bit more like its sibling find_gpt_type(), tweaking PRT_print_part() as needed. No functional change. CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/03/25 14:34:28 Modified files: sbin/fdisk : misc.h user.h Log message: Move LINEBUFSZ to be with its friends in misc.h. Nuke unused HELPBUFSZ. No functional change. CVSROOT: /cvs Module name: src Changes by: fcambus@cvs.openbsd.org 2023/03/25 15:02:21 Modified files: gnu/usr.bin/binutils-2.17/include/elf: common.h Log message: Fix erroneous comment for the PT_OPENBSD_MUTABLE definition. CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/03/25 16:00:28 Modified files: sbin/fdisk : part.c Log message: Add comments documenting possible sources for MBR partition types and GPT partition GUIDs. No functional change. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/26 02:04:57 Modified files: lib/libcrypto/bn: bn_prime.pl Log message: bn_prime.pl: fix shebang and a couple more whitespace tweaks CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 02:45:27 Modified files: sys/dev/ic : ath.c athvar.h Log message: unifdef ok stsp@ CVSROOT: /cvs Module name: src Changes by: robert@cvs.openbsd.org 2023/03/26 03:09:31 Modified files: gnu/llvm/clang/include/clang/Basic: DiagnosticSemaKinds.td gnu/llvm/clang/lib/Sema: SemaDeclCXX.cpp Log message: allow out-of-class defaulting of comparison operators ok deraadt@, mortimer@ this is backport of the following upstream commit: commit 5fbe21a7748f91adbd1b16c95bbfe180642320a3 Author: Nathan Sidwell Date: Wed Jun 16 10:43:43 2021 -0700 [clang] p2085 out-of-class comparison operator defaulting This implements p2085, allowing out-of-class defaulting of comparison operators, primarily so they need not be inline, IIUC intent. this was mostly straigh forward, but required reimplementing Sema::CheckExplicitlyDefaultedComparison, as now there's a case where we have no a priori clue as to what class a defaulted comparison may be for. We have to inspect the parameter types to find out. Eg: class X { ... }; bool operator==(X, X) = default; Thus reimplemented the parameter type checking, and added 'is this a friend' functionality for the above case. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 03:34:06 Modified files: sys/arch/arm64/dev: apldc.c Log message: fix a memory leak feedback kettenis@ ok miod@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 03:39:47 Modified files: sys/dev/ic : bwfm.c Log message: fix memory leaks in error paths ok miod@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/03/26 04:41:42 Modified files: sys/dev/fdt : rkclock.c rkclock_clocks.h Log message: Add support for the RK3568 32k RTC clock. This clock uses a fractional divider so rework the RK3399 support for fractional dividers to be more general and reuse it. ok dlg@ CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/03/26 06:19:54 Modified files: sbin/fdisk : part.c Log message: Add MICROSOFT_BASIC_DATA_GUID #define to make clear what menu items result in the same GUID. Easier to spot and more resistant to simple typos in a 36 character hex string. No functional change. CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/03/26 07:12:33 Modified files: sbin/fdisk : part.c Log message: Add EFI_SYSTEM_PARTITION_GUID #define and use it to check for protection. No functional change. CVSROOT: /cvs Module name: www Changes by: naddy@cvs.openbsd.org 2023/03/26 07:19:12 Modified files: . : 73.html Log message: 7.3 release: 11764 amd64 packages CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/26 08:50:23 Modified files: regress/lib/libcrypto/bn: bn_mod_exp.c Log message: bn_mod_exp_ret() fix stupid logic error CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/03/26 10:23:58 Modified files: sbin/fdisk : cmd.c part.c part.h Log message: Pass lbuf/lbuflen to PRT_print_[mbr|gpt]_menu() to allow changes to the original input. Just zap it for now. No functional change. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/03/26 10:40:07 Modified files: lib/libcrypto/sha: sha1_one.c sha1dgst.c sha256.c sha512.c Log message: Whack sha with a style(9) stick. No change in generated assembly. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/03/26 11:06:14 Modified files: lib/libcrypto/sha: sha256.c sha512.c Log message: Add some blank lines for readability, along with some more style(9) tweaks. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/03/26 11:33:41 Modified files: lib/libcrypto/sha: sha1_one.c Log message: Add blank lines for readability. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/26 11:51:25 Modified files: usr.bin/dig/lib/dns: openssl_link.c Log message: The slightly less deprecated spelling of ERR_remove_state(0) is ERR_remove_thread_state(NULL). CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/03/26 11:52:07 Modified files: lib/libcrypto/sha: sha512.c Log message: Use multiple statements instead of comma separated expressions. No change to generated assembly. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/03/26 11:56:51 Modified files: lib/libcrypto/sha: sha256.c sha512.c Log message: Add license to sha256.c/sha512.c. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/26 12:04:47 Modified files: usr.sbin/relayd: ca.c Log message: Add missing #include CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/26 12:11:48 Modified files: usr.sbin/smtpd : ca.c Log message: Another missing #include CVSROOT: /cvs Module name: src Changes by: mlarkin@cvs.openbsd.org 2023/03/26 12:12:45 Modified files: sys/arch/amd64/amd64: identcpu.c sys/arch/amd64/include: specialreg.h Log message: amd64: identify IBT capability in cpu(4) dmesg lines requested by and ok deraadt@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/26 12:34:36 Modified files: regress/lib/libcrypto/bn: Makefile Log message: bn_primes: there is no need to link this statically. It can pull the primes table in directly. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/26 12:46:23 Modified files: regress/lib/libcrypto/bn: bn_mod_exp.c Log message: Add regress coverage for an issue with BN_mod_exp2_mont() reported by Guido Vranken in ossfuzz #55997. This test currently fails and will be fixed momentarily. This also checks sensible behavior with respect to zero exponents for this functions. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/26 12:49:48 Modified files: lib/libcrypto/bn: bn_exp.c Log message: Correctly reduce negative inpot to BN_mod_exp2_mont() Negative bases could result in a negative modulus being returned. This is not strictly speaking incorrect but slightly surprising. This is all a consequence of the shortcut of defining BN_mod() as a macro using BN_div(). Fixes ossfuzz #55997 ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/26 12:52:29 Modified files: lib/libcrypto/bn: bn_exp.c Log message: Make several calls to BN_nnmod() unconditional This removes a potential branch in a sensitive function and makes the code a lot simpler. It is a really bad idea optimize here for what davidben aptly calls "calculator" purposes. ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/26 12:54:08 Modified files: regress/lib/libcrypto/bn: bn_mod_exp.c Log message: Move the N_MOD_EXP_TESTS up to where it belongs CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/26 12:57:04 Modified files: regress/lib/libcrypto/bn: bn_mod_exp.c Log message: Rename dump_results() into dump_exp_results() This prepares for consistency with an upcoming diff. While here fix an argument order bug. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/26 13:01:16 Modified files: regress/lib/libcrypto/bn: bn_mod_exp.c Log message: Add more extensive regress coverage for BN_mod_exp2_mont() CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/26 13:01:59 Modified files: regress/lib/libcrypto/bn: bn_mod_exp.c Log message: Fix a typo in dump_exp_results() CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/03/26 13:02:40 Modified files: lib/libcrypto/sha: sha1dgst.c Log message: Inline sha_local.h in sha1dgst.c. Nothing other than sha1dst.c uses this header - pull it in to sha1dgst.c directly (sha_local.h will be removed at a later date). CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/03/26 13:04:06 Modified files: lib/libcrypto/sha: sha1dgst.c Log message: Tidy up includes. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/26 13:09:43 Modified files: lib/libcrypto/bn: bn_exp.c bn_mont.c Log message: Minor whitespace tidying CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/26 13:14:11 Modified files: regress/lib/libcrypto/bio: Makefile Added files: regress/lib/libcrypto/bio: bio_asn1.c Log message: Add regress coverage for some BIO_f_asn1() bugs fixed before release CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/03/26 13:19:28 Modified files: lib/libcrypto/sha: sha1dgst.c Log message: Whack sha1dgst.c with the style(9) stick again. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/03/26 13:21:13 Modified files: lib/libcrypto/sha: sha1dgst.c Log message: Removes some unwanted spaces. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/03/26 13:22:35 Modified files: lib/libcrypto/sha: sha1dgst.c Log message: Remove unnecessary HIDDEN_DECLS. CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/03/26 13:25:16 Modified files: distrib/arm64/ramdisk: install.md Log message: Simplify apple firmware copying Less duplicate code, easier to add new firmware. OK afresh1 CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/03/26 13:30:45 Modified files: lib/libcrypto/sha: sha1dgst.c Log message: Replace HASH_BLOCK_DATA_ORDER with sha1_block_data_order. The only reason to use HASH_BLOCK_DATA_ORDER in the implementation is to make the code harder to read. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/26 13:56:28 Modified files: regress/lib/libcrypto/bn: bn_mod_exp.c Log message: Fix copy-paste error CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/26 14:09:14 Modified files: regress/lib/libcrypto/bn: bn_mod_exp.c Log message: Align bn_mod_exp_zero_test() with bn_mod_exp_test() CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/26 14:13:26 Modified files: regress/lib/libcrypto/bn: bn_mod_exp.c Log message: Test negative modulus as well. Lower the number of rounds. These tests are expensive. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/03/26 15:44:46 Modified files: sys/dev/fdt : if_dwqe_fdt.c Log message: Aparantly we must configure the RGMII interface (and possible the TX/RX delays) before taking the PHY out of reset. Fixes dwqe(4) on several boards that use rgephy(4). ok patrick@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/26 16:09:08 Modified files: regress/lib/libcrypto/bn: bn_mod_exp.c bn_mod_exp2_mont.c Log message: Fold the small BN_mod_exp2_mont() crash test into bn_mod_exp.c CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/26 16:10:04 Modified files: regress/lib/libcrypto/bn: Makefile Log message: Unhook bn_mod_exp2_mont test CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/26 16:11:03 Removed files: regress/lib/libcrypto/bn: bn_mod_exp2_mont.c Log message: Remove the now almost empty and unused bn_mod_exp2_mont.c CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2023/03/26 19:15:26 Modified files: . : 73.html Log message: initial drm notes CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2023/03/26 20:21:48 Modified files: . : 73.html Log message: update versions for src and xenocara CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2023/03/26 21:07:03 Modified files: . : 73.html Log message: update versions for ports CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 21:21:12 Modified files: sys/dev/pci/drm: drm_mode_config.c Log message: drm: Fix potential null-ptr-deref due to drmm_mode_config_init() From Shang XiaoJing b14147464251f66e38fa39f0aae9780466db8610 in linux-6.1.y/6.1.16 834c23e4f798dcdc8af251b3c428ceef94741991 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 21:23:26 Modified files: sys/dev/pci/drm: drm_fourcc.c Log message: drm/fourcc: Add missing big-endian XRGB1555 and RGB565 formats From Geert Uytterhoeven 0de7fc4d9c0142a3e6e5ea28941447132105cb14 in linux-6.1.y/6.1.16 6fb6c979ca628583d4d0c59a0f8ff977e581ecc0 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 21:25:04 Modified files: sys/dev/pci/drm/amd/amdgpu: amdgpu_trace.h Log message: drm/amdgpu: Use the sched from entity for amdgpu_cs trace From Leo Liu 208680ccf7bff31fc08735c2a23fd3dd3c19b903 in linux-6.1.y/6.1.16 cf22ef78f22ce4df4757472c5dbd33c430c5b659 in mainline linux CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2023/03/26 21:25:08 Modified files: usr.bin/ssh : scp.c Log message: scp: when copying local->remote, check that source file exists before opening SFTP connection to the server. Based on GHPR#370 ok dtucker, markus CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 21:27:34 Modified files: sys/dev/pci/drm: drm_mipi_dsi.c Log message: drm/mipi-dsi: Fix byte order of 16-bit DCS set/get brightness From Daniel Mentz a64eb25a291904a1736acfd85e5a4e3337f696c2 in linux-6.1.y/6.1.16 c9d27c6be518b4ef2966d9564654ef99292ea1b3 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 21:29:46 Modified files: sys/dev/pci/drm/amd/display/dc/dml/dcn20: display_mode_vba_20.c display_mode_vba_20v2.c sys/dev/pci/drm/amd/display/dc/dml/dcn21: display_mode_vba_21.c Log message: drm/amdgpu: fix enum odm_combine_mode mismatch From Arnd Bergmann 099bd0a7b363a17e6796896838708d957ef78463 in linux-6.1.y/6.1.16 087bad7eb1f6945f8232f132953ecc2bda8bd38d in mainline linux CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2023/03/26 21:31:05 Modified files: usr.bin/ssh : addr.c Log message: fix test: getnameinfo returns a non-zero value on error, not (neccessarily) -1. From GHPR#384 CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 21:31:40 Modified files: sys/dev/pci/drm/amd/display/amdgpu_dm: amdgpu_dm_crtc.c Log message: drm/amd/display: don't call dc_interrupt_set() for disabled crtcs From Hamza Mahfooz 062024bf77e9a2dddc1da801360565e6ce3f7199 in linux-6.1.y/6.1.16 4936458bf989d168f5a89015dd81067c4c2bdc64 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 21:34:57 Modified files: sys/dev/pci/drm: drm_panel_orientation_quirks.c Log message: drm: panel-orientation-quirks: Add quirk for Lenovo Yoga Tab 3 X90F From Hans de Goede 260bdc633d5e6cad666b72f9eae12f8b2c400096 in linux-6.1.y/6.1.16 8a238d7f7eea7592e0764bc3b9e79e7c6354b04c in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 21:36:32 Modified files: sys/dev/pci/drm: drm_panel_orientation_quirks.c Log message: drm: panel-orientation-quirks: Add quirk for DynaBook K50 From Allen Ballway d5b286daecb46292e1e229ff3dcc8a760afef759 in linux-6.1.y/6.1.16 a3caf7ea0c3d5872ed0f2c51f5476aee0c47a73a in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 21:38:14 Modified files: sys/dev/pci/drm/amd/display/dc/dml/dcn321: dcn321_fpu.c Log message: drm/amd/display: Reduce expected sdp bandwidth for dcn321 From Dillon Varone 8e25eaae471d9d64acc627deaf42e989e5836647 in linux-6.1.y/6.1.16 6b81090d6d4cc0fd818c9ec9dbb6906f921ad396 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 21:41:10 Modified files: sys/dev/pci/drm/amd/display/dc: dc_dp_types.h sys/dev/pci/drm/amd/display/dc/core: dc_link.c dc_link_dp.c Log message: drm/amd/display: Revert Reduce delay when sink device not able to ACK 00340h write From Ian Chen 223e365ac60aea701f00aefc24adb3cfd67db1d3 in linux-6.1.y/6.1.16 639f6ad6df7f47db48b59956b469a6917a136afb in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 21:43:02 Modified files: sys/dev/pci/drm/amd/display/amdgpu_dm: amdgpu_dm.c Log message: drm/amd/display: Fix potential null-deref in dm_resume From Roman Li 8e365f1bd672cc9320a936f6ae6f8087aa40e9bc in linux-6.1.y/6.1.16 7a7175a2cd84b7874bebbf8e59f134557a34161b in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 21:44:59 Modified files: sys/dev/pci/drm/amd/display/dc/dcn314: dcn314_dio_stream_encoder.c Log message: drm/amd/display: Defer DIG FIFO disable after VID stream enable From Nicholas Kazlauskas efb332a2037bdb3f49c42c0b895241383024c06b in linux-6.1.y/6.1.16 2d90a1c054831338d57b39aec4d273cf3e867590 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 21:46:41 Modified files: sys/dev/pci/drm/radeon: radeon_device.c Log message: drm/radeon: free iio for atombios when driver shutdown From Liwei Song 107b8b542bb9dab4cbdc3276c85fbdd7f6782313 in linux-6.1.y/6.1.16 4773fadedca918faec443daaca5e4ea1c0ced144 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 21:48:31 Modified files: sys/dev/pci/drm/amd/amdgpu: amdgpu_psp.c Log message: drm/amd: Avoid BUG() for case of SRIOV missing IP version From Mario Limonciello 12003ad0f35c946e8e05a8ed9069486ec36c6694 in linux-6.1.y/6.1.16 93fec4f8c158584065134b4d45e875499bf517c8 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 21:51:04 Modified files: sys/dev/pci/drm/amd/amdgpu: amdgpu_amdkfd.h amdgpu_amdkfd_gpuvm.c sys/dev/pci/drm/amd/amdkfd: kfd_chardev.c Log message: drm/amdkfd: Page aligned memory reserve size From Philip Yang 82a6debd4e4b98dabd99ab26a23553276559d509 in linux-6.1.y/6.1.16 0c2dece8fb541ab07b68c3312a1065fa9c927a81 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 21:52:40 Modified files: sys/dev/pci/drm/amd/display/dc/clk_mgr/dcn314: dcn314_smu.c Log message: drm/amd: Avoid ASSERT for some message failures From Mario Limonciello a0f406db3ede83791940adfc6cb1d67486e31ff7 in linux-6.1.y/6.1.16 3e5019ee67760cd61b2a5fd605e1289c2f92d983 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 21:55:01 Modified files: sys/dev/pci/drm/amd/display/dc/core: amdgpu_dc.c Log message: drm: amd: display: Fix memory leakage From Konstantin Meskhidze 83ace0dd67ee386be1ddcf59dab49d6d9a54e62e in linux-6.1.y/6.1.16 6b8701be1f66064ca72733c5f6e13748cdbf8397 in mainline linux CVSROOT: /cvs Module name: src Changes by: dtucker@cvs.openbsd.org 2023/03/26 21:56:11 Modified files: usr.bin/ssh : ssh.c ssh_config.5 Log message: Add tilde and environment variable expansion to RevokedHostKeys. bz#3552, ok djm@ CVSROOT: /cvs Module name: src Changes by: dtucker@cvs.openbsd.org 2023/03/26 21:56:50 Modified files: regress/usr.bin/ssh: percent.sh Log message: Add RevokedHostKeys to percent expansion test. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 21:57:04 Modified files: sys/dev/pci/drm/amd/display/dc/gpio: ddc_regs.h sys/dev/pci/drm/amd/display/dc/gpio/dcn20: hw_factory_dcn20.c sys/dev/pci/drm/amd/display/dc/gpio/dcn30: hw_factory_dcn30.c sys/dev/pci/drm/amd/display/dc/gpio/dcn32: hw_factory_dcn32.c Log message: drm/amd/display: fix mapping to non-allocated address From Brandon Syu 8ce8a443ddd9002861a4ee8a7e33a0c02717422f in linux-6.1.y/6.1.16 9190d4a263264eabf715f5fc1827da45e3fdc247 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 22:00:43 Modified files: sys/dev/pci/drm/include/drm: drm_print.h Log message: drm/drm_print: correct format problem From Wayne Lin 214cdbe17923f5e1ed1ff7ba19bac0901fc887e4 in linux-6.1.y/6.1.16 d987150b539271b0394f24c1c648d2846662adb4 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 22:02:50 Modified files: sys/dev/pci/drm/amd/display/amdgpu_dm: amdgpu_dm.c Log message: drm/amd/display: Set hvm_enabled flag for S/G mode From Roman Li 8f720a79bc66a81b6373ba38a1b6b8fdea838143 in linux-6.1.y/6.1.16 40e9f3f067bc6fb47b878f8ba0a9cc7b93abbf49 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 22:05:13 Modified files: sys/dev/pci/drm/amd/amdgpu: amdgpu_device.c amdgpu_drv.c Log message: Revert "drm/amdgpu: TA unload messages are not actually sent to psp when amdgpu is uninstalled" From Vitaly Prosyak 804bdc5fe05dbbcca6d998bf84c3dbafdcf3534d in linux-6.1.y/6.1.16 39934d3ed5725c5e3570ed1b67f612f1ea60ce03 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 22:07:06 Modified files: sys/dev/pci/drm/amd/display/dc/dml/dcn32: dcn32_fpu.c Log message: drm/amd/display: fix FCLK pstate change underflow From Vladimir Stempen 4bdfa48d74649898468a0bf5c8b8a48dded77b4a in linux-6.1.y/6.1.16 972243f973eb0821084e5833d5f7f4ed025f42da in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 22:10:36 Modified files: sys/dev/pci/drm/amd/display/dc/core: amdgpu_dc.c sys/dev/pci/drm/amd/display/dc/dcn10: dcn10_optc.h sys/dev/pci/drm/amd/display/dc/dcn30: dcn30_optc.c dcn30_optc.h sys/dev/pci/drm/amd/display/dc/inc/hw: timing_generator.h Log message: drm/amd/display: Do not commit pipe when updating DRR From Wesley Chalmers d919f493bb7dc4d0b568039b728eb44ca961ebaa in linux-6.1.y/6.1.16 8f0d304d21b351d65e8c434c5399a40231876ba1 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 22:12:36 Modified files: sys/dev/pci/drm/amd/display/dc/dcn314: dcn314_resource.c Log message: drm/amd/display: Enable P-state validation checks for DCN314 From Nicholas Kazlauskas 42bbbd6594f7ad125163debda0c5a077b9c3295f in linux-6.1.y/6.1.16 37d184b548db0f64d4a878960b2c6988b38a3e7e in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 22:14:57 Modified files: sys/dev/pci/drm: drm_panel_orientation_quirks.c Log message: drm: panel-orientation-quirks: Add quirk for Lenovo IdeaPad Duet 3 10IGL5 From Darrell Kavanagh 2435156aa7681dd38717a190cfad053a079c22de in linux-6.1.y/6.1.16 38b2d8efd03d2e56431b611e3523f0158306451d in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 22:17:00 Modified files: sys/dev/pci/drm/amd/display/dc/dcn314: dcn314_resource.c Log message: drm/amd/display: Disable HUBP/DPP PG on DCN314 for now From Nicholas Kazlauskas bea13417361a953729edef54cb3686dcc5301ff5 in linux-6.1.y/6.1.16 b7c67f72408b11b922f23f06c7df0f6743a2e89d in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 22:19:29 Modified files: sys/dev/pci/drm/amd/amdgpu: nbio_v7_2.c Log message: drm/amd: Fix initialization for nbio 7.5.1 From Mario Limonciello 749b249d1ba94d976b5f1e32fcd5059b45bc4c4a in linux-6.1.y/6.1.16 65a24000808f70ac69bd2a96381fa0c7341f20c0 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 22:21:40 Modified files: sys/dev/pci/drm/i915/display: intel_quirks.c Log message: drm/i915/quirks: Add inverted backlight quirk for HP 14-r206nv From Mavroudis Chatzilaridis c63e43906ba6b993090713453350bcddf6d32e59 in linux-6.1.y/6.1.16 5e438bf7f9a1705ebcae5fa89cdbfbc6932a7871 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 22:23:40 Modified files: sys/dev/pci/drm/radeon: atombios_encoders.c Log message: drm/radeon: Fix eDP for single-display iMac11,2 From Mark Hawrylak 8551ddbff0c3cd9e68a58649820754f471ca49a7 in linux-6.1.y/6.1.16 05eacc198c68cbb35a7281ce4011f8899ee1cfb8 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 22:25:33 Modified files: sys/dev/pci/drm/i915/gt: intel_ring.c Log message: drm/i915: Don't use stolen memory for ring buffers with LLC From John Harrison d805c28e11fc2a3043bb75aae098e576d746f625 in linux-6.1.y/6.1.16 690e0ec8e63da9a29b39fedc6ed5da09c7c82651 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 22:27:20 Modified files: sys/dev/pci/drm/i915/gt: intel_ring.c Log message: drm/i915: Don't use BAR mappings for ring buffers with LLC From John Harrison be11d0d9c4eb7c2108ce9041b9e89c86856ca596 in linux-6.1.y/6.1.16 85636167e3206c3fbd52254fc432991cc4e90194 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 22:29:06 Modified files: sys/dev/pci/drm: drm_edid.c Log message: drm/edid: fix AVI infoframe aspect ratio handling From Jani Nikula 26cbe4c63d1ed6b7e47ca196fd59f8a32ed353ca in linux-6.1.y/6.1.16 1cbc1f0d324ba6c4d1b10ac6362b5e0b029f63d5 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/26 22:31:12 Modified files: sys/dev/pci/drm: drm_edid.c Log message: drm/edid: fix parsing of 3D modes from HDMI VSDB From Jani Nikula f0f427f3858fda994fe26aacdb7a51815995f035 in linux-6.1.y/6.1.16 72794d16bd535a984e6653a18f5862405b49b5f9 in mainline linux CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/27 00:15:43 Modified files: distrib/miniroot: install.sub Log message: Revert r1.1235, "simplify final MAKEDEV call" While MAKEDEV accepts multiple args, it complains loudly on repeated args. It is silent when trying to create a single already existing device. This is probably a bug in MAKEDEV. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 01:28:38 Modified files: sys/dev/pci/drm/include/drm/display: drm_dp_mst_helper.h sys/dev/pci/drm/display: drm_dp_mst_topology.c Log message: drm/display/dp_mst: Add drm_atomic_get_old_mst_topology_state() From Imre Deak 6130b22fb677430af8fe4a2ac4fbf2f5b8572d12 in linux-6.1.y/6.1.18 9ffdb67af0ee625ae127711845532f670cc6a4e7 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 01:32:07 Modified files: sys/dev/pci/drm/display: drm_dp_mst_topology.c Log message: drm/display/dp_mst: Fix down/up message handling after sink disconnect From Imre Deak b30fcedeba643ca16eaa6212c1245598b7cd830d in linux-6.1.y/6.1.18 1d082618bbf3b6755b8cc68c0a8122af2842d593 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 01:34:35 Modified files: sys/dev/pci/drm/display: drm_dp_mst_topology.c Log message: drm/display/dp_mst: Fix down message handling after a packet reception error From Imre Deak efe5ce019a9bae988ac244b593da21cec30e9c06 in linux-6.1.y/6.1.18 1241aedb6b5c7a5a8ad73e5eb3a41cfe18a3e00e in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 01:36:36 Modified files: sys/dev/pci/drm/display: drm_dp_mst_topology.c Log message: drm/display/dp_mst: Fix payload addition on a disconnected sink From Imre Deak 6e48e7901e6258b8ea1116d70752d0eb2eca797d in linux-6.1.y/6.1.18 33f960e23c29d113fe3193e0bdc19ac4f3776f20 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 01:41:58 Modified files: sys/dev/pci/drm/i915/display: intel_display.c intel_dp_mst.c intel_dp_mst.h Log message: drm/i915/dp_mst: Add the MST topology state for modesetted CRTCs From Imre Deak fb5f2b42650f60a06cfe794e40810c22083c171a in linux-6.1.y/6.1.18 326b1e792ff08b4d8ecb9605aec98e4e5feef56e in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 01:46:03 Modified files: sys/dev/pci/drm/i915/display: intel_fbdev.c Log message: drm/i915: Fix system suspend without fbdev being initialized From Imre Deak 27b5871abd5cc068c549fd23062c82e257fc0b9c in linux-6.1.y/6.1.18 8038510b1fe443ffbc0e356db5f47cbb8678a594 in mainline linux CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2023/03/27 02:31:32 Modified files: usr.bin/tmux : screen-write.c tty.c Log message: For passthrough, don't write to clients attached to different sessions, based on a fix from Sergei Grechanik. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/27 02:37:33 Modified files: lib/libcrypto/bn: bn_lib.c bn_local.h Log message: Add bn_copy(), a sane wrapper of BN_copy() for internal use ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/27 02:41:35 Modified files: lib/libcrypto/bn: bn_nist.c Log message: Convert bn_nist.c to BN_copy() Like everything else in this file, the use of BN_copy() needs to be ... special. Simplify using the new bn_copy(). ok jsing CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2023/03/27 02:47:57 Modified files: usr.bin/tmux : format.c input.c tmux.1 tmux.h window.c Log message: Add a format to show if there are unseen changes while in a mode, from Dan Aloni in GitHub issue 3498. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/27 02:49:34 Modified files: lib/libcrypto/bn: bn_gf2m.c Log message: Drop unnecessary parentheses. ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/27 02:52:57 Modified files: regress/lib/libcrypto/bn: bn_mod_exp.c bn_test.c Log message: Switch regress to using bn_copy() CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/27 03:01:08 Modified files: regress/lib/libcrypto/bn: bn_mod_exp.c Log message: bn_mod_exp: make this test a bit less noisy on failure While it is good to run more tests on failure, it is pointless to try broken things thousands of times. CVSROOT: /cvs Module name: src Changes by: jan@cvs.openbsd.org 2023/03/27 03:15:46 Modified files: lib/libcrypto/err: err.c Log message: Avoid errno is EINVAL after OpenSSL initialization ok tb@ CVSROOT: /cvs Module name: src Changes by: naddy@cvs.openbsd.org 2023/03/27 03:39:21 Modified files: sys/conf : GENERIC Log message: re-enable POOL_DEBUG CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/03/27 04:13:08 Modified files: lib/libcrypto/sha: sha512.c Log message: Tidy includes. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/27 04:20:27 Modified files: lib/libcrypto/bn: bn_gf2m.c Log message: Use bn_copy() rather than inlining it ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/27 04:21:23 Modified files: lib/libcrypto/bn: bn_div.c bn_exp.c bn_gcd.c bn_kron.c bn_mod.c bn_mont.c lib/libcrypto/ecdsa: ecs_ossl.c Log message: Convert BN_copy() with explicit comparison against NULL to bn_copy() ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/27 04:22:47 Modified files: lib/libcrypto/bn: bn_exp.c bn_mul.c bn_sqr.c lib/libcrypto/rsa: rsa_gen.c Log message: Convert BN_copy() with missing error checks to bn_copy() ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/27 04:25:02 Modified files: lib/libcrypto/bn: bn_blind.c bn_exp.c bn_gcd.c bn_gf2m.c bn_isqrt.c bn_lib.c bn_mont.c bn_recp.c bn_sqrt.c bn_x931p.c lib/libcrypto/dsa: dsa_gen.c dsa_ossl.c lib/libcrypto/ec: ec2_mult.c ec2_smpl.c ec_key.c ec_lib.c ecp_mont.c ecp_smpl.c lib/libcrypto/ecdsa: ecs_ossl.c Log message: Replace the remaining BN_copy() with bn_copy() ok jsing CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/03/27 04:27:12 Modified files: lib/libcrypto/sha: sha512.c Log message: Reorder functions/code. No intended functional change. CVSROOT: /cvs Module name: www Changes by: tj@cvs.openbsd.org 2023/03/27 09:09:47 Modified files: libressl : releases.html Log message: correct year for the 3.7.1 release; from alex naumov CVSROOT: /cvs Module name: src Changes by: op@cvs.openbsd.org 2023/03/27 09:35:29 Modified files: usr.bin/aucat : afile.c Log message: reading aid: explicitly check for memcmp() != 0; no functional change ok ratchov@ CVSROOT: /cvs Module name: src Changes by: op@cvs.openbsd.org 2023/03/27 09:36:18 Modified files: usr.bin/aucat : afile.c Log message: typo: filed -> failed; ok ratchov@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/03/27 11:49:13 Modified files: sys/arch/arm64/arm64: cpu.c Log message: Show BT and SBSS features in dmesg. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: op@cvs.openbsd.org 2023/03/27 11:53:17 Modified files: usr.bin/mg : region.c Log message: kill two empty lines and some trailing whitespaces CVSROOT: /cvs Module name: src Changes by: op@cvs.openbsd.org 2023/03/27 11:54:20 Modified files: usr.bin/mg : region.c Log message: kill another empty line CVSROOT: /cvs Module name: www Changes by: naddy@cvs.openbsd.org 2023/03/27 12:21:47 Modified files: . : 73.html Log message: 7.3 release: 10572 i386 packages, 11561 aarch64 packages CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/03/27 13:02:48 Modified files: sys/arch/arm64/arm64: aesv8-armx.S pmap.c trap.c sys/arch/arm64/conf: Makefile.arm64 sys/arch/arm64/include: armreg.h asm.h pte.h Log message: Implement branch target protection using the branch target identification feature introduced in Armv8.5. This provides "head-CFI" to complement the "tail-CFI" provided by retguard. Unfortunately most arm64 machines don't support this feature yet. But Apple M2 does support it and it seems to work there. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/03/27 13:43:36 Modified files: distrib/macppc/ramdisk: install.md Log message: Silence informational messages from dd(1) when zeroing a disk's first 1MB CVSROOT: /cvs Module name: src Changes by: dtucker@cvs.openbsd.org 2023/03/27 17:56:54 Modified files: regress/usr.bin/ssh/misc/sk-dummy: sk-dummy.c Log message: Remove compatibility code for OpenSSL 1.0.* versions now that -portable has dropped support for those versions. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 18:10:35 Modified files: sys/dev/pci/drm/amd/amdgpu: soc15.c Log message: drm/amdgpu: fix error checking in amdgpu_read_mm_registers for soc15 From Alex Deucher 39190482e5d0993f237d6a2b54f5548d92156d50 in linux-6.1.y/6.1.20 0dcdf8498eae2727bb33cef3576991dc841d4343 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 18:12:19 Modified files: sys/dev/pci/drm/amd/amdgpu: soc21.c Log message: drm/amdgpu: fix error checking in amdgpu_read_mm_registers for soc21 From Alex Deucher a11e210dc595a8b7259335a9d7c7b57cc8f39bd4 in linux-6.1.y/6.1.20 2915e43a033a778816fa4bc621f033576796521e in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 18:13:59 Modified files: sys/dev/pci/drm/amd/amdgpu: nv.c Log message: drm/amdgpu: fix error checking in amdgpu_read_mm_registers for nv From Alex Deucher d07d152d762d746016f546f9fedd3f319870cf5e in linux-6.1.y/6.1.20 b42fee5e0b44344cfe4c38e61341ee250362c83f in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 18:16:13 Modified files: sys/dev/pci/drm/display: drm_hdmi_helper.c Log message: drm/display: Don't block HDR_OUTPUT_METADATA on unknown EOTF From Harry Wentland 9f6f6f42b9ef6b6ad2fcd01623593bef7eb5a47b in linux-6.1.y/6.1.20 e5eef23e267c72521d81f23f7f82d1f523d4a253 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 18:17:52 Modified files: sys/dev/pci/drm: drm_atomic.c Log message: drm/connector: print max_requested_bpc in state debugfs From Harry Wentland 8d2ca666a7b415a4a063be39b20c2b99c42421cb in linux-6.1.y/6.1.20 7d386975f6a495902e679a3a250a7456d7e54765 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 18:19:53 Modified files: sys/dev/pci/drm/i915/display: intel_connector.c intel_panel.c intel_panel.h Log message: drm/i915: Introduce intel_panel_init_alloc() From Ville Syrjala e340197a453987c48cdeeeb6447d0944513de538 in linux-6.1.y/6.1.20 f70f8153e3642337b444fbc0c64d546a46bbcd62 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 18:22:33 Modified files: sys/dev/pci/drm/i915/display: icl_dsi.c intel_bios.c intel_bios.h intel_display_types.h intel_dp.c intel_lvds.c intel_panel.c intel_sdvo.c vlv_dsi.c Log message: drm/i915: Do panel VBT init early if the VBT declares an explicit panel type From Ville Syrjala bd61a84b5eee4eaf3daf1c69499a4eca1f972ca4 in linux-6.1.y/6.1.20 3f9ffce5765d68775163b8b134c4d7f156b48eec in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 18:24:29 Modified files: sys/dev/pci/drm/i915/display: icl_dsi.c intel_bios.c Log message: drm/i915: Populate encoder->devdata for DSI on icl+ From Ville Syrjala 783c225e910fa5e0ef7bd9de88d32c0787e04e95 in linux-6.1.y/6.1.20 14e591a1930c2790fe862af5b01ee3ca587f752f in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 18:25:50 Modified files: sys/dev/pci/drm/amd/amdkfd: kfd_doorbell.c Log message: drm/amdgpu: fix return value check in kfd From Shashank Sharma dc7d4b1a6568652f51ee45b1a1e3531f1186a552 in linux-6.1.y/6.1.20 20534dbcc7b7bfb447279cdcfb0d88ee3b779a18 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 18:27:21 Modified files: sys/dev/pci/drm/amd/amdgpu: soc21.c Log message: drm/amdgpu/soc21: don't expose AV1 if VCN0 is harvested From Alex Deucher 69a56ace8bc2a3ee3d1a9584c30476c588b1f420 in linux-6.1.y/6.1.20 a6de636eb04f146d23644dbbb7173e142452a9b7 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 18:29:11 Modified files: sys/dev/pci/drm/amd/amdgpu: soc21.c Log message: drm/amdgpu/soc21: Add video cap query support for VCN_4_0_4 From Veerabadhran Gopalakrishnan 70f12dee2254dd956ffaf547507b688887fed6c6 in linux-6.1.y/6.1.20 6ce2ea07c5ff0a8188eab0e5cd1f0e4899b36835 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 18:31:10 Modified files: sys/dev/pci/drm/amd/display/dc/dcn32: dcn32_resource.h sys/dev/pci/drm/amd/display/dc/dml/dcn32: dcn32_fpu.c Log message: drm/amd/display: Allow subvp on vactive pipes that are 2560x1440@60 From Alvin Lee 02c8fa11f545938f3f5af3cd02fe343803539213 in linux-6.1.y/6.1.20 2ebd1036209c2e7b61e6bc6e5bee4b67c1684ac6 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 18:34:04 Modified files: sys/dev/pci/drm/amd/display/dc/dcn32: dcn32_resource.c dcn32_resource.h sys/dev/pci/drm/amd/display/dc/dcn321: dcn321_resource.c sys/dev/pci/drm/amd/display/dc/dml/dcn32: dcn32_fpu.c sys/dev/pci/drm/amd/display/dc/dml/dcn321: dcn321_fpu.c Log message: drm/amd/display: adjust MALL size available for DCN32 and DCN321 From Samson Tam 38327b6cb1fa2bb098bca0db7dd25ee80a6d64b1 in linux-6.1.y/6.1.20 235fef6c7fd341026eee90cc546e6e8ff8b2c315 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 21:55:56 Modified files: sys/dev/pci/drm: drm_gem.c sys/dev/pci/drm/include/drm: drm_gem.h Log message: drm/msm/gem: Prevent blocking within shrinker loop From Dmitry Osipenko 96a5aee27439e56fca69628c3f87a042e7026b3e in linux-6.1.y/6.1.21 9630b585b607bd26f505d34620b14d75b9a5af7d in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 21:59:10 Modified files: sys/dev/pci/drm/i915/display: intel_display_types.h intel_psr.c Log message: drm/i915/psr: Use calculated io and fast wake lines From Jouni Hogander d586d58c3f2a9835dfdbf34fee0d8522303ab24f in linux-6.1.y/6.1.21 71c602103c74b277bef3d20a308874a33ec8326d in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 22:01:47 Modified files: sys/dev/pci/drm/i915/gt: intel_sseu.h Log message: drm/i915/sseu: fix max_subslices array-index-out-of-bounds access From Andrea Righi 1a1682abf7399318ac074b1f2ac6a8c992b5b3da in linux-6.1.y/6.1.21 193c41926d152761764894f46e23b53c00186a82 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 22:03:59 Modified files: sys/dev/pci/drm/include/drm: drm_bridge.h Log message: drm/bridge: Fix returned array size name for atomic_get_input_bus_fmts kdoc From Liu Ying 9821576e117047e4bf8e92a673272aa014a3bb2e in linux-6.1.y/6.1.21 0d3c9333d976af41d7dbc6bf4d9d2e95fbdf9c89 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 22:05:41 Modified files: sys/dev/pci/drm/amd/amdkfd: kfd_events.c Log message: drm/amdkfd: Fix an illegal memory access From Qu Huang d9923e7214a870b312bf61f6a89c7554d0966985 in linux-6.1.y/6.1.21 4fc8fff378b2f2039f2a666d9f8c570f4e58352c in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 22:07:35 Modified files: sys/dev/pci/drm/amd/amdgpu: amdgpu_psp.c Log message: drm/amdgpu: fix ttm_bo calltrace warning in psp_hw_fini From Horatio Zhang 7be9a2f8c5179520a7d5570e648e0c97d09e4fae in linux-6.1.y/6.1.21 23f4a2d29ba57bf88095f817de5809d427fcbe7e in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 22:09:34 Modified files: sys/dev/pci/drm/amd/display/dc/dml/dcn30: display_mode_vba_30.c Log message: drm/amd/display: fix shift-out-of-bounds in CalculateVMAndRowBytes From Alex Hung a16394b5d661afec9a264fecac3abd87aea439ea in linux-6.1.y/6.1.21 031f196d1b1b6d5dfcb0533b431e3ab1750e6189 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 22:11:29 Modified files: sys/dev/pci/drm/ttm: ttm_device.c Log message: drm/ttm: Fix a NULL pointer dereference From Thomas Hellstrom 9ba1720f6c4a0f13c3f3cb5c28132ee75555d04f in linux-6.1.y/6.1.21 9a9a8fe26751334b7739193a94eba741073b8a55 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 22:13:21 Modified files: sys/dev/pci/drm/i915: i915_active.c Log message: drm/i915/active: Fix misuse of non-idle barriers as fence trackers From Janusz Krzysztofik 5c7591b8574c52c56b3994c2fbef1a3a311b5715 in linux-6.1.y/6.1.21 e0e6b416b25ee14716f3549e0cbec1011b193809 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 22:15:15 Modified files: sys/dev/pci/drm/i915/display: intel_snps_phy.c Log message: drm/i915/dg2: Add HDMI pixel clock frequencies 267.30 and 319.89 MHz From Ankit Nautiyal 0243590e33a7d87efbf3adc0565269b4dc224944 in linux-6.1.y/6.1.21 46bc23dcd94569270d02c4c1f7e62ae01ebd53bb in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 22:16:38 Modified files: sys/dev/pci/drm/amd/amdkfd: kfd_device.c Log message: drm/amdgpu: Don't resume IOMMU after incomplete init From Felix Kuehling dab920478e2b53d1abcf9b929f8205233041d32a in linux-6.1.y/6.1.21 f3921a9a641483784448fb982b2eb738b383d9b9 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 22:21:09 Modified files: sys/dev/pci/drm/amd/pm/swsmu/smu11: sienna_cichlid_ppt.c Log message: drm/amd/pm: Fix sienna cichlid incorrect OD volage after resume From mumei6102 6e403a0a69f73ecc5ee0a2045efdcb9051abdd56 in linux-6.1.y/6.1.21 a9386ee9681585794dbab95d4ce6826f73d19af6 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 22:22:50 Modified files: sys/dev/pci/drm/amd/pm/swsmu/inc: smu_v13_0.h sys/dev/pci/drm/amd/pm/swsmu/inc/pmfw_if: smu13_driver_if_v13_0_4.h Log message: drm/amd/pm: bump SMU 13.0.4 driver_if header version From Tim Huang 20f8225ae7f4bf9c30f40705f036a9a7ba8f1bd6 in linux-6.1.y/6.1.21 ab9bdb1213b4b40942af6a383f555d0c14874c1b in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 22:24:27 Modified files: sys/dev/pci/drm/amd/display/dc/dcn30: dcn30_hwseq.c Log message: drm/amd/display: Do not set DRR on pipe Commit From Wesley Chalmers f8080f1e300e7abcc03025ec8b5bab69ae98daaa in linux-6.1.y/6.1.21 56574f89dbd84004c3fd6485bcaafb5aa9b8be14 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/27 22:26:34 Modified files: sys/dev/pci/drm/amd/display/dc/dcn32: dcn32_resource.c Log message: drm/amd/display: disconnect MPCC only on OTG change From Ayush Gupta 39374fc8bb11990ed69348bfe517d3df0463b263 in linux-6.1.y/6.1.21 7304ee979b6b6422f41a1312391a5e505fc29ccd in mainline linux CVSROOT: /cvs Module name: src Changes by: dtucker@cvs.openbsd.org 2023/03/28 00:12:38 Modified files: usr.bin/ssh : sk-usbhid.c Log message: Remove compatibility code for OpenSSL versions prior to 1.1.* since -portable no longer supports them. CVSROOT: /cvs Module name: src Changes by: dtucker@cvs.openbsd.org 2023/03/28 01:44:32 Modified files: usr.bin/ssh : sftp-client.c sftp.c Log message: Plug more mem leaks in sftp by making make_absolute_pwd_glob work in the same way as make_absolute: you pass it a dynamically allocated string and it either returns it, or frees it and allocates a new one. Patch from emaste at freebsd.org and https://reviews.freebsd.org/D37253 ok djm@ CVSROOT: /cvs Module name: src Changes by: op@cvs.openbsd.org 2023/03/28 02:01:40 Modified files: usr.bin/mg : region.c Log message: mg: fall back to /bin/sh if $SHELL is undefined. Original diff from lux (lx [at] shellcodes [dot] org) thanks! tweaked by me; ok millert@ CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/03/28 02:32:42 Modified files: usr.sbin/bgpd : rde.c Log message: Switch role logic in rde_aspa_validity() since this may need to be extended. OK tb@ mbuhl@ CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/03/28 03:52:08 Modified files: usr.sbin/bgpd : mrt.c Log message: Refactor mrt_dump_entry_v2() to use a dynamic buffer to hold the prefix. Especially flowspec "prefixes" are variable size and so using a static buffer there is not going to work in the long run. OK tb@ CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/03/28 06:06:15 Modified files: usr.sbin/bgpd : bgpd.h rde_prefix.c Log message: Include the memory size usage of the prefix tree in rde_memstats. OK tb@ CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/03/28 06:07:09 Modified files: usr.sbin/bgpctl: bgpctl.h output.c output_json.c output_ometric.c Log message: Use pt_size from struct rde_memstats instead of computing it by hand. OK tb@ CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/03/28 06:15:23 Modified files: usr.sbin/bgpd : bgpd.h rtr.c rtr_proto.c session.h Log message: Introduce a semaphore to protect intermediate state from different RTR sessions to leak into the RDE via rtr_recalc. Only run rtr_recalc when the last or only RTR session is done with the update. Run a new timer along to ensure that the semaphore is not hold forever. The timeout is currently a very generous 60sec, no RTR cache should be that slow. OK tb@ CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/03/28 07:30:31 Modified files: usr.sbin/bgpd : bgpd.h rde.h rde_prefix.c Log message: More pt_entry cleanup, move structure definitions to rde_prefix.c and by that make them private. Remove no longer used AID_PTSIZE define. OK tb@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/28 08:01:42 Modified files: sys/dev/ic : bwfm.c Log message: revert bwfm.c rev 1.108 as noted by patrick@, the txctl functions already free the buffers CVSROOT: /cvs Module name: src Changes by: op@cvs.openbsd.org 2023/03/28 08:47:28 Modified files: usr.bin/mg : region.c Log message: use the shell basename as argv[0] instead of hardcoding "sh" Suggested by and ok millert@, thanks! CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/03/28 09:17:34 Modified files: usr.sbin/bgpd : mrt.c rde.h rde_prefix.c rde_rib.c rde_update.c Log message: Instead of exracting the prefix into a bgpd_addr and passing that to prefix_write() rename prefix_write() to pt_write() and pass a pt_entry to the function. Removes an extra conversion step. OK tb@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/28 10:32:42 Modified files: sbin/isakmpd : dh.c Log message: Avoid double free in isakmpd In the unlikely event that EC_KEY_check_key() in ec_init() fails, group->ec would be freed first in ec_init() then in group_free(). Same problem was fixed in iked/dh.c r1.31 (where it originally came from). ok jsg mbuhl CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/03/28 11:47:29 Modified files: usr.sbin/bgpd : rde_prefix.c Log message: In pt_fill set the refcnt to its maximum value to trigger an error if pt_ref is called on such a pt_entry. Set refcnt to 0 in pt_alloc since the value from pt_fill is copied over. OK tb@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/28 15:33:21 Modified files: usr.bin/mg : tags.c Log message: mg: fix parsing of tag files with duplicate entries Instead of erroring out ignore duplicates. Fixes using /var/db/libc.tags again. ok op CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2023/03/28 17:07:46 Modified files: share/zoneinfo/datfiles: asia Log message: Apply changes from tzdata2023c. This reverts the controversial Lebanon DST change which led to a partly-sectarian divide within the country. CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/03/28 17:09:08 Modified files: distrib/armv7/ramdisk: install.md Log message: Properly disable informational dd(1) messages, retain errors Same as done for arm64 already CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/03/28 18:16:14 Modified files: distrib/arm64/ramdisk: install.md distrib/armv7/ramdisk: install.md Log message: Unify variable usage in arm64 and armv7 md_installboot() with the rest `_disk' (and related variables) hold disk names as "sd0" so that all else can be constructed from it. Fix the only two offenders across distrib/ which put start the variable with "/dev/"; no functional change. CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2023/03/28 18:18:35 Modified files: usr.bin/ssh : auth-options.c Log message: fix memory leak; Coverity CID 291848, with/ok dtucker@ CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/03/28 18:25:47 Modified files: distrib/arm64/ramdisk: install.md distrib/armv7/ramdisk: install.md Log message: Use character not block devices with dd(1) like the rest All other dd invocations in installer code, INSTALL.* instructions and dd(1) EXAMPLES use the disk's "raw device". CVSROOT: /cvs Module name: src Changes by: dtucker@cvs.openbsd.org 2023/03/28 18:59:08 Modified files: usr.bin/ssh : sftp.c Log message: Plug another potential mem leak in process_put. It allocates abs_dst inside a loop but only frees it on exit, so free inside the loop if necessary. Coverity CID 291837, ok djm@ CVSROOT: /cvs Module name: src Changes by: dtucker@cvs.openbsd.org 2023/03/28 19:07:48 Modified files: usr.bin/ssh : kexgexs.c Log message: Explicitly ignore return value from sshpkt_disconnect since we set our own return value for the function. Coverity CID 291797, ok djm@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/03/28 22:24:09 Modified files: lib/libcrypto/sha: sha1dgst.c Log message: Inline initial hash data values for SHA1. This follows what is done for other SHA implementations. ok miod@ tb@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/03/28 23:03:34 Modified files: lib/libcrypto/sha: sha1dgst.c Log message: Mop up MD32_XARRAY from SHA1. MD32_XARRAY (formerly SHA_XARRAY) was added as a workaround for a broken HP C compiler (circa 1999). Clean it up to simplify the code. No change in generated assembly. ok miod@ tb@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/03/28 23:11:37 Modified files: lib/libcrypto/sha: sha512.c Log message: Use multiple statements instead of a statement with multiple expressions. No change in generated assembly. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/03/28 23:27:02 Modified files: lib/libcrypto/sha: sha512.c Log message: Whitespace fixes. Mechanically replace "a,b" with "a, b", followed with some manual indentation clean up. No change in generated assembly. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/03/28 23:31:43 Modified files: lib/libcrypto/sha: sha1dgst.c Log message: Whitespace fixes. Mechanically replace "a,b" with "a, b". No change to generated assembly. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/03/28 23:34:01 Modified files: lib/libcrypto/sha: sha256.c Log message: More whitespace fixes. Another set of mechnical replacements for "a,b" with "a, b". No change in generated assembly. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/29 00:32:53 Modified files: regress/lib/libcrypto/bn: bn_mod_exp.c Log message: Rename a few variables for readability CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/29 00:50:51 Modified files: regress/lib/libcrypto/bn: bn_mod_exp.c Log message: Remove one of those ugly function tables The only reason there were two of them was to avoid some pointless comparisons. The gain is not worth the price. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/29 00:53:49 Modified files: regress/lib/libcrypto/bn: bn_mod_exp.c Log message: Use more consistent names for the main test functions CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/29 01:29:11 Modified files: regress/lib/libcrypto/bn: bn_mod_exp.c Log message: Dedup generate_test_triple() and generate_test_quintuple() CVSROOT: /cvs Module name: src Changes by: op@cvs.openbsd.org 2023/03/29 01:29:17 Modified files: usr.bin/mg : mg.1 tags.c Log message: change tagvisit (aka visit-tag-table) to immediately load the tag file before it used to only record the path to the tag file which was loaded on demand upon find-tag (M-.). tagvisit did to do a stat + access dance to know if the path was pointing to a regular, readable file and loadtags (called lazily by find-tag) trusted those checks... Instead, just load the tags in tagvisit and drop the lazy mechanics. ok tb@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/29 01:38:16 Modified files: regress/lib/libcrypto/bn: bn_mod_exp.c Log message: Fix printfs that escaped defensive grepping CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/29 01:46:40 Modified files: regress/lib/libcrypto/bn: bn_mod_exp.c Log message: Dedup print functions on test failure CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/29 04:36:14 Modified files: regress/lib/libcrypto/bn: bn_mod_exp.c Log message: Rework test failure printing Make sure it's always printed to stderr. Use a wrapper for printing a BIGNUM rather than repeating the same ugly pattern over and over again. CVSROOT: /cvs Module name: src Changes by: op@cvs.openbsd.org 2023/03/29 04:42:34 Modified files: usr.bin/mg : tags.c Log message: drop needless global tagsfn path mg kept the path to the last loaded tag file in tagsfn which was used for both the lazy loading (now removed) and as a flag to know if any tags are currently loaded. It's redundant and complicates the code: just check if the tree is empty instead. ok tb@ CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/03/29 04:46:11 Modified files: usr.sbin/bgpd : rde.h rde_rib.c rde_update.c Log message: Switch prefix_adjout_get and new prefix_adjout_first to use a pt_entry as argument instead of the bgpd_addr + prefixlen. Do the same with prefix_adjout_update but leave prefix_adjout_lookup and prefix_adjout_match since those are used by bgpctl code that does not use pt_entry structs. With this most of the update code no longer needs struct bgpd_addr and pt_getaddr(). OK tb@ CVSROOT: /cvs Module name: www Changes by: naddy@cvs.openbsd.org 2023/03/29 04:58:53 Modified files: . : 73.html Log message: 7.3 release: 9325 sparc64 packages CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2023/03/29 06:12:13 Modified files: xserver/composite: compwindow.c Log message: composite: Fix use-after-free of the COW CVE-2023-1393, ZDI-CAN-19866 CVSROOT: /cvs Module name: xenocara Changes by: bluhm@cvs.openbsd.org 2023/03/29 06:18:07 Modified files: xserver/composite: Tag: OPENBSD_7_2 compwindow.c Log message: composite: Fix use-after-free of the COW CVE-2023-1393, ZDI-CAN-19866 from matthieu@ this is errata/7.2/024_xserver.patch.sig CVSROOT: /cvs Module name: xenocara Changes by: bluhm@cvs.openbsd.org 2023/03/29 06:19:30 Modified files: xserver/composite: Tag: OPENBSD_7_1 compwindow.c Log message: composite: Fix use-after-free of the COW CVE-2023-1393, ZDI-CAN-19866 from matthieu@ this is errata/7.1/028_xserver.patch.sig CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/03/29 08:20:51 Modified files: sbin/fdisk : cmd.c part.c Log message: Simplify code by having PRT_uuid_to_type() return -1 when no type can be found. 0 is a valid type! No functional change. CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/03/29 08:35:38 Modified files: usr.sbin/bgpd : bgpd.h Log message: Mark the struct aid name as const char * since it points to static memory. CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/03/29 09:55:34 Modified files: sbin/fdisk : part.c Log message: No need to assume a nil GUID can be found at gpt_types[0]. Just use uuid_create_nil(). No functional change. CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/03/29 10:20:17 Modified files: distrib/arm64/ramdisk: install.md Log message: Add missing semicolon to properly end switch case There since introduction, lucked out since it is the last case. No functional change. CVSROOT: /cvs Module name: www Changes by: bluhm@cvs.openbsd.org 2023/03/29 10:55:36 Modified files: . : errata71.html errata72.html Log message: Release xserver errata. CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/03/29 11:03:29 Modified files: usr.sbin/rpki-client: repo.c Log message: Instead of storing the short TAL name as repouri use the first TAL URI for that. This is more in line with the other uses of repouri. OK tb@ CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/03/29 11:40:24 Modified files: distrib/miniroot: install.sub Log message: Quote possible 'none' answer as part of help text after question 'Default IPv4 route?' takes an IP or this word, not no IP at all. All other questions already quote their 'none', 'done', etc. answers. No behaviour change for autoinstall(8) files, questions end after the qestion mark and potential answers/help in parentheses comes after that. CVSROOT: /cvs Module name: src Changes by: op@cvs.openbsd.org 2023/03/29 13:09:04 Modified files: usr.bin/mg : tags.c Log message: plug leak of tagpos in poptag() if loadbuffer() fails CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/03/29 13:34:49 Modified files: sbin/fdisk : part.h part.c cmd.c Log message: Change 'type' to 'menuid' in various struct's, functions and variables related to gpt partitions. Makes it clear that there is no required tie between mbr partition types and gpt partition types. No functional change. CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2023/03/29 13:55:46 Modified files: www/chromium : Makefile distinfo Log message: update to 11.0.5563.147 CVSROOT: /cvs Module name: ports Changes by: kmos@cvs.openbsd.org 2023/03/29 14:00:51 Modified files: lang/microscheme: Makefile Log message: Fix the build of lang/microscheme on sparc64 with the usual c99 dance CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2023/03/29 14:03:21 Modified files: www/ungoogled-chromium: Makefile distinfo Log message: update to 111.0.5563.147 CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/03/29 14:03:56 Modified files: devel/github-cli: Makefile distinfo modules.inc devel/github-cli/pkg: PLIST Log message: update to github-cli 2.25.1 CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/03/29 14:04:08 Modified files: sysutils/gitlab-cli: Makefile distinfo sysutils/gitlab-cli/pkg: PLIST Log message: update to gitlab-cli 1.26.0 (no modules.inc change) CVSROOT: /cvs Module name: ports Changes by: mglocker@cvs.openbsd.org 2023/03/29 14:04:57 Modified files: www/nostromo : Makefile distinfo Log message: update to nostromo 2.1 CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/03/29 14:07:28 Modified files: devel/tl-expected: Makefile distinfo Log message: update to tl-expected 1.1.0 (plus fixes) CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/03/29 14:07:56 Modified files: net/dino : Makefile distinfo net/dino/patches: patch-main_CMakeLists_txt Log message: security/bugfix update to dino 0.4.2 https://dino.im/security/cve-2023-28686/ https://github.com/dino/dino/compare/v0.4.1...v0.4.2 CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/03/29 14:37:43 Modified files: devel/p5-Devel-MAT-Dumper: Makefile distinfo Removed files: devel/p5-Devel-MAT-Dumper/patches: patch-lib_Devel_MAT_Dumper_xs Log message: update p5-Devel-MAT-Dumper to 0.47 CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2023/03/29 14:41:22 Modified files: security/scrypt: Makefile Log message: Update HOMEPAGE from Jared Harper CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/03/29 14:44:44 Modified files: devel/p5-Devel-MAT: Makefile distinfo Log message: update p5-Devel-MAT to 0.51 CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/03/29 14:59:22 Modified files: devel/p5-Exporter-Tiny: Makefile distinfo Log message: update p5-Exporter-Tiny to 1.006001 CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/03/29 15:02:09 Modified files: devel/p5-Test2-Suite: Makefile distinfo Log message: update p5-Test2-Suite to 0.000150 CVSROOT: /cvs Module name: ports Changes by: op@cvs.openbsd.org 2023/03/29 16:08:55 Modified files: lang/clojure : Makefile distinfo Log message: update lang/clojure to 1.11.1.1262 CVSROOT: /cvs Module name: ports Changes by: thfr@cvs.openbsd.org 2023/03/29 16:24:05 Modified files: benchmarks/glmark2: Makefile distinfo benchmarks/glmark2/patches: patch-src_meson_build Log message: update to glmark2 version 2023.01 CVSROOT: /cvs Module name: ports Changes by: thfr@cvs.openbsd.org 2023/03/29 16:39:07 Modified files: devel/nuget : Makefile distinfo Log message: update to nuget version 6.3.1.1 CVSROOT: /cvs Module name: src Changes by: dtucker@cvs.openbsd.org 2023/03/29 18:49:37 Modified files: usr.bin/ssh : monitor_wrap.c Log message: Remove dead code from inside if block. The only way the if statement can be true is if both dup()s fail, and in that case the tmp2 can never be set. Coverity CID 291805, ok djm@ CVSROOT: /cvs Module name: ports Changes by: thfr@cvs.openbsd.org 2023/03/29 19:38:47 Modified files: lang/hashlink : Makefile distinfo Log message: update to hashlink 1.13; runtime tested with Dead Cells, Northgard, and Nuclear Blaze without issues CVSROOT: /cvs Module name: ports Changes by: thfr@cvs.openbsd.org 2023/03/29 20:20:07 Modified files: games/vkquake : Makefile distinfo Added files: games/vkquake/patches: patch-Quake_common_make Removed files: games/vkquake/patches: patch-Quake_Makefile Log message: update to vkQuake 1.30.1, now needs glslangValidator for build, therefore BDEP graphics/glslang. Changelog: https://github.com/Novum/vkQuake/releases CVSROOT: /cvs Module name: ports Changes by: thfr@cvs.openbsd.org 2023/03/29 20:44:09 Modified files: games/fheroes2 : Makefile distinfo games/fheroes2/patches: patch-script_demo_download_demo_version_sh games/fheroes2/pkg: PLIST Removed files: games/fheroes2/patches: patch-script_homm2_extract_homm2_resources_sh Log message: update to fheroes2 1.0.2; no issues on brief testing. Changelog: https://github.com/ihhub/fheroes2/releases. Note 1.0.1 added scaled resolution support. CVSROOT: /cvs Module name: ports Changes by: thfr@cvs.openbsd.org 2023/03/29 20:50:06 Modified files: www/ipynb-py-convert: Makefile Log message: drop me from MAINTAINER; I haven't had use for this in quite a while CVSROOT: /cvs Module name: ports Changes by: thfr@cvs.openbsd.org 2023/03/29 21:04:05 Modified files: comms/libhidapi: Makefile Log message: drop me from MAINTAINER; I'm not using this library anymore CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2023/03/29 21:05:01 Modified files: usr.bin/ssh : sshsig.c Log message: return SSH_ERR_KEY_NOT_FOUND if the allowed_signers file is empty, not SSH_ERR_INTERNAL_ERROR. Also remove some dead code spotted by Coverity; with/ok dtucker@ CVSROOT: /cvs Module name: ports Changes by: bket@cvs.openbsd.org 2023/03/29 21:07:18 Modified files: archivers/libdeflate: Makefile distinfo Log message: Update to libdeflate-1.18 Changes: https://github.com/ebiggers/libdeflate/blob/v1.18/NEWS.md CVSROOT: /cvs Module name: ports Changes by: bket@cvs.openbsd.org 2023/03/29 21:07:57 Modified files: sysutils/rclone: Makefile distinfo Log message: Update to rclone-1.62.2 Changes: https://github.com/rclone/rclone/releases/tag/v1.62.1 https://github.com/rclone/rclone/releases/tag/v1.62.2 CVSROOT: /cvs Module name: ports Changes by: bket@cvs.openbsd.org 2023/03/29 21:08:44 Modified files: security/vaultwarden: Makefile crates.inc distinfo Removed files: security/vaultwarden/files: config.vendor Log message: Update to vaultwarden-1.28.0 Changes: https://github.com/dani-garcia/vaultwarden/releases/tag/1.28.0 Update license marker because project has been relicensed to AGPLv3. Drop use of vendored multer-rs as this has been fixed by upstream. OK aisha@ CVSROOT: /cvs Module name: ports Changes by: bket@cvs.openbsd.org 2023/03/29 21:09:11 Modified files: www/vaultwarden-web: Makefile distinfo www/vaultwarden-web/pkg: PLIST Log message: Update to vaultwarden-web-2023.3.0b Changes: https://github.com/dani-garcia/bw_web_builds/releases OK @aisha CVSROOT: /cvs Module name: ports Changes by: bket@cvs.openbsd.org 2023/03/29 21:09:54 Modified files: sysutils/borgbackup/1.2: Makefile distinfo sysutils/borgbackup/1.2/pkg: PLIST Log message: Update to borgbackup-1.2.4 Changes: https://github.com/borgbackup/borg/blob/1.2.4/docs/changes.rst#version-124-2023-03-24 CVSROOT: /cvs Module name: ports Changes by: bket@cvs.openbsd.org 2023/03/29 21:19:11 Modified files: devel/p5-Conf-Libconfig: Makefile Log message: Drop maintainershp of devel/p5-Conf-Libconfig CVSROOT: /cvs Module name: ports Changes by: bket@cvs.openbsd.org 2023/03/29 21:19:52 Modified files: sysutils/rustic: Makefile crates.inc distinfo Log message: Update to rustic-0.5.0 Changes: https://github.com/rustic-rs/rustic/releases/tag/v0.5.0 Cherrypicked 2 fixes from HEAD: - OpenBSD does not support extended file attributes -> https://github.com/rustic-rs/rustic/pull/532 - Fix shell completions -> https://github.com/rustic-rs/rustic/pull/536 CVSROOT: /cvs Module name: ports Changes by: bket@cvs.openbsd.org 2023/03/29 21:20:24 Modified files: devel/git-cola : Makefile distinfo devel/git-cola/patches: patch-cola_app_py devel/git-cola/pkg: PLIST Removed files: devel/git-cola/patches: patch-pytest_ini Log message: Update to git-cola-4.2.0 Changes: https://github.com/git-cola/git-cola/blob/v4.2.0/CHANGES.rst CVSROOT: /cvs Module name: ports Changes by: bket@cvs.openbsd.org 2023/03/29 21:22:31 Modified files: net/unison : Makefile distinfo Log message: Update to unison-2.53.2 Changes: https://github.com/bcpierce00/unison/releases/tag/v2.53.1 https://github.com/bcpierce00/unison/releases/tag/v2.53.2 CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/03/29 23:51:05 Log message: Import security/c2sp-testvectors for LibreSSL regress testing, ok sthen These test vectors are part of the community cryptography specification project and are an experiment in test vector collection and reuse. https://github.com/C2SP/CCTV Status: Vendor Tag: tb Release Tags: tb_20230330 N ports/security/c2sp-testvectors/Makefile N ports/security/c2sp-testvectors/distinfo N ports/security/c2sp-testvectors/pkg/DESCR N ports/security/c2sp-testvectors/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/03/29 23:51:43 Modified files: security : Makefile Log message: +c2sp-testvectors CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/03/29 23:54:48 Modified files: security/openssl-ruby-tests: Makefile distinfo Log message: Update to openssl-ruby-tests 20230324 CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/03/29 23:57:22 Modified files: security/rust-openssl-tests: Makefile crates.inc distinfo security/rust-openssl-tests/patches: patch-openssl-sys_build_main_rs security/rust-openssl-tests/pkg: PLIST Log message: Update to rust-openssl-tests 20230330 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/03/30 00:01:20 Modified files: mail/mozilla-thunderbird: Makefile distinfo mail/thunderbird-i18n: Makefile.inc distinfo Log message: mail/mozilla-thunderbird: update to 102.9.1. see https://www.thunderbird.net/en-US/thunderbird/102.9.1/releasenotes/ fixes https://www.mozilla.org/en-US/security/advisories/mfsa2023-12/ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/03/30 00:02:16 Modified files: mail/mozilla-thunderbird: Tag: OPENBSD_7_2 Makefile distinfo Log message: mail/mozilla-thunderbird: MFC update to 102.9.1. see https://www.thunderbird.net/en-US/thunderbird/102.9.1/releasenotes/ fixes https://www.mozilla.org/en-US/security/advisories/mfsa2023-12/ CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/03/30 00:07:52 Modified files: net/ngtcp2 : Makefile distinfo Log message: Update to ngtcp2 0.14.0 Major bump due to symbol addition and removal. Lots of changes: https://github.com/ngtcp2/ngtcp2/releases/tag/v0.14.0 CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/03/30 00:09:01 Modified files: www/nghttp3 : Makefile distinfo Log message: Update to nghttp3 0.10.0 https://github.com/ngtcp2/nghttp3/releases/tag/v0.10.0 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/03/30 00:09:21 Modified files: x11/xfce4/xfce4-notes: Makefile distinfo x11/xfce4/xfce4-notes/pkg: PLIST Log message: x11/xfce4/xfce4-notes: update to 1.10.0 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/03/30 00:10:47 Modified files: x11/xfce4/libxfce4ui: Makefile distinfo Log message: x11/xfce4/libxfce4ui: update to 4.18.3 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/03/30 00:11:13 Modified files: x11/xfce4/xfce4-session: Makefile distinfo Log message: x11/xfce4/xfce4-session: update to 4.18.2 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/03/30 00:11:39 Modified files: x11/xfce4/xfce4-panel: Makefile distinfo Log message: x11/xfce4/xfce4-panel: update to 4.18.3 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/03/30 00:13:06 Modified files: x11/xfce4/xfce4-screensaver: Makefile distinfo x11/xfce4/xfce4-screensaver/pkg: PLIST Log message: x11/xfce4/xfce4-screensaver: update to 4.18.1. see https://mail.xfce.org/pipermail/xfce-announce/2023-March/001252.html and https://mail.xfce.org/pipermail/xfce-announce/2023-March/001256.html CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/03/30 00:13:43 Modified files: x11/xfce4/garcon: Makefile distinfo Log message: x11/xfce4/garcon: update to 4.18.1 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/03/30 00:14:08 Modified files: x11/xfce4/xfce4-pulseaudio: Makefile distinfo Log message: x11/xfce4/xfce4-pulseaudio: update to 0.4.6 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/03/30 00:15:17 Modified files: mail/meli : Makefile distinfo Removed files: mail/meli/patches: patch-melib_src_backends_notmuch_rs patch-src_conf_composing_rs patch-src_conf_rs Log message: mail/meli: update to a newer git commit all patches merged upstream CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/03/30 00:20:26 Modified files: geo/geos : Makefile distinfo geo/geos/pkg : PLIST Log message: geo/geos: update to 3.11.2. see https://lists.osgeo.org/pipermail/geos-devel/2023-March/010877.html CVSROOT: /cvs Module name: src Changes by: dtucker@cvs.openbsd.org 2023/03/30 01:19:50 Modified files: usr.bin/ssh : ssh.c Log message: Ignore return value from muxclient(). It normally loops without returning, but it if returns on failure we immediately exit. Coverity CID 405050. CVSROOT: /cvs Module name: src Changes by: op@cvs.openbsd.org 2023/03/30 01:26:15 Modified files: usr.bin/mg : fileio.c Log message: strncpy -> strlcpy to properly NUL-terminate the copy of the path otherwise paths longer than NFILEN (1024) given with -u won't NUL-terminate `file'. CVSROOT: /cvs Module name: ports Changes by: otto@cvs.openbsd.org 2023/03/30 01:28:57 Modified files: net/powerdns_recursor: Makefile distinfo Log message: Update to PowerDNS Recursor 4.8.4 Low severity security release, see https://blog.powerdns.com/2023/03/29/security-advisory-2023-02-for-powerdns-recursor-up-to-and-including-4-6-5-4-7-4-and-4-8-3/ CVSROOT: /cvs Module name: ports Changes by: martin@cvs.openbsd.org 2023/03/30 01:42:42 Modified files: net/py-tinytuya: Makefile distinfo Log message: Update py-tinytuya to 1.12.2. CVSROOT: /cvs Module name: src Changes by: op@cvs.openbsd.org 2023/03/30 02:07:07 Modified files: usr.bin/mg : main.c ttykbd.c Log message: trailing whitespaces CVSROOT: /cvs Module name: src Changes by: kevlo@cvs.openbsd.org 2023/03/30 03:24:22 Modified files: sys/dev/mii : txphy.c Log message: Update comment: RTL8139 -> TNETE2101 ok mpi@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:20:45 Modified files: devel/py-tz : Makefile distinfo Log message: update to py3-tz-2023.2 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:20:48 Modified files: lang/php/8.1 : Makefile distinfo Log message: update to php-8.1.17 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:20:51 Modified files: lang/php/8.2 : Makefile distinfo Log message: update to php-8.2.4 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:20:54 Modified files: net/scamper : Makefile distinfo Log message: update to scamper-20230323 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:20:57 Modified files: sysutils/borgmatic: Makefile distinfo sysutils/borgmatic/pkg: PLIST Log message: update to borgmatic-1.7.10 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:21:05 Modified files: net/icinga/icinga-php-library: Makefile distinfo net/icinga/icinga-php-library/pkg: PLIST Log message: update to icinga-php-library-0.11.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:21:09 Modified files: sysutils/py-filelock: Makefile distinfo Log message: update to py3-filelock-3.10.7 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:21:13 Modified files: sysutils/py-platformdirs: Makefile distinfo Log message: update to py3-platformdirs-3.2.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:21:18 Modified files: net/eduvpn/vpn-user-portal: Makefile distinfo net/eduvpn/vpn-user-portal/pkg: PLIST Log message: update to vpn-user-portal-3.3.3 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:21:22 Modified files: textproc/py-tomlkit: Makefile distinfo Log message: update to py3-tomlkit-0.11.7 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:21:26 Modified files: textproc/py-jellyfish: Makefile distinfo Log message: update to py3-jellyfish-0.10.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:21:30 Modified files: textproc/py-jaraco-text: Makefile distinfo Log message: update to py3-jaraco.text-3.11.1 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:21:34 Modified files: textproc/py-markdown: Makefile distinfo Log message: update to py3-markdown-3.4.3 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:21:38 Modified files: devel/py-parameterized: Makefile distinfo devel/py-parameterized/pkg: PLIST Log message: update to py3-parameterized-0.9.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:21:41 Modified files: devel/py-pathspec: Makefile distinfo Log message: update to py3-pathspec-0.11.1 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:21:45 Modified files: devel/py-argh : Makefile distinfo devel/py-argh/pkg: PLIST Log message: update to py3-argh-0.28.1 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:21:49 Modified files: devel/py-cachetools: Makefile distinfo Log message: update to py3-cachetools-5.3.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:21:54 Modified files: textproc/solr : Makefile distinfo textproc/solr/patches: patch-bin_solr textproc/solr/pkg: PLIST Log message: update to solr-9.2.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:21:58 Modified files: security/py-paramiko: Makefile distinfo security/py-paramiko/patches: patch-tests_test_client_py security/py-paramiko/pkg: PLIST Log message: update to py3-paramiko-3.1.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:22:02 Modified files: databases/py-pymysql: Makefile distinfo Log message: update to py3-pymysql-1.0.3 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:22:05 Modified files: databases/py-influxdb_client: Makefile distinfo Log message: update to py3-influxdb_client-1.36.1 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:22:08 Modified files: devel/py-frozendict: Makefile distinfo devel/py-frozendict/pkg: PLIST Log message: update to py3-frozendict-2.3.6 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:22:11 Modified files: devel/py-installer: Makefile distinfo Log message: update to py3-installer-0.7.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:22:14 Modified files: devel/py-dispatcher: Makefile distinfo Log message: update to py3-dispatcher-2.0.7 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:22:17 Modified files: print/ocrmypdf : Makefile distinfo Log message: update to ocrmypdf-14.0.4 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:22:20 Modified files: textproc/py-dateparser: Makefile distinfo Log message: update to py3-dateparser-1.1.8 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:22:23 Modified files: benchmarks/hyperfine: Makefile crates.inc distinfo Log message: update to hyperfine-1.16.1 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:22:34 Modified files: textproc/py-black: Makefile distinfo textproc/py-black/pkg: PLIST Log message: update to py3-black-23.3.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:22:38 Modified files: textproc/py-dict2xml: Makefile distinfo textproc/py-dict2xml/pkg: PLIST Log message: update to py3-dict2xml-1.7.3 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:22:42 Modified files: databases/py-peewee: Makefile distinfo databases/py-peewee/pkg: PLIST Log message: update to py3-peewee-3.16.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:24:33 Modified files: net/isc-bind : Makefile distinfo net/isc-bind/patches: patch-bin_dig_dig_c patch-lib_isc_netmgr_netmgr_c net/isc-bind/pkg: PLIST Log message: update to isc-bind-9.18.13 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:25:03 Modified files: net/isc-bind : Tag: OPENBSD_7_2 Makefile distinfo net/isc-bind/patches: Tag: OPENBSD_7_2 patch-bin_dig_dig_c patch-lib_isc_netmgr_netmgr_c net/isc-bind/pkg: Tag: OPENBSD_7_2 PLIST Log message: update to isc-bind-9.18.13 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:26:53 Modified files: lang/php/8.1 : Tag: OPENBSD_7_2 Makefile distinfo Log message: update to php-8.1.17 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:33:39 Modified files: mail/rspamd : Makefile distinfo mail/rspamd/patches: patch-CMakeLists_txt patch-cmake_Toolset_cmake mail/rspamd/pkg: PLIST Removed files: mail/rspamd/patches: patch-src_libutil_cxx_file_util_cxx Log message: update to rspamd-3.5 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:33:48 Modified files: textproc/hyperscan: Makefile distinfo textproc/hyperscan/patches: patch-CMakeLists_txt patch-examples_patbench_cc patch-examples_pcapscan_cc Log message: update to hyperscan-5.4.1-ssse3 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:33:58 Modified files: mail/mutt : Makefile distinfo Log message: update to mutt-2.2.10 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:38:14 Modified files: mail/neomutt : Makefile distinfo mail/neomutt/patches: patch-conn_sasl_h patch-main_c mail/neomutt/pkg: PLIST Added files: mail/neomutt/patches: patch-color_ansi_c patch-color_command_c patch-pager_display_c Log message: update to neomutt-20230322 patch to cope with our pre-2013 version of curses CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:40:30 Modified files: lang/lucee : Makefile distinfo Log message: update to lucee-5.3.10.120 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:41:21 Modified files: x11/icewm : Makefile distinfo x11/icewm/patches: patch-src_icesh_cc Log message: update to icewm-3.3.2 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:45:14 Modified files: audio/py-audio : Makefile Added files: audio/py-audio/patches: patch-pyproject_toml Log message: py-audio: patch away unnecessary version spec for setuptools CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:47:25 Modified files: www/py-jwt : Makefile www/py-jwt/pkg : PLIST Log message: switch MODPY_SETUPTOOLS to MODPY_PYBUILD, missed in previous bulk conversion CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 04:48:45 Modified files: sysutils/glances: Makefile distinfo Log message: update to glances-3.3.1.1 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 05:10:46 Modified files: net/py-tld : Makefile distinfo net/py-tld/pkg : PLIST Removed files: net/py-tld/patches: patch-src_tld_tests_test_commands_py Log message: update to py3-tld-0.13, ok rpointel@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 05:22:50 Modified files: devel/py-tz : Makefile distinfo Log message: update to py3-tz-2023.3 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 05:23:04 Modified files: devel/py-tz : Tag: OPENBSD_7_2 Makefile distinfo devel/py-tz/pkg: Tag: OPENBSD_7_2 PLIST Log message: update to py3-tz-2023.3 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 05:24:18 Modified files: astro/py-astropy: Makefile distinfo Log message: update to py3-astropy-5.2.2 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 05:26:14 Modified files: devel/py-virtualenv: Makefile distinfo Log message: update to py3-virtualenv-20.21.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 05:41:13 Modified files: net/net-snmp : Makefile net/net-snmp/pkg: DESCR-main Log message: net-snmp: add a quick comment about extra deps needed for the checkbandwidth script CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/03/30 05:49:06 Modified files: devel/abseil-cpp: Makefile distinfo Log message: update to abseil-cpp 20230125.2 just one "Fix the implementation of OnlyLiteralZero (#1420)" commit: https://github.com/abseil/abseil-cpp/compare/20230125.1...20230125.2 No WANTLIB or PLIST change. CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/03/30 06:11:18 Modified files: usr.sbin/bgpd : rde.h rde_prefix.c Log message: Put the size of the pt_entry object into the struct itself. Increase the refcnt to a 32bit int and while there reorder the vpn specific structs a bit so the IPv4 and IPv6 types are more equal. OK tb@ CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2023/03/30 06:28:10 Modified files: x11/lablgtk2/patches: patch-src_Makefile Log message: x11/lablgtk2: fix build with gmake 4.4 gmake 4.4 now recognizes the generated sourceView2Enums.ml file as an intermediate file and removes it after use. Other *Enums.ml files do not share this fate because they appear as an explicit dependency. Fix a simple typo that prevented the same thing for sourceView2Enums.ml. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2023/03/30 06:30:51 Modified files: devel/gmake : Makefile distinfo devel/gmake/patches: patch-doc_make_1 devel/gmake/pkg: PLIST Removed files: devel/gmake/patches: patch-Makefile_in patch-src_makeint_h patch-tests_scripts_features_archives Log message: devel/gmake: update to to 4.4.1 Numerous changes, including backward-incompatibilities. See https://lists.gnu.org/archive/html/bug-make/2022-10/msg00247.html https://lists.gnu.org/archive/html/bug-make/2023-02/msg00127.html From Brad, with some minor tweaks CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2023/03/30 06:33:07 Modified files: graphics/netpbm: Makefile distinfo graphics/netpbm/patches: patch-lib_Makefile graphics/netpbm/pkg: PLIST Log message: graphics/netpbm: update to 11.01.01 Add pamrestack, pamshuffle, pamtoqoi, qoitopam, pamcat. Remove Floyd-Steinberg dithering functions (ppm_fs_*) from libnetpbm. Numerous bug fixes. "No significance to new major number; just ran out of 2-digit minor numbers." CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2023/03/30 06:34:29 Modified files: archivers/xz : Makefile distinfo archivers/xz/pkg: PLIST Log message: archivers/xz: update to 5.4.2 HTML documentation for the liblzma API header files is now included. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2023/03/30 06:35:39 Modified files: audio/mpg123 : Makefile distinfo Log message: audio/mpg123: update to 1.31.3 CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2023/03/30 06:36:46 Modified files: sysutils/ggrep : Makefile distinfo Log message: sysutils/ggrep: maintenance update to 3.10 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 06:42:11 Modified files: lang/php : php.port.mk lang/php/8.0 : Makefile lang/php/8.0/pkg: PLIST-main lang/php/8.1 : Makefile lang/php/8.1/pkg: PLIST-main Log message: move php and phar symlinks from php-8.0 to php-8.1 (should have been done with the default version switch) this means no symlinks are installed for sparc64 (which doesn't have php-8.1) but it gets too complex with @conflicts to handle that better CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/03/30 07:25:23 Modified files: usr.sbin/bgpd : rde_prefix.c Log message: Extra space in struct field definitions. NFC CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/30 08:21:11 Modified files: lib/libcrypto/bn: bn_exp.c Log message: Rework BN_exp() a bit This mostly only cleans up the mess that it was - which doesn't stand out because of the horror that lurks in the rest of this file. It avoids copying the partial calculation out on error and does away with some other weirdness. with/ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/30 08:23:50 Modified files: lib/libcrypto/asn1: bio_ndef.c Log message: bio_ndef: add an empty line before return CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 08:25:39 Modified files: sysutils/checkbashisms: Makefile distinfo Removed files: sysutils/checkbashisms/files: checkbashisms.1 sysutils/checkbashisms/patches: patch-checkbashisms Log message: update to checkbashisms from Debian devscripts 2.23.3 CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/30 08:28:56 Modified files: lib/libcrypto/bn: bn_mul.c bn_sqr.c Log message: Call bn_copy() unconditionally in BN_mul() and BN_sqr() bn_copy() does the right thing if source and target are the same, so there is no need for an additional check. Requested by jsing CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 08:31:03 Modified files: sysutils/dmidecode: Makefile distinfo sysutils/dmidecode/patches: patch-util_c Log message: update to dmidecode-3.5 CVSROOT: /cvs Module name: ports Changes by: op@cvs.openbsd.org 2023/03/30 08:34:36 Modified files: archivers/zpaqfranz: Makefile distinfo Log message: update archivers/zpaqfranz to 57.5; diff from MAINTAINER tux0r, thanks! CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/03/30 08:38:26 Modified files: sbin/fdisk : part.c Log message: Remove needless memset() call, 'entries' variable and limit check in PRT_menuid_to_guid(). No functional change. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 08:41:05 Modified files: mail/fetchmail : Makefile distinfo mail/fetchmail/pkg: PLIST Removed files: mail/fetchmail/patches: patch-tls-aux_h Log message: update to fetchmail-6.4.37 CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/03/30 08:47:25 Modified files: usr.sbin/bgpd : util.c Log message: Refactor extract_prefix() to first do the length checks and only then copy the data out. OK tb@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 08:54:58 Modified files: security/gopass: Makefile distinfo modules.inc security/gopass/patches: patch-main_go Log message: update to gopass-1.15.4 CVSROOT: /cvs Module name: ports Changes by: fcambus@cvs.openbsd.org 2023/03/30 08:57:19 Modified files: converters/bdf2psf: Makefile distinfo Log message: Update bdf2psf to 1.218. CVSROOT: /cvs Module name: ports Changes by: fcambus@cvs.openbsd.org 2023/03/30 08:58:23 Modified files: converters/bdf2sfd: Makefile distinfo Log message: Update bdf2sfd to 1.1.8. CVSROOT: /cvs Module name: ports Changes by: fcambus@cvs.openbsd.org 2023/03/30 08:59:36 Modified files: audio/libopenmpt: Makefile distinfo Log message: Update libopenmpt to 0.6.9. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 09:01:08 Modified files: graphics/jpegoptim: Makefile distinfo Log message: update to jpegoptim-1.5.3 CVSROOT: /cvs Module name: ports Changes by: fcambus@cvs.openbsd.org 2023/03/30 09:06:46 Modified files: graphics/ansilove: Makefile distinfo Log message: Update ansilove to 4.1.7. CVSROOT: /cvs Module name: ports Changes by: martin@cvs.openbsd.org 2023/03/30 09:07:01 Modified files: math/py-bottleneck: Makefile distinfo Log message: Update py-bottleneck to 1.3.7. CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/03/30 09:09:01 Modified files: sys/arch/arm64/arm64: machdep.c Log message: Map device tree read/write to unbreak root on softraid Since r1.76 "Get rid of pmap_map_early()" the FDT was mapped read-only, but CRYPTO softraid code writes it to zero out the key. Found and tested by me; explanation and fix from kettenis. OK kettenis CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 09:09:40 Modified files: net/neon : Makefile distinfo net/neon/pkg : PLIST Log message: update to neon-0.32.5 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 09:09:42 Modified files: security/pcsc-tools: Makefile distinfo security/pcsc-tools/patches: patch-ATR_analysis Log message: update to pcsc-tools-1.6.2 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 09:11:47 Modified files: security/pcsc-lite: Makefile distinfo security/pcsc-lite/patches: patch-src_debuglog_c Log message: update to pcsc-lite-1.9.9 CVSROOT: /cvs Module name: ports Changes by: fcambus@cvs.openbsd.org 2023/03/30 09:12:05 Modified files: www/logswan : Makefile distinfo Log message: Update logswan to 2.1.14. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 09:15:11 Modified files: security/gpgme : Makefile distinfo security/gpgme/patches: patch-configure patch-lang_cpp_tests_Makefile_in patch-lang_qt_Makefile_in patch-lang_qt_tests_Makefile_in security/gpgme/pkg: PLIST-qt Log message: update to gpgme-1.19.0 CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/03/30 09:29:15 Modified files: usr.sbin/rpki-client: extern.h output-ometric.c repo.c Log message: Add the protocol used to sync the repository to the open-metric output. OK tb@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/03/30 09:39:16 Modified files: geo/pgrouting : Makefile distinfo geo/pgrouting/pkg: PLIST Log message: geo/pgrouting: update to 3.5.0. see https://docs.pgrouting.org/latest/en/release_notes.html#pgrouting-3-5-0-release-notes while here remove the BROKEN-i386 marker, it builds fine with clang 13. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2023/03/30 09:51:09 Modified files: lib/libcrypto/ecdsa: ecs_ossl.c Log message: i2d_ECDSA_SIG() may return a negative value in case of error. Handle this in ossl_ecdsa_sign() and propagate the return code. OK jsing@ tb@ CVSROOT: /cvs Module name: src Changes by: op@cvs.openbsd.org 2023/03/30 10:00:47 Modified files: bin/csh : csh.1 Log message: adjust markup of one of the builtin kill usage The Op on its own line becomes part of the item body instead of the list item itself. OK millert@ CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2023/03/30 10:16:32 Modified files: bin/csh : csh.1 Log message: escape "An" in a %T call, so groff does not flag it as an error; CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2023/03/30 11:20:53 Modified files: sbin/iked : crypto.c Log message: i2d_ECDSA_SIG() may return a negative value in case of error. Do no use this as length in iked(8) _dsa_verify_prepare(). OK tobhe@ tb@ CVSROOT: /cvs Module name: ports Changes by: pvk@cvs.openbsd.org 2023/03/30 11:31:52 Modified files: www/gitea : Makefile distinfo www/gitea/patches: patch-custom_conf_app_example_ini www/gitea/pkg : PLIST Log message: Update gitea 1.18.5 - > 1.19.0 Changelog: https://github.com/go-gitea/gitea/releases/tag/v1.19.0 CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/03/30 12:12:51 Modified files: devel/tl-expected: distinfo Log message: fix distinfo (thanks naddy) CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/03/30 12:15:08 Modified files: devel/tl-expected: Makefile Log message: add missing catch2 dep CVSROOT: /cvs Module name: src Changes by: op@cvs.openbsd.org 2023/03/30 13:00:02 Modified files: usr.bin/mg : def.h extend.c fileio.c main.c ttykbd.c Log message: don't access(conffile) This removes a few access(2) calls in the configuration file handling. startupfile() now opens and return the file and to avoid surprises it also uses a caller-provided buffer to store the filename. This also removes the extra adjustpath() that load() did: it has been moved to evalfile() only. with help, fixes and ok tb@ CVSROOT: /cvs Module name: src Changes by: op@cvs.openbsd.org 2023/03/30 13:01:25 Modified files: usr.bin/mg : main.c Log message: tabify two lines CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/03/30 14:03:32 Modified files: sys/dev/fdt : dwpcie.c Log message: Attach Baikal-M PCIe https://github.com/Elpitech/baikal-m-linux-kernel/search?q=bm1000-pcie Tested on ET-101-MB Initial diff from Slava Voronzoff Feedback OK kettenis patrick CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/03/30 14:07:49 Modified files: sys/dev/fdt : dwpcie.c Log message: keep match strings sorted CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/03/30 14:08:56 Modified files: textproc/p5-Pod-Parser/patches: patch-t_pod_find_t Log message: Port patches create .orig.port files now. Ignore these in test to make it pass. CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/03/30 16:53:40 Modified files: sbin/fdisk : part.c Log message: Use 'char * const' instead of #define for repeated GUID strings. Consistently use strcasecmp() when comparing GUID's, allowing use of simple 'char *' for gt_guid. No intentional functional change. CVSROOT: /cvs Module name: src Changes by: op@cvs.openbsd.org 2023/03/30 16:56:47 Modified files: usr.bin/mg : extend.c Log message: drop unnecessary copy of fname; ok tb@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 17:09:59 Added files: databases/web2ldap/patches: patch-setup_py Log message: fix bad version spec in python_requires, newer setuptools cares CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 17:23:25 Modified files: x11/nagstamon : Makefile x11/nagstamon/patches: patch-setup_py x11/nagstamon/pkg: PLIST Log message: fix bogus version string CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/30 17:24:52 Modified files: devel/py-setuptools: Makefile distinfo devel/py-setuptools/pkg: PLIST Log message: update to py3-setuptools-67.6.1, ok kmos@ CVSROOT: /cvs Module name: src Changes by: dtucker@cvs.openbsd.org 2023/03/30 18:44:29 Modified files: usr.bin/ssh : monitor_wrap.c Log message: Check fd against >=0 instead of >0 in error path. The dup could in theory return fd 0 although currently it doesn't in practice. From Dmitry Belyavskiy vi github PR#238. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 19:30:52 Modified files: sys/dev/pci/drm/amd/display/dc/dcn32: dcn32_hwseq.c Log message: drm/amd/display: Include virtual signal to set k1 and k2 values From Eric Bernstein 4a36da161b7a467c884e00219bb62b645bbe74f1 in linux-6.1.y/6.1.22 368307cef69ccd9bf5511f25e58e3a103be169fb in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 19:32:38 Modified files: sys/dev/pci/drm/amd/display/dc/dcn32: dcn32_hwseq.c Log message: drm/amd/display: fix k1 k2 divider programming for phantom streams From Aurabindo Pillai 0ac86f7dda2b1f895304919ee9035c170a6af419 in linux-6.1.y/6.1.22 3b214bb7185d8284d7d4c53e15127f69a375abf6 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 19:34:21 Modified files: sys/dev/pci/drm/amd/display/dc/dcn32: dcn32_hwseq.c Log message: drm/amd/display: Remove OTG DIV register write for Virtual signals. From Saaem Rizvi 75eb69023ba30076dba2df6a3e0f9f51095a237b in linux-6.1.y/6.1.22 709671ffb15dcd1b4f6afe2a9d8c67c7c4ead4a1 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 19:36:11 Modified files: sys/dev/pci/drm/amd/display/dc/core: dc_link.c Log message: drm/amd/display: Fix DP MST sinks removal issue From Cruise Hung ee9caccc5e5cc1092baf6fb645525bba668b01c1 in linux-6.1.y/6.1.22 cbd6c1b17d3b42b7935526a86ad5f66838767d03 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 19:38:10 Modified files: sys/dev/pci/drm/i915/display: intel_fbdev.c Log message: drm/i915: Print return value on error From Nirmoy Das b6375c5ecd8c790e381ee3f9baeda8c9e5da4a45 in linux-6.1.y/6.1.22 20c68127e8e9d7899001c47465d0b79581f5fdc1 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 19:39:50 Modified files: sys/dev/pci/drm/i915/display: intel_fbdev.c Log message: drm/i915/fbdev: lock the fbdev obj before vma pin From Tejas Upadhyay 9595d71b2a274fe365240b53ce5d03c071c3e6e0 in linux-6.1.y/6.1.22 ed00eba03474adbf525ff03d69705d8c78b76456 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 19:42:14 Modified files: sys/dev/pci/drm/i915: i915_gpu_error.h sys/dev/pci/drm/i915/gt/uc: intel_guc_capture.c Log message: drm/i915/guc: Rename GuC register state capture node to be more obvious From John Harrison d2b9357d3da3f8054a47eef04c8ef361608b243e in linux-6.1.y/6.1.22 583ebae783b8241a30581c084ad6226051b594c5 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 19:44:03 Modified files: sys/dev/pci/drm/i915/gt/uc: intel_guc_capture.c Log message: drm/i915/guc: Fix missing ecodes From John Harrison be8c6ad6b16e6181510e35c53928381f0f39640a in linux-6.1.y/6.1.22 8df23e4c4f72f4e201c28e6fb0a67e2dbf30628a in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 19:47:06 Modified files: sys/dev/pci/drm/i915/gt: intel_gt.c Log message: drm/i915/gt: perform uc late init after probe error injection From Andrzej Hajda 6e516595e88670baf275701893fd43e0a454f7d0 in linux-6.1.y/6.1.22 150784f9285e656373cf3953ef4a7663f1e1a0f2 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 19:49:17 Modified files: sys/dev/pci/drm/amd/display/dc/dcn32: dcn32_resource.c Log message: drm/amd/display: Set dcn32 caps.seamless_odm From Hersen Wu 612cf2495ec6cf5834e8b4a70f599190c35cf8c8 in linux-6.1.y/6.1.22 f9537b1fa7fb51c2162bc15ce469cbbf1ca0fbfe in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 19:51:13 Modified files: sys/dev/pci/drm/amd/display/dc/clk_mgr/dcn301: vg_clk_mgr.c Log message: drm/amd/display: Update clock table to include highest clock setting From Swapnil Patel b66804fc7e21587431360af1dbcc1d9145237b7a in linux-6.1.y/6.1.22 2d99a7ec25cf456cd3680eb314d6454138e5aa64 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 19:53:07 Modified files: sys/dev/pci/drm/amd/amdgpu: amdgpu_object.c Log message: drm/amdgpu: Fix call trace warning and hang when removing amdgpu device From lyndonli f06b902511ea05526f405ee64da54a8313d91831 in linux-6.1.y/6.1.22 93bb18d2a873d2fa9625c8ea927723660a868b95 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 19:54:30 Modified files: sys/dev/pci/drm/amd/amdgpu: nbio_v7_2.c Log message: drm/amd: Fix initialization mistake for NBIO 7.3.0 From Mario Limonciello a0e39cdddc155926fc3c0395636b7c80e55e66a1 in linux-6.1.y/6.1.22 1717cc5f2962a4652c76ed3858b499ccae6c277c in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 19:56:10 Modified files: sys/dev/pci/drm/amd/display/dc/dcn32: dcn32_dccg.c Log message: drm/amd/display: fix wrong index used in dccg32_set_dpstreamclk From Hersen Wu c590fce42c2117693bd0ee6646b3fc16a8f842ae in linux-6.1.y/6.1.22 4c94e57c258cb7800aa5f3a9d9597d91291407a9 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 19:59:24 Modified files: sys/dev/pci/drm/amd/amdgpu: amdgpu.h amdgpu_device.c nv.c vi.c Log message: drm/amdgpu/nv: Apply ASPM quirk on Intel ADL + AMD Navi From Kai-Heng Feng ed6364fb7c407ca53447d8b0723a61d320bcbae9 in linux-6.1.y/6.1.22 2b072442f4962231a8516485012bb2d2551ef2fe in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 20:01:00 Modified files: sys/dev/pci/drm/i915: i915_active.c Log message: drm/i915/active: Fix missing debug object activation From Nirmoy Das c355945957ef5e9bb05e0554fe4a6f92b0fcaf36 in linux-6.1.y/6.1.22 e92eb246feb9019b0b137706c934b8891cdfe3c2 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 20:02:47 Modified files: sys/dev/pci/drm/i915/display: intel_display.c Log message: drm/i915: Preserve crtc_state->inherited during state clearing From Ville Syrjala 220da3bf1fc335ae25b181d6bedcfc63efef6ccc in linux-6.1.y/6.1.22 3a84f2c6c9558c554a90ec26ad25df92fc5e05b7 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 20:04:27 Modified files: sys/dev/pci/drm/amd/amdgpu: amdgpu_drv.c Log message: drm/amdgpu: skip ASIC reset for APUs when go to S4 From Tim Huang 9f7e1dd835ec834fb147a7725419497f0b0d83a7 in linux-6.1.y/6.1.22 b589626674de94d977e81c99bf7905872b991197 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 20:07:09 Modified files: sys/dev/pci/drm/amd/amdgpu: amdgpu.h amdgpu_acpi.c Log message: drm/amdgpu: reposition the gpu reset checking for reuse From Tim Huang 75e10d7fb97906ddb641c7b09773a91693570f63 in linux-6.1.y/6.1.22 aaee0ce460b954e08b6e630d7e54b2abb672feb8 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 20:09:05 Modified files: sys/dev/pci/drm/amd/amdkfd: kfd_crat.c Log message: drm/amdkfd: introduce dummy cache info for property asic From Prike Liang a5528973c676dad09a1af25cd49e4312238d1428 in linux-6.1.y/6.1.22 fd72e2cb2f9dd2734e8013b3e185a21f0d605d3e in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 20:12:21 Modified files: sys/dev/pci/drm/amd/amdkfd: kfd_crat.c kfd_crat.h kfd_topology.c kfd_topology.h Log message: drm/amdkfd: Fix the warning of array-index-out-of-bounds From Ma Jun 0ac954ec7f6c6dd6b7e94340599ba4b788d056d5 in linux-6.1.y/6.1.22 c0cc999f3c32e65a7c88fb323893ddf897b24488 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 20:14:03 Modified files: sys/dev/pci/drm/amd/amdkfd: kfd_crat.c kfd_device.c Log message: drm/amdkfd: add GC 11.0.4 KFD support From Yifan Zhang 132f1d39439142547d9d5e45d7744d375dd21fdc in linux-6.1.y/6.1.22 88c21c2b56aa21dd34290d43ada74033dc3bfe35 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/30 20:16:10 Modified files: sys/dev/pci/drm/amd/amdkfd: kfd_crat.c Log message: drm/amdkfd: Fix the memory overrun From Ma Jun 8c31b663edc1cc5eb5c82282ab6ca99c69d1d942 in linux-6.1.y/6.1.22 4cc16d64b6cdb179a26fb389cae9dce788e88f5d in mainline linux CVSROOT: /cvs Module name: src Changes by: kevlo@cvs.openbsd.org 2023/03/30 20:20:22 Modified files: share/man/man4 : igc.4 pci.4 Log message: Document i226. From Brad. CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2023/03/30 21:22:49 Modified files: usr.bin/ssh : sshkey.c Log message: remove unused variable; prompted by Coverity CID 291879 CVSROOT: /cvs Module name: src Changes by: jmatthew@cvs.openbsd.org 2023/03/30 21:38:26 Modified files: usr.sbin/ypldap: ldapclient.c ypldap.c Log message: Only send the used portion of struct idm_req in imsgs from the ldapclient process to the main process. This significantly reduces memory usage when updating larger directories. ok aisha@ CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2023/03/30 22:00:37 Modified files: usr.bin/ssh : sftp-common.c Log message: don't attempt to decode a ridiculous number of attributes; harmless because of bounds elsewhere, but better to be explicit CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2023/03/30 22:04:15 Modified files: usr.bin/ssh : clientloop.c Log message: remove redundant test CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2023/03/30 22:21:56 Modified files: usr.bin/ssh : ssh-keyscan.c Log message: don't print key if printing hostname failed; with/ok dtucker@ CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2023/03/30 22:22:27 Modified files: usr.bin/ssh : auth2-gss.c Log message: clamp max number of GSSAPI mechanisms to 2048; ok dtucker CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2023/03/30 22:23:02 Modified files: usr.bin/ssh : readconf.c Log message: don't leak arg2 on parse_pubkey_algos error path; ok dtucker@ CVSROOT: /cvs Module name: src Changes by: dtucker@cvs.openbsd.org 2023/03/30 22:42:29 Modified files: usr.bin/ssh : canohost.c Log message: Return immediately from get_sock_port if sock <0 so we don't call getsockname on a negative FD. From Coverity CID 291840, ok djm@ CVSROOT: /cvs Module name: src Changes by: dtucker@cvs.openbsd.org 2023/03/30 22:45:08 Modified files: usr.bin/ssh : scp.c sftp.c ssh-agent.c Log message: Explictly ignore return codes where we don't check them. From Dmitry Belyavskiy via github PR#238, ok djm@ CVSROOT: /cvs Module name: ports Changes by: martin@cvs.openbsd.org 2023/03/30 23:35:55 Modified files: devel/openmpi : Makefile distinfo Log message: Update openmpi to 4.1.5. CVSROOT: /cvs Module name: ports Changes by: otto@cvs.openbsd.org 2023/03/30 23:38:03 Modified files: net/dnsdist : Makefile distinfo net/dnsdist/patches: patch-configure_ac net/dnsdist/pkg: PLIST Log message: Update to dnsdist 1.8.0; ok sthen@ CVSROOT: /cvs Module name: src Changes by: dtucker@cvs.openbsd.org 2023/03/30 23:56:36 Modified files: usr.bin/ssh : scp.c Log message: Explicitly ignore return from waitpid here too. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/31 00:07:44 Modified files: regress/lib/libcrypto/bio: bio_asn1.c Log message: Add a regress for the recent BIO_new_NDEF() write after free This is a simple reproducer for a write after free that avoids all the mess with CMS, PKCS7 and SMIME. This now mostly allows ASAN to check that the memory handling in this marvellous function is correct. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/31 01:23:15 Modified files: textproc/py-dict2xml: Makefile Log message: unbreak build on a clean system; build backend changed from setuptools to hatchling in the last update. reported by aja@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/31 01:28:46 Modified files: sbin/isakmpd : dh.c Log message: Guard use of GROUP_EC2N with #ifndef OPENSSL_NO_EC2M This allows compiling isakmpd with a libcrypto that has binary field support removed. Leave the enum value itself unguarded on claudio's request. ok beck claudio jsing CVSROOT: /cvs Module name: src Changes by: kevlo@cvs.openbsd.org 2023/03/31 02:16:30 Modified files: sys/dev/pci : pcidevs Log message: Add "Beijing WangXun Technology" vendor and WX1860 series NICs. ok miod@ CVSROOT: /cvs Module name: src Changes by: kevlo@cvs.openbsd.org 2023/03/31 02:17:00 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: regen CVSROOT: /cvs Module name: src Changes by: kevlo@cvs.openbsd.org 2023/03/31 02:19:41 Modified files: sys/dev/pci : files.pci Added files: sys/dev/pci : if_ngbe.c if_ngbereg.h Log message: ngbe(4), a driver for Wangxun WX1860 series Gigabit Ethernet devices. Written based on the vendor driver for Linux. Thanks to WangXun for relicensing their vendor driver to ISC. Special thanks to miod@ for reviewing and providing valuable input. ok miod@ CVSROOT: /cvs Module name: src Changes by: kevlo@cvs.openbsd.org 2023/03/31 02:20:58 Modified files: share/man/man4 : Makefile pci.4 Added files: share/man/man4 : ngbe.4 Log message: Man page for ngbe(4). ok miod@ CVSROOT: /cvs Module name: src Changes by: kevlo@cvs.openbsd.org 2023/03/31 02:22:09 Modified files: sys/arch/amd64/conf: GENERIC Log message: Enable ngbe(4). ok miod@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/31 02:52:29 Modified files: sysutils/glances: Makefile distinfo Log message: oops, backout previous, glances 3.3.1+ has a new dependency spotted by Laurent Cheylus CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/31 03:26:53 Modified files: math/libqalculate: Makefile distinfo math/libqalculate/patches: patch-configure_ac Log message: update to libqalculate-4.6.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/31 03:41:56 Modified files: net/irssi : Makefile distinfo Log message: update to irssi-1.4.4 https://irssi.org/security/irssi_sa_2023_03.txt CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/31 03:42:07 Modified files: net/irssi-icb : Makefile Log message: bump for irssi update CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/31 03:49:49 Modified files: devel/py-pybind11: Makefile distinfo Log message: update to py3-pybind11-2.10.4 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/31 03:51:01 Modified files: devel/py-prompt_toolkit: Makefile distinfo devel/py-prompt_toolkit/pkg: PLIST Log message: update to py3-prompt_toolkit-3.0.38 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/31 03:55:10 Modified files: textproc/py-ini2toml: Makefile distinfo textproc/py-ini2toml/pkg: PLIST Log message: update to py3-ini2toml-0.12 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/31 03:55:11 Modified files: textproc/py-iniconfig: Makefile distinfo textproc/py-iniconfig/pkg: PLIST Log message: update to py3-iniconfig-2.0.0 CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/03/31 03:55:39 Modified files: usr.sbin/bgplgd: slowcgi.c Log message: When the slowcgi timeout fires but no process what yet started terminate the session with a HTTP 408 error. OK tb@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/31 04:02:20 Modified files: textproc/py-elementpath: Makefile distinfo textproc/py-elementpath/pkg: PLIST Log message: update to py3-elementpath-4.1.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/03/31 04:05:49 Modified files: textproc/py-pyphen: Makefile distinfo Removed files: textproc/py-pyphen/patches: patch-pyproject_toml Log message: update to py3-pyphen-0.14.0 CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/03/31 05:19:49 Modified files: net/ngtcp2 : Makefile distinfo Log message: Update to ngtcp2 0.14.1 This fixes a use of uninitialized in an example we don't package, so this only bumps the version. Fix the comment documenting the upstream library version while here. CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/03/31 05:25:47 Modified files: security/rust-openssl-tests: Makefile crates.inc distinfo security/rust-openssl-tests/pkg: PLIST Log message: Update to rust-openssl-tests 20230331 CVSROOT: /cvs Module name: ports Changes by: pvk@cvs.openbsd.org 2023/03/31 05:42:33 Removed files: www/gitea/patches: patch-go_syscalls Log message: Remove forgotten patch CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/03/31 06:07:55 Modified files: sys/dev/fdt : gpiokeys.c Log message: Flip label separators to fix previous -gpiokeys0 at mainbus0, "PWR Button" +gpiokeys0 at mainbus0: "PWR Button" OK patrick CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/03/31 06:35:24 Modified files: sys/kern : uipc_usrreq.c Log message: remove unused unp_lock ok kn@ mvs@ CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/03/31 07:11:41 Modified files: sbin/fdisk : cmd.c gpt.c part.c part.h Log message: Be more consistent in function naming. Functions taking or returning struct uuid's use 'uuid' in their names. Lengthen a pointlessly short line. No functional change. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/03/31 07:37:02 Modified files: sys/dev/mii : miidevs Log message: Add RTL8211F-VD, a new RTL8211F variant. ok jsg@, dlg@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/03/31 07:37:41 Modified files: sys/dev/mii : miidevs.h Log message: regen CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2023/03/31 07:45:13 Modified files: share/man/man4 : ngbe.4 Log message: remove some unneccessary words and whitespace; CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2023/03/31 07:48:34 Modified files: share/man/man4 : igc.4 udl.4 usb.4 wscons.4 Log message: remove the whitespace in weird " / " constructs; CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/03/31 08:41:08 Modified files: sbin/fdisk : part.c Log message: Oops. Missed eliminating unneeded double quotes in previous. CVSROOT: /cvs Module name: ports Changes by: thfr@cvs.openbsd.org 2023/03/31 10:49:45 Modified files: x11 : Makefile devel/quirks : Makefile devel/quirks/files: Quirks.pm Removed files: x11/compton : Makefile distinfo x11/compton/patches: patch-Makefile patch-src_c2_c patch-src_c2_h patch-src_common_h patch-src_compton_c patch-src_compton_h patch-src_opengl_c x11/compton/pkg: DESCR PLIST Log message: retire x11/compton, with obsolete_message to consider switching to x11/picom, the semi-official successor +1 from op@ with input from sthen@ CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2023/03/31 10:51:32 Modified files: build : mirrors.dat Log message: remove some anoncvs servers which are no more, with beck@ CVSROOT: /cvs Module name: www Changes by: sthen@cvs.openbsd.org 2023/03/31 10:51:40 Modified files: . : anoncvs.html Log message: sync CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/31 11:47:39 Modified files: lib/libcrypto/ts: ts_verify_ctx.c Log message: Inline only use of TS_VERIFY_CTX_init() Since TS_VERIFY_CTX is now opaque, the only thing TS_VERIFY_CTX_init() is good for outside the library is memory leaks. Inside the library it's also useless, since as a much more familiar name is memset(). It will soon be able to join all the other nonsense that should never have leaked out of this library. CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/03/31 12:09:50 Log message: import p5-Convert-NLS_DATE_FORMAT 0.06 from wen heping; OK sthen@ Comment: convert between Oracle NLS_DATE_FORMAT and strftime format Description: Convert Oracle's NLS_DATE_FORMAT string into a strptime format string, or the reverse. Status: Vendor Tag: bluhm Release Tags: bluhm_20230331 N ports/converters/p5-Convert-NLS_DATE_FORMAT/Makefile N ports/converters/p5-Convert-NLS_DATE_FORMAT/distinfo N ports/converters/p5-Convert-NLS_DATE_FORMAT/pkg/DESCR N ports/converters/p5-Convert-NLS_DATE_FORMAT/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/03/31 12:12:50 Modified files: converters : Makefile Log message: +p5-Convert-NLS_DATE_FORMAT CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/03/31 12:16:01 Log message: import p5-DateTime-Format-Oracle 0.06 from wen heping; OK sthen@ Comment: parse and format Oracle dates and timestamps Description: This module may be used to convert Oracle date and timestamp values into DateTime objects. It also can take a DateTime object and produce a date string matching the NLS_DATE_FORMAT. Status: Vendor Tag: bluhm Release Tags: bluhm_20230331 N ports/devel/p5-DateTime-Format-Oracle/Makefile N ports/devel/p5-DateTime-Format-Oracle/distinfo N ports/devel/p5-DateTime-Format-Oracle/pkg/DESCR N ports/devel/p5-DateTime-Format-Oracle/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/03/31 12:17:57 Modified files: devel : Makefile Log message: +p5-DateTime-Format-Oracle CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/03/31 12:37:14 Modified files: converters/p5-Convert-Color: Makefile distinfo Log message: update p5-Convert-Color to 0.16 CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/03/31 12:45:05 Modified files: libexec/ld.so/aarch64: ldasm.S Log message: Call entry point of the executable through register x17. This allows it to be a normal C function that starts with "bti c" when BTI contro flow integretry enforcement is in place. Add "bti c" to _dl_bind_start(). Remove unused _rtld_tlsdesc() function to avoid having to add "bti c" to it. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/03/31 12:46:24 Modified files: lib/csu/aarch64: md_init.h Log message: Add "bti c" where needed for BTI control flow integrety checks. ok deraadt@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/03/31 12:49:43 Modified files: lib/libc/arch/aarch64: Makefile.inc Log message: Since all arm64 assembly code in libc uses the ENTRY* macros from they are already get the necessary "bti c" instructions. Passi the -mmark-bti-property option to mark the corresponding object files as having BTI support. ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/03/31 12:55:45 Modified files: devel/p5-YAML-Tiny: Makefile distinfo Log message: update p5-YAML-Tiny to 1.74 CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/03/31 13:12:32 Modified files: sbin/fdisk : part.c Log message: Refactor partition type menu code, disentangling mbr and gpt partition types from menu building and display. Some GPT partition names change to match their MBR bretheren. No intentional functional change. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/31 13:39:15 Modified files: lib/libcrypto/bn: bn_lib.c Log message: Copy BN_FLG flags in BN_copy() BN_copy() forgot to copy the flags from the source to the target. Fix this by copying the flags. In fact, only copy BN_FLG_CONSTTIME since propagating BN_FLG_MALLOCED and BN_FLG_STATIC_DATA is wrong. Ignore the BN_FLG_FREE flag "used for debugging" which of course means "unused" like a lot of other debug code that somehow ended up in public headers. Also: make BN_FLG_CONSTTIME sticky on the target, i.e., don't clear the flag when copying from a non-constant time BIGNUM to a constant time one for the following reason: if a is constant time, BN_sqr(a, a, ctx) would use a BIGNUM without the flag internally, then copy the result to a in which process a would lose its constant time flag. Fixing this would be a lot of pointless work since someone had the good sense of not relying on a fragile flag for something this important. Rather, libcrypto always uses the constant time paths instead of the faster, cryptographically inadequate paths. Before this was changed, this was a pretty bad bug. The RSA code uses the horrible BN_with_flags() function to create local versions of the private moduli and set BN_FLG_CONSTTIME on them. If the RSA_FLAG_CACHE_PRIVATE for caching moduli is set on the RSA, which it is by default, it attempts to set these constant time versions on the RSA's internal Montgomery contexts. Since it is called BN_MONT_CTX_set(), the setter doesn't set a BIGNUM on the BN_MONT_CTX, rather it copies it over, losing the BN_FLG_CONSTTIME flag in the process and make all the horrible leaky RSA code leak some more. Good job. This is all harmless and is mostly a cosmetic fix. BN_FLG_CONSTTIME should be removed internally. It will be kept since various language bindings of course picked it up and expose it. ok beck jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/31 13:40:09 Modified files: regress/lib/libcrypto/bn: bn_unit.c Log message: Add regress coverage for the new behavior of BN_copy() with respect to flags. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2023/03/31 13:43:33 Modified files: sys/netinet6 : nd6.c nd6_nbr.c nd6_rtr.c Log message: Fix white space. CVSROOT: /cvs Module name: src Changes by: mglocker@cvs.openbsd.org 2023/03/31 13:50:46 Modified files: sys/arch/arm64/conf: RAMDISK Log message: Enable ufshci(4). ok kettenis@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/31 14:16:55 Modified files: sbin/isakmpd : ike_quick_mode.c Log message: Add missing NULL check after group_get() Otherwise dh_getlen() will dereference ie->group and crash. looks correct to hshoexer CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/03/31 14:28:48 Modified files: sys/dev/pci : pcidevs Log message: Add "Baikal Electronics" and their "BE-M1000" SoC OK kettenis CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/03/31 14:31:35 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: regen after "BE-M1000" addition CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/03/31 17:53:49 Modified files: sys/dev/usb : if_umb.c Log message: dont match quectel ec25 by vendor+product id quectel seem to provide a sane and consistent set of functionality built on top of the qualcomm qmi stuff. their linux drivers guide says quectel modems provide a set of umsm usb interfaces and a network interface that can be in qmi, ecm, or mbim mode. if the modem is in mbim mode, it will present the mbim classes which umb should be able to attach to without this explicit vendor+product match (assuming umsm doesn't claim the interface first). based on info in the Quectel LTE&5G Linux USB Driver User Guide V2.0 discussed with and tested by kevlo@ ok patrick@ sthen@ kevlo@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/03/31 17:55:45 Modified files: sys/dev/usb : umsm.c Log message: shuffle the code in umsm_match a bit. if umsm_lookup doesnt return anything, return early and leave the rest of umsm_match to handling specific devices. no functional change. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/03/31 18:04:40 Modified files: sys/dev/usb : umsm.c Log message: follow quectel guidance on which usb interfaces umsm should match. the Quectel LTE&5G Linux USB Driver User Guide V2.0 says umsm should only attach to usb interfaces 0 to 3 using the interface class UICLASS_VENDOR. their doco uses magic numbers, but this is what they mean. interfaces 4 and above provide network (not serial) via qmi, ecm, or mbim. preventing umsm from attaching to the high interfaces allows the appropriate network driver to use it instead. eg, umb is now able to attach to the network interface because it presents a standard mbim class. discussed with and tested by kevlo@ ok patric@ sthen@ kevlo@ CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/03/31 23:17:59 Modified files: security/c2sp-testvectors: Makefile security/c2sp-testvectors/pkg: PLIST Log message: Update to c2sp-testvectors 20230401 Includes a new set of test vectors for jq255e and jq255s CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/03/31 23:19:07 Modified files: security/c2sp-testvectors: distinfo Log message: Update distinfo for c2sp-testvectors 20230401 CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/03/31 23:27:44 Modified files: usr.bin/find : function.c Log message: horrible whitespace, mostly on non-code lines. no object change CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 00:27:31 Modified files: x11/gnome/nautilus: Makefile distinfo x11/gnome/nautilus/pkg: PLIST Log message: Update to nautilus-43.3. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 00:35:11 Modified files: devel/libgit2/libgit2: Makefile distinfo Log message: Update to libgit2-1.6.3. CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2023/04/01 00:35:41 Modified files: devel/p5-Data-HexDump: Makefile distinfo devel/p5-Data-HexDump/pkg: PLIST Log message: Update to p5-Data-HexDump-0.04, looks ok Abel Abraham Camarillo Ojeda (MAINTAINER) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 00:38:05 Modified files: sysutils/dspy : Makefile distinfo sysutils/dspy/patches: patch-meson_build sysutils/dspy/pkg: PLIST Log message: Update to d-spy-1.6.0. CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/01 00:39:03 Modified files: usr.sbin/vmd : vioscsi.c Log message: avoid use of uninitialised memory ok mlarkin@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/01 00:40:49 Modified files: x11/xfce4/thunar-archive: Makefile distinfo x11/xfce4/thunar-archive/pkg: PLIST Log message: x11/xfce4/thunar-archive: update to 0.5.1 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/01 00:45:47 Modified files: x11/xfce4/xfce4-clipman: Makefile distinfo Log message: x11/xfce4/xfce4-clipman: update to 1.6.3 see https://mail.xfce.org/pipermail/xfce-announce/2023-March/001254.html CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 00:57:48 Modified files: sysutils/cloud-sql-proxy: Makefile distinfo Log message: Update to cloud-sql-proxy-2.1.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 00:58:51 Modified files: x11/gnome/control-center: Makefile distinfo x11/gnome/control-center/patches: patch-panels_user-accounts_cc-user-panel_c patch-panels_user-accounts_user-utils_c Log message: Update to gnome-control-center-43.5. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 01:06:27 Modified files: graphics/openexr: Makefile distinfo Log message: Update to OpenEXR-3.1.7. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 01:07:22 Modified files: x11/gnome/libadwaita: Makefile distinfo Log message: Update to libadwaita-1.2.4. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 01:11:54 Modified files: x11/gnome/autoar: Makefile distinfo Log message: Update to gnome-autoar-0.4.4. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 01:13:52 Modified files: x11/yaru : Makefile distinfo x11/yaru/patches: patch-icons_meson_build x11/yaru/pkg : PLIST Log message: Update to yaru-23.04.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 01:14:54 Modified files: multimedia/py-chromecast: Makefile distinfo Log message: Update to py3-chromecast-13.0.6. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 01:21:59 Modified files: sysutils/google-cloud-sdk: Makefile distinfo sysutils/google-cloud-sdk/patches: patch-lib_googlecloudsdk_core_updater_local_state_py sysutils/google-cloud-sdk/pkg: PLIST Log message: Update to google-cloud-sdk-424.0.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 01:26:56 Modified files: x11/gnome/gvfs : Makefile distinfo Log message: Update to gvfs-1.50.4. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/01 01:27:32 Modified files: geo/qgis : Makefile distinfo Log message: geo/qgis: update to 3.30.1 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/01 01:33:47 Modified files: x11/xfce4/xfce4-panel: Makefile x11/xfce4/xfce4-panel/pkg: PLIST Log message: x11/xfce4/xfce4-panel: loosen @conflict and add @pkgpath so that datetime pkg is removed upon upgrade datetime is deprecated/unmaintained upstream, and the clock plugin in the panel has been updated with all the features datetime had. with hint from ajacoutot@, thanks! prodding from kn@ a while ago CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 01:35:12 Modified files: x11/gnome/maps : Makefile distinfo Log message: Update to gnome-maps-43.5. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/01 01:35:27 Modified files: x11/xfce4 : Makefile Removed files: x11/xfce4/xfce4-datetime: Makefile distinfo x11/xfce4/xfce4-datetime/pkg: DESCR PLIST Log message: remove x11/xfce4/xfce4-datetime, merged into xfce4-panel CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 01:37:04 Modified files: sysutils/terragrunt: Makefile distinfo Log message: Update to terragrunt-0.45.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 01:50:04 Modified files: sysutils/nomad : Makefile distinfo Log message: Update to nomad-1.5.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 01:57:45 Modified files: x11/gnome/mutter: Makefile distinfo x11/gnome/mutter/patches: patch-src_backends_meta-stage-impl_c Log message: Update to mutter-43.4. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 02:19:09 Modified files: x11/libfm : Makefile.inc x11/libfm/core : Makefile x11/libfm/core/pkg: PLIST x11/libfm/extra: Makefile x11/libfm/extra/pkg: DESCR x11/pcmanfm : Makefile Added files: x11/libfm/core/patches: patch-src_base_fm-thumbnail-loader_c Log message: Move to gtk+3. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 02:19:23 Modified files: x11/gnome/shell: Makefile distinfo Log message: Update to gnome-shell-43.4. CVSROOT: /cvs Module name: ports Changes by: op@cvs.openbsd.org 2023/04/01 02:20:20 Modified files: lang/clojure : Makefile distinfo Log message: update lang/clojure to 1.11.1.1267 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 02:23:36 Modified files: textproc/libxml++50: Makefile distinfo Log message: Update to libxml++50-5.0.3. CVSROOT: /cvs Module name: ports Changes by: martin@cvs.openbsd.org 2023/04/01 02:30:26 Modified files: math/py-netcdf4: Makefile distinfo math/py-netcdf4/pkg: PLIST Removed files: math/py-netcdf4/patches: patch-src_netCDF4__netCDF4_pyx Log message: Update py-netcdf4 to 1.6.3. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/01 02:37:23 Modified files: sys/dev/ofw : ofw_regulator.c ofw_regulator.h Log message: Implement regulator notifiers which get called when the voltage/current for a regulator is changed or when the regulator gets initialized when it attaches for the first time. The latter makes it possible to register a notifier for a regulator that hasn't attached yet. ok dlg@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/01 02:39:05 Modified files: sys/dev/fdt : files.fdt Added files: sys/dev/fdt : rkiovd.c Log message: Add rkiovd(4), a driver for the IO voltage domains on Rockchip SoCs. This driver makes sure the SoC IO voltage domains stay in sync with the voltage provided by the regulator associated with the domain. ok dlg@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/01 02:39:54 Modified files: sys/arch/arm64/conf: GENERIC RAMDISK Log message: Enable rkiovd(4) CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/01 02:48:05 Modified files: share/man/man4 : Makefile Added files: share/man/man4 : rkiovd.4 Log message: rkiovd(4) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 02:56:01 Modified files: astro/calcmysky: Makefile distinfo astro/calcmysky/pkg: PLIST Log message: Update to calcmysky-0.3.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 02:56:23 Modified files: astro/stellarium: Makefile distinfo astro/stellarium/pkg: PLIST Log message: Update to stellarium-23.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 03:11:30 Modified files: sysutils/consul: Makefile distinfo Added files: sysutils/consul/patches: patch-agent_uiserver_dist_index_html Log message: Update to consul-1.15.2. Merge a patch from pvk@ to correct version reported via web interface. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 03:16:50 Modified files: x11/gnome/builder: Makefile distinfo x11/gnome/builder/pkg: PLIST Log message: Update to gnome-builder-43.7. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 03:21:32 Modified files: meta/gnome : Makefile meta/gnome/pkg : README-main Log message: Welcome GNOME 43.4. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 03:29:55 Modified files: x11/gnome/tracker3: Makefile distinfo x11/gnome/tracker3/pkg: PLIST Log message: Update to tracker3-3.5.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 03:30:06 Modified files: x11/gnome/tracker3-miners: Makefile distinfo x11/gnome/tracker3-miners/pkg: PLIST Log message: Update to tracker3-miners-3.5.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 03:32:36 Modified files: x11/gnome/aisleriot: Makefile distinfo Log message: Update to aisleriot-3.22.28. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 04:15:31 Modified files: x11/gnome/gucharmap: Makefile distinfo Log message: Update to gucharmap-15.0.3. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/01 04:26:45 Modified files: meta/xfce : Makefile Log message: meta/xfce: drop RDEP on xfce4-datetime reminded by naddy@, thanks ! CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/04/01 04:38:01 Modified files: security/rust-openssl-tests: Makefile distinfo security/rust-openssl-tests/pkg: PLIST Log message: Update to rust-openssl-tests 20230401 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 05:00:13 Modified files: x11/gnome : Makefile Removed files: x11/gnome/libdmapsharing: Makefile distinfo x11/gnome/libdmapsharing/pkg: DESCR PLIST Log message: Remove libdmapsharing; it's unused and libdmapsharing4 already takes over the upgrade path. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/01 05:08:43 Modified files: lib/libcrypto/bn: bn_gcd.c Log message: Group the non-constant time gcd functions together The only consumer of euclid() is BN_gcd(), which, in turn is only used by BN_gcd_nonct(). Group them together rather than having parts of the constant time implementation separate them. This moves two functions to a different place in the file. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/01 05:10:55 Modified files: lib/libcrypto/bn: bn_gcd.c Log message: Indent labels CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 06:23:52 Modified files: graphics/webp-pixbuf-loader: Makefile distinfo Log message: Update to webp-pixbuf-loader-0.2.4. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 06:39:31 Modified files: sysutils/deja-dup: Makefile distinfo sysutils/deja-dup/pkg: PLIST Log message: Update to deja-dup-44.1. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/01 06:44:56 Modified files: lib/libcrypto/bn: bn_lib.c Log message: Pull static const data out of BN_value_one() Also use C99 initializers for readability. discussed with jsing CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 06:47:33 Modified files: games/gcompris : Makefile distinfo Log message: Update to gcompris-3.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 06:53:04 Modified files: x11/gnome/libdmapsharing4: Makefile distinfo Log message: Update to libdmapsharing4-3.9.12. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 06:56:32 Modified files: productivity/gnucash: Makefile distinfo productivity/gnucash/patches: patch-libgnucash_core-utils_gnc-path_c productivity/gnucash/pkg: PLIST Removed files: productivity/gnucash/patches: patch-gnucash_gnome-utils_gnc-component-manager_c patch-gnucash_gnome-utils_gnc-main-window_c patch-gnucash_import-export_log-replay_gnc-log-replay_c Log message: Update to gnucash-5.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 06:56:48 Modified files: productivity/gnucash-docs: Makefile distinfo productivity/gnucash-docs/pkg: PLIST Log message: Update to gnucash-docs-5.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 07:02:39 Modified files: x11/yaru : Makefile distinfo x11/yaru/patches: patch-icons_meson_build x11/yaru/pkg : PLIST Log message: Update to yaru-23.04.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 07:10:49 Modified files: sysutils/terraform: Makefile distinfo Log message: Update to terraform-1.4.4. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/01 07:29:20 Modified files: net/synapse : Makefile distinfo modules.inc net/synapse/pkg: PLIST Log message: update to synapse-1.80.0, from maintainer Renaud Allard CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/01 07:30:25 Modified files: net/mautrix-whatsapp: Makefile distinfo modules.inc Log message: net/mautrix-whatsapp: update to 0.8.3, from maintainer Renaud Allard CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 07:49:20 Modified files: x11/gnome/librsvg: Makefile distinfo x11/gnome/librsvg/pkg: PFRAG.stable Added files: x11/gnome/librsvg: crates.inc x11/gnome/librsvg/patches: patch-modcargo-crates_cfg-expr-0_11_0_src_targets_builtins_rs Removed files: x11/gnome/librsvg/patches: patch-vendor_cfg-expr_src_targets_builtins_rs Log message: Update to librsvg-2.56.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 07:49:46 Modified files: lang/vala : Makefile distinfo Log message: Update to vala-0.56.5. CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/04/01 08:18:29 Modified files: sbin/fdisk : part.c Log message: Use char * const for the rest of the repeated GUID strings. More readable, less prone to typos. No intentional functional change. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 08:32:32 Modified files: print/foo2zjs : Makefile print/foo2zjs/patches: patch-getweb_in Log message: Fix firmware URL in getweb. reported by Jean-Michel Bessot, thanks. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 08:35:41 Modified files: print/foo2zjs : Tag: OPENBSD_7_2 Makefile print/foo2zjs/patches: Tag: OPENBSD_7_2 patch-getweb_in Log message: MFC: Fix firmware URL in getweb. CVSROOT: /cvs Module name: ports Changes by: thfr@cvs.openbsd.org 2023/04/01 08:50:38 Modified files: games : Makefile devel/quirks : Makefile devel/quirks/files: Quirks.pm Removed files: games/depotdownloader: Makefile distinfo games/depotdownloader/files: depotdownloader.sh games/depotdownloader/pkg: DESCR PLIST README Log message: retire depotdownloader, ok op@ and solene@ CVSROOT: /cvs Module name: ports Changes by: thfr@cvs.openbsd.org 2023/04/01 09:45:37 Modified files: devel/sdl2 : Makefile distinfo devel/sdl2/patches: patch-Makefile_in patch-src_SDL_c patch-src_joystick_SDL_gamecontrollerdb_h Added files: devel/sdl2/patches: patch-sdl2-config_cmake_in Removed files: devel/sdl2/patches: patch-src_joystick_bsd_SDL_bsdjoystick_c Log message: update to sdl2 2.26.4, build and run tested with multiple consumers CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 11:24:45 Modified files: net/whatweb : Makefile distinfo net/whatweb/pkg: PLIST Log message: Update to WhatWeb-0.5.5. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/01 11:52:07 Modified files: net/nextcloudclient: Makefile distinfo Log message: net/nextcloudclient: update to 3.8.0. see https://github.com/nextcloud/desktop/releases/v3.8.0 from MAINTAINER Adriano Barbosa CVSROOT: /cvs Module name: src Changes by: otto@cvs.openbsd.org 2023/04/01 12:47:51 Modified files: lib/libc/stdlib: malloc.3 malloc.c Log message: Check all chunks in the delayed free list for write-after-free. Should catch more of them and closer (in time) to the WAF. ok tb@ CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2023/04/01 13:28:26 Modified files: lang/ruby/3.2 : Makefile distinfo lang/ruby/3.2/patches: patch-configure patch-lib_rubygems_ext_ext_conf_builder_rb lang/ruby/3.2/pkg: PLIST-main PLIST-ri_docs Log message: Update to Ruby 3.2.2 CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2023/04/01 13:29:04 Modified files: lang/ruby/3.1 : Makefile distinfo lang/ruby/3.1/patches: patch-configure lang/ruby/3.1/pkg: PLIST-main PLIST-ri_docs Log message: Update to Ruby 3.1.4 CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2023/04/01 13:29:53 Modified files: lang/ruby/3.0 : Makefile distinfo lang/ruby/3.0/patches: patch-configure lang/ruby/3.0/pkg: PLIST-main Added files: lang/ruby/3.0/patches: patch-lib_cgi_cookie_rb Log message: Update to Ruby 3.0.6 Backport patch to fix leading . in cookie domains from cgi 0.3.6. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 13:35:52 Modified files: graphics/shotwell: Makefile distinfo Removed files: graphics/shotwell/patches: patch-meson_build patch-src_Portal_vala patch-vapi_gdk-wayland-3_0_vapi Log message: Update to shotwell-0.30.18. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 13:38:07 Modified files: net/py-botocore: Makefile distinfo net/py-botocore/pkg: PLIST Log message: Update to py3-botocore-1.29.104 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 13:38:29 Modified files: net/py-boto3 : Makefile distinfo Log message: Update to py3-boto3-1.26.104. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 13:38:42 Modified files: sysutils/awscli: Makefile distinfo Log message: Update to awscli-1.27.104. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 13:53:13 Modified files: devel/glibmm268: Makefile distinfo devel/glibmm268/pkg: PLIST Log message: Update to glibmm268-2.76.0. from kn@ needed to update net/tdesktop CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/04/01 13:57:58 Modified files: net/tdesktop : Makefile distinfo Log message: update to tdesktop 4.7.0 CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/04/01 13:59:26 Modified files: net/tdesktop : Makefile Log message: typofix version spec... CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 14:04:32 Modified files: productivity/libphonenumber: Makefile distinfo Log message: Update to libphonenumber-8.13.8. CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/04/01 17:24:46 Modified files: distrib/miniroot: install.sub Log message: Limit IFS scope to effect parsing code only Set to split `hw.disknames' strings is neat, but functionn-wide means the bsort() invocation honours it, i.e. it'll output newlines not spaces. Break the one-liner into the same multi-line idom occuring elsewhere and contain IFS in the subshell that needs it. This was never visible due how the output of was consumed by the shell. The only visual, but otherwise effectless bug due to this appeared with the new disk encryption question double-quoting get_dkdevs() output, i.e. multiple disks printed across multiple lines; this yields one, as inteded. OK afresh1 CVSROOT: /cvs Module name: src Changes by: cheloha@cvs.openbsd.org 2023/04/01 18:02:26 Modified files: share/man/man9 : tc_init.9 Log message: tc_init.9: miscellaneous cleanup and rewrites - In DESCRIPTION, try to more fully describe what kern_tc.c does. Clean up the wording. - Mention *all* the requirements for timekeeping hardware. Describe the rollover margin in plainer language. - Revise field descriptions for struct timecounter. Don't mention fields the driver doesn't need to initialize. Document the tc_user field. - Add a CONTEXT section. - In SEE ALSO, switch to an https URI on the main freebsd.org website. - In HISTORY, note that the timecounting code first reached end users in FreeBSD 3.0. This commit is probably the first one: "Replace TOD clock code with more systematic approach." https://cgit.freebsd.org/src/commit/sys/sys/timetc.h?id=7ec73f64179417aeda085c1c338385559fb49c23 - Add an AUTHORS section. With input from Poul-Henning Kamp. Link: https://marc.info/?l=openbsd-tech&m=168004968214914&w=2 ok jmc@ CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/04/01 18:58:07 Modified files: distrib/miniroot: install.sub Log message: Rename get_softraid_{disks -> chunk}() and CRYPTO{DISK -> CHUNK} "disk" can mean both "chunk" and "volume" and a future diff for better softraid volumes handling will benefit from this distinction. No functional change. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/01 19:21:39 Modified files: sys/dev/fdt : files.fdt Added files: sys/dev/fdt : rkusbphy.c Log message: add rkusbphy(4), a driver for the usb2phy on rockchip SoCs. the rkusbphy device has children nodes in the device tree which are the actual phys. this driver mostly exists to wire those children up as PHYs and turn the associated regulators on when a host controller enables the PHYs. in the future it should enable clocks and take ports out of suspend too. i'm not enabling this yet because it's useless without some tweaks in the usb host controller drivers. ok kettenis@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/01 19:40:52 Modified files: share/man/man4 : Makefile Added files: share/man/man4 : rkusbphy.4 Log message: manpage for rkusbphy(4) CVSROOT: /cvs Module name: src Changes by: dv@cvs.openbsd.org 2023/04/01 20:04:10 Modified files: usr.sbin/vmd : config.c vmd.c vmd.h Log message: vmd(8): migrate vmd_vm.vm_ttyname to char array. Other structs use a fixed length array already. This allows a vmd_vm object to be transmitted over an ipc channel, too. Additionally, solves a segfault caused by a strlcpy(3) in an error path. ok mlarkin@ CVSROOT: /cvs Module name: src Changes by: kevlo@cvs.openbsd.org 2023/04/01 21:40:54 Modified files: sys/arch/amd64/conf: RAMDISK_CD Log message: nable ngbe(4) on install media. Passes 'make release' build. Pointed out by miod@, patrick@ CVSROOT: /cvs Module name: src Changes by: kevlo@cvs.openbsd.org 2023/04/01 21:41:38 Modified files: distrib/sets/lists/comp: mi distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: www Changes by: florian@cvs.openbsd.org 2023/04/01 22:45:14 Modified files: . : events.html Added files: papers : asiabsdcon2023-dynamic_host_configuration_please-slides.pdf Log message: Add my AsiaBSDCon 2023 slides. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/01 23:52:28 Modified files: devel/libgit2/py-git2: Makefile distinfo Removed files: devel/libgit2/py-git2/patches: patch-src_types_h Log message: Update to py3-git2-1.12.0. CVSROOT: /cvs Module name: www Changes by: brynet@cvs.openbsd.org 2023/04/02 00:01:29 Modified files: . : events.html Log message: add missing closing tag CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/02 00:06:00 Modified files: sysutils/libvirt: Makefile distinfo sysutils/libvirt/patches: patch-meson_build Log message: Update to libvirt-9.2.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/02 00:06:18 Modified files: sysutils/libvirt-python: Makefile distinfo Log message: Update to py3-libvirt-9.2.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/02 00:06:39 Modified files: graphics/gegl04: Makefile distinfo Log message: Update to gegl04-0.4.44. CVSROOT: /cvs Module name: ports Changes by: bket@cvs.openbsd.org 2023/04/02 00:14:01 Modified files: devel/git-cola : Makefile distinfo devel/git-cola/pkg: PLIST Log message: Update to git-cola-4.2.1 Changes: https://github.com/git-cola/git-cola/blob/v4.2.1/CHANGES.rst CVSROOT: /cvs Module name: ports Changes by: op@cvs.openbsd.org 2023/04/02 01:16:42 Modified files: net/lagrange : Makefile distinfo Log message: update net/lagrange to 1.15.5; from MAINTAINER Florian Viehweger, thanks! CVSROOT: /cvs Module name: www Changes by: dv@cvs.openbsd.org 2023/04/02 01:38:41 Modified files: . : events.html Added files: papers : asiabsdcon2023-hardening_vmd_devices-slides.pdf asiabsdcon2023-hardening_vmd_devices.pdf Log message: Add my AsiaBSDCon2023 talk on hardening vmd(8) devices. CVSROOT: /cvs Module name: src Changes by: anton@cvs.openbsd.org 2023/04/02 02:53:01 Modified files: sys/dev/ic : ufshci.c Log message: zap excessive semicolons; ok mglocker@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/02 02:55:44 Modified files: www/seamonkey : Makefile distinfo www/seamonkey/patches: patch-build_moz_configure_init_configure www/seamonkey-i18n: Makefile.inc distinfo Added files: www/seamonkey/patches: patch-gfx_skia_moz_build Log message: www/seamonkey: update to 2.53.16. see https://www.seamonkey-project.org/releases/seamonkey2.53.16/ disable SK_JUMPER_USE_ASSEMBLY on all arches, allows seamonkey to run on PKU machines without noexeconly, until you hit the fft inline asm crash in avcodec, which means we keep USE_NOEXECONLY=Yes for now, but that's a step in the right direction. tested by tb@, thanks ! CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/02 02:57:45 Modified files: www/nextcloud_notify_push: Makefile crates.inc distinfo Log message: www/nextcloud_notify_push: update to 0.6.2 see https://github.com/nextcloud/notify_push/releases/tag/v0.6.1 & https://github.com/nextcloud/notify_push/releases/tag/v0.6.2 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/02 03:10:42 Modified files: www/nextcloud/25: Makefile distinfo www/nextcloud/25/pkg: PLIST Log message: www/nextcloud/25: update to 25.0.5. see https://nextcloud.com/changelog/#latest25 ok gonzalo@ (MAINTAINER) CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/02 03:11:46 Modified files: www/nextcloud/24: Makefile distinfo www/nextcloud/24/pkg: PLIST Log message: www/nextcloud/24: update to 24.0.11. see https://nextcloud.com/changelog/#latest24 add @pkgpath so that users of 23 are upgraded to 24 discussed with & ok gonzalo@ (MAINTAINER) CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/02 03:13:37 Modified files: www/nextcloud : Makefile Removed files: www/nextcloud/23: Makefile distinfo www/nextcloud/23/pkg: PLIST Log message: drop nextcloud 23 branch, it's now unsupported upstream discussed with gonzalo@ (MAINTAINER) CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/02 03:15:18 Modified files: www/nextcloud/24: Tag: OPENBSD_7_2 Makefile distinfo www/nextcloud/24/pkg: Tag: OPENBSD_7_2 PLIST Log message: www/nextcloud/24: MFC update to 24.0.11. see https://nextcloud.com/changelog/#latest24 ok gonzalo@ (MAINTAINER) CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/04/02 03:18:55 Modified files: security/c2sp-testvectors: Makefile distinfo security/c2sp-testvectors/pkg: PLIST Log message: Update to c2sp-testvectors 20230402 Upstream shuffled files around, so this now bundles the whole thing including age instead of only the test vectors for simplicity. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/02 03:53:18 Modified files: geo/pgpointcloud: Makefile distinfo geo/pgpointcloud/pkg: PLIST Log message: geo/pgpointcloud: update to 1.2.4. see https://github.com/pgpointcloud/pointcloud/blob/v1.2.4/NEWS#L1 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/02 03:56:02 Modified files: geo/gpxsee : Makefile distinfo Log message: geo/gpxsee: update to 12.3 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/02 03:58:16 Modified files: devel/liblouis : Makefile distinfo devel/liblouis/patches: patch-python_louis_Makefile_in devel/liblouis/pkg: PLIST Log message: Update to liblouis-3.25.0. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/02 03:59:40 Modified files: geo/py-laspy : Makefile distinfo Log message: geo/py-laspy: update to 2.4.1 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/02 04:03:20 Modified files: geo/py-owslib : Makefile distinfo geo/py-owslib/pkg: PLIST Log message: geo/py-owslib: update to 0.28.1. see https://github.com/geopython/OWSLib/releases/tag/0.28.0 & https://github.com/geopython/OWSLib/releases/tag/0.28.1 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/02 04:08:25 Modified files: geo/osm2pgsql : Makefile distinfo geo/osm2pgsql/patches: patch-CMakeLists_txt patch-docs_osm2pgsql_1 patch-src_options_hpp Log message: geo/osm2pgsql: update to 1.8.1. see https://github.com/openstreetmap/osm2pgsql/releases/tag/1.8.0 & https://github.com/openstreetmap/osm2pgsql/releases/tag/1.8.1 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/02 04:12:36 Modified files: geo/py-fiona : Makefile distinfo geo/py-fiona/pkg: PLIST Log message: geo/py-fiona: update to 1.9.2. see https://fiona.readthedocs.io/en/stable/README.html#id1 for all the changes since 1.8.21. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/02 04:14:30 Modified files: geo/py-osmium : Makefile distinfo geo/py-osmium/pkg: PLIST Log message: geo/py-osmium: update to 3.6.0. see https://github.com/osmcode/pyosmium/releases/tag/v3.6.0 & https://github.com/osmcode/pyosmium/releases/tag/v3.5.0 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/02 04:17:49 Modified files: geo/py-planet : Makefile distinfo Log message: geo/py-planet: update to 1.5.2. note that development on this branch is done; future work will be on a 2.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/02 04:26:53 Modified files: graphics/tesseract/tesseract: Makefile distinfo Log message: Update to tesseract-5.3.1. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/02 04:28:04 Modified files: geo/libosmium : Makefile distinfo geo/libosmium/pkg: PLIST Log message: geo/libosmium: update to 2.19.0. see https://github.com/osmcode/libosmium/releases/tag/v2.19.0 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/02 04:29:48 Modified files: inputmethods/ibus-typing-booster: Makefile distinfo inputmethods/ibus-typing-booster/pkg: PLIST Log message: Update to ibus-typing-booster-2.22.1. CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/04/02 04:31:23 Modified files: www/seamonkey : Makefile Added files: www/seamonkey/patches: patch-media_ffvpx_libavcodec_x86_fft_asm Log message: seamonkey: add a working version of the fft.asm patch With skia neutered in the update, this allows us to drop USE_NOEXECONLY. ok landry CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/02 04:40:14 Modified files: www/liferea : Makefile distinfo Log message: Update to liferea-1.14.4. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/02 04:41:12 Modified files: x11/ruby-dbus : Makefile distinfo x11/ruby-dbus/pkg: PLIST Log message: Update to ruby-dbus-0.20.0. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/02 05:28:23 Modified files: sys/dev/mii : rgephy.c Log message: Add support for the RTL8211F-VD PHY. ok kevlo@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/02 05:32:48 Modified files: sys/dev/acpi : dsdt.h Log message: add Windows 11 _OSI strings ok mlarkin@ CVSROOT: /cvs Module name: ports Changes by: martin@cvs.openbsd.org 2023/04/02 05:47:15 Modified files: devel/py-vulture: Makefile distinfo devel/py-vulture/pkg: PLIST Log message: Update py-vulture to 2.7. CVSROOT: /cvs Module name: ports Changes by: danj@cvs.openbsd.org 2023/04/02 08:37:43 Modified files: net/haproxy : Makefile distinfo Log message: Update to haproxy-2.6.12 CVSROOT: /cvs Module name: ports Changes by: danj@cvs.openbsd.org 2023/04/02 08:45:33 Modified files: sysutils/vultr-cli: Makefile distinfo modules.inc Log message: Update to vultr-cli-2.16.2 From Adriano Barbosa (maintainer). CVSROOT: /cvs Module name: www Changes by: visa@cvs.openbsd.org 2023/04/02 08:58:45 Modified files: . : 73.html Log message: mips64 package count CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/02 09:36:53 Modified files: lib/libcrypto/curve25519: curve25519.c Log message: Revert r1.9 and reinstate r1.6 The argument change to x5519_ge_scalarmult_base() was made to match the prototype in the header. More recent compilers warn about such ptr vs array mismatches. CVSROOT: /cvs Module name: src Changes by: sthen@cvs.openbsd.org 2023/04/02 10:43:42 Modified files: usr.bin/calendar/calendars: calendar.music Log message: add Ryuichi Sakamoto. rest in peace. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2023/04/02 11:01:48 Modified files: sys/dev/usb : usbdevs Log message: New TEMPerGold device. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2023/04/02 11:02:08 Modified files: sys/dev/usb : usbdevs.h usbdevs_data.h Log message: Regen CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2023/04/02 11:03:14 Modified files: share/man/man4 : ugold.4 sys/dev/usb : ugold.c Log message: Add support for TEMPerGold 3.4 to ugold(4). ok landry@ CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/04/02 11:21:08 Modified files: net/tg_owt : Makefile distinfo Log message: update to latest tg_owt CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/04/02 11:21:12 Modified files: net/tdesktop : Makefile distinfo Log message: udpate to tdesktop 4.7.1 CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/02 11:46:12 Modified files: devel/kf5 : kf5.port.mk devel/kf5/attica: distinfo devel/kf5/baloo: distinfo devel/kf5/baloo/pkg: PLIST devel/kf5/bluez-qt: distinfo devel/kf5/breeze-icons: distinfo devel/kf5/breeze-icons/pkg: PLIST devel/kf5/extra-cmake-modules: Makefile distinfo devel/kf5/frameworkintegration: distinfo devel/kf5/kactivities: distinfo devel/kf5/kactivities-stats: distinfo devel/kf5/kapidox: distinfo devel/kf5/karchive: distinfo devel/kf5/karchive/pkg: PLIST devel/kf5/kauth: distinfo devel/kf5/kbookmarks: distinfo devel/kf5/kcalendarcore: distinfo devel/kf5/kcmutils: distinfo devel/kf5/kcodecs: distinfo devel/kf5/kcompletion: distinfo devel/kf5/kconfig: distinfo devel/kf5/kconfigwidgets: distinfo devel/kf5/kcontacts: distinfo devel/kf5/kcoreaddons: distinfo devel/kf5/kcrash: distinfo devel/kf5/kdav : distinfo devel/kf5/kdbusaddons: distinfo devel/kf5/kdeclarative: distinfo devel/kf5/kded : distinfo devel/kf5/kdelibs4support: distinfo devel/kf5/kdesignerplugin: distinfo devel/kf5/kdesu: distinfo devel/kf5/kdewebkit: distinfo devel/kf5/kdnssd: distinfo devel/kf5/kdoctools: distinfo devel/kf5/kdoctools/pkg: PLIST devel/kf5/kemoticons: distinfo devel/kf5/kfilemetadata: distinfo devel/kf5/kglobalaccel: distinfo devel/kf5/kguiaddons: distinfo devel/kf5/kholidays: distinfo devel/kf5/khtml: distinfo devel/kf5/ki18n: distinfo devel/kf5/kiconthemes: distinfo devel/kf5/kidletime: distinfo devel/kf5/kimageformats: Makefile distinfo devel/kf5/kinit: distinfo devel/kf5/kio : distinfo devel/kf5/kirigami2: distinfo devel/kf5/kitemmodels: distinfo devel/kf5/kitemviews: distinfo devel/kf5/kjobwidgets: distinfo devel/kf5/kjs : distinfo devel/kf5/kjsembed: distinfo devel/kf5/kmediaplayer: distinfo devel/kf5/knewstuff: distinfo devel/kf5/knotifications: distinfo devel/kf5/knotifyconfig: distinfo devel/kf5/kpackage: distinfo devel/kf5/kparts: distinfo devel/kf5/kpeople: distinfo devel/kf5/kpeople/pkg: PLIST devel/kf5/kplotting: distinfo devel/kf5/kpty : distinfo devel/kf5/kquickcharts: distinfo devel/kf5/kross: distinfo devel/kf5/krunner: distinfo devel/kf5/kservice: Makefile distinfo devel/kf5/ktexteditor: distinfo devel/kf5/ktextwidgets: distinfo devel/kf5/kunitconversion: distinfo devel/kf5/kwallet: distinfo devel/kf5/kwayland: distinfo devel/kf5/kwidgetsaddons: distinfo devel/kf5/kwindowsystem: distinfo devel/kf5/kxmlgui: distinfo devel/kf5/kxmlrpcclient: distinfo devel/kf5/oxygen-icons: distinfo devel/kf5/plasma-framework: distinfo devel/kf5/prison: distinfo devel/kf5/purpose: distinfo devel/kf5/purpose/pkg: PLIST devel/kf5/qqc2-desktop-style: distinfo devel/kf5/solid: distinfo devel/kf5/sonnet: distinfo devel/kf5/syndication: distinfo devel/kf5/syntax-highlighting: distinfo devel/kf5/threadweaver: distinfo Log message: Update KDE Frameworks 5.104.0 https://kde.org/announcements/frameworks/5/5.104.0/ CVSROOT: /cvs Module name: ports Changes by: op@cvs.openbsd.org 2023/04/02 11:52:53 Modified files: devel/difftastic: Makefile distinfo Log message: update devel/difftastic to 0.46.0, from maintainer Volker Schlecht CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2023/04/02 12:44:13 Modified files: sbin/fdisk : part.c Log message: Use #define instead of `char * const' for the repeated GUID strings. Ugly, but restores compilability with older compilers such as gcc. No intentional functional change. CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/02 13:22:09 Modified files: fonts/font-awesome: Makefile distinfo Log message: Update font-awesome to 6.4.0 CVSROOT: /cvs Module name: ports Changes by: pvk@cvs.openbsd.org 2023/04/02 15:40:34 Modified files: sysutils/ansible-core: Makefile distinfo Log message: Update ansible-core 2.14.3 -> 2.14.4 Changelog: https://github.com/ansible/ansible/blob/stable-2.14/changelogs/CHANGELOG-v2.14.rst#v2-14-4 CVSROOT: /cvs Module name: ports Changes by: pvk@cvs.openbsd.org 2023/04/02 15:41:01 Modified files: sysutils/ansible: Makefile distinfo sysutils/ansible/pkg: PLIST Log message: Update ansible 7.3.0 -> 7.4.0 Changelog: https://github.com/ansible-community/ansible-build-data/blob/main/7/CHANGELOG-v7.rst#v7-4-0 CVSROOT: /cvs Module name: ports Changes by: pvk@cvs.openbsd.org 2023/04/02 16:00:14 Modified files: databases/patroni: Makefile distinfo databases/patroni/patches: patch-patroni_validator_py Log message: Update patroni 3.0.1 -> 3.0.2 Changelog: https://github.com/zalando/patroni/blob/master/docs/releases.rst#version-302 CVSROOT: /cvs Module name: ports Changes by: pvk@cvs.openbsd.org 2023/04/02 16:02:35 Modified files: databases/pgbackrest: Makefile distinfo Log message: Update pgbackrest 2.44 -> 2.45 Changelog: https://github.com/pgbackrest/pgbackrest/releases/tag/release%2F2.45 CVSROOT: /cvs Module name: ports Changes by: pvk@cvs.openbsd.org 2023/04/02 16:11:17 Modified files: security/vault : Makefile distinfo Log message: Update vault 1.13.0 -> 1.13.1 Changelog: https://github.com/hashicorp/vault/blob/main/CHANGELOG.md#1131 CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/02 17:33:42 Modified files: lib/libcrypto/man: get_rfc3526_prime_8192.3 Log message: Fix table by using strings of proper lengths instead of bogus scaling widths. ok schwarze CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/02 17:55:12 Modified files: sys/dev/usb : usbdevs Log message: add more quectel usb device ids this list comes from the Quectel LTE&5G Linux USB Driver User Guide v2.0 ok miod@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/02 17:56:19 Modified files: sys/dev/usb : usbdevs.h usbdevs_data.h Log message: regen CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/02 17:57:57 Modified files: sys/dev/usb : umsm.c Log message: fill out the list of quectel devices that should be supported. the list comes from the Quectel LTE&5G Linux USB Driver User Guide V2.0 and claims that all these devices function the same as each other. ok miod@ CVSROOT: /cvs Module name: www Changes by: benno@cvs.openbsd.org 2023/04/02 18:00:12 Modified files: . : 73.html Log message: first half of changes for upcoming 7.3 release, more tomorrow. CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/04/02 18:12:32 Modified files: devel/p5-Exporter-Tiny: Makefile distinfo Log message: update p5-Exporter-Tiny to 1.006002 CVSROOT: /cvs Module name: www Changes by: benno@cvs.openbsd.org 2023/04/02 18:16:00 Modified files: . : 73.html Log message: add OpenSSH changes CVSROOT: /cvs Module name: src Changes by: cheloha@cvs.openbsd.org 2023/04/02 18:20:25 Modified files: sys/sys : clockintr.h sys/kern : kern_clockintr.c Log message: clockintr: protect struct clockintr_queue with a mutex Add a mutex (cq_mtx) to stuct clockintr_queue so that arbitrary CPUs can manipulate clock interrupts established on arbitrary CPU queues. Refactor the bulk of clockintr_schedule() into clockintr_schedule_locked() so we can reuse it from within the mutex. Tested by mlarkin@. Neat bug found by mlarkin@. With tweaks from kettenis@. ok kettenis@ CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/04/02 19:16:55 Modified files: databases/p5-Rose-DB: Makefile distinfo databases/p5-Rose-DB/patches: patch-lib_Rose_DB_Registry_Entry_pm patch-lib_Rose_DB_pm databases/p5-Rose-DB/pkg: PLIST Log message: update p5-Rose-DB to 0.778 from wen heping CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/02 19:21:31 Modified files: sys/dev/fdt : rkusbphy.c Log message: do actual init of the phy itself when needed. turn the phy clock on and take the port out of suspend when something (eg, xhci or ehci) wants to use the port. before this the code just enabled power on the phy port regulators. ok kettenis@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/02 19:30:33 Modified files: sys/dev/ofw : ofw_misc.c ofw_misc.h Log message: add glue for network interfaces to be found by fdt/ofw node or phandle. if we're going to support switch chips (eg, marvell link street switches as found on a3700 boards like the espressobin), then the device tree for switch ports identifies which network interface they're connected by by a reference (phandle) across the device tree. this lets network drivers register the ifnet struct with the associated node and phandle so the switch can find it and configure it for use with the switch. ok kettenis@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/02 19:34:06 Modified files: sys/dev/ofw : ofw_misc.c Log message: special case phandle 0 and return NULL when looking up network interfaces. not all interfaces will have a phandle (ie, it will be 0), so don't let phandle 0 be used to find any of these. discussed with miod@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/02 19:40:33 Modified files: sys/dev/ofw : ofw_misc.c ofw_misc.h Log message: add phy_enable_prop_idx() to work with phys under props other than "phy". eg, the snps,dwc3 device tree bindings say that it uses a usb2 and usb3 phy, and they can be listed either "usb2-phy" and "usb3-phy" under the standard "phys" and "phy-names" properties supported by phy_enable(), or as slots 0 and 1 under a "usb-phy" properties. the latter would be supported by phy_enable_idx(), but it hardcodes "phys" as the property it looks at. phy_enable_prop_idx() is the same as phy_enable_prop_idx, but it lets you specify which property you're indexing into. ok kettenis@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/02 19:46:19 Modified files: sys/dev/fdt : if_mvneta.c Log message: register mvneta so the interface can be found by node/phandle later. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/02 19:55:00 Modified files: sys/dev/fdt : xhci_fdt.c Log message: add support for enabling both the usb2 and usb3 phys. the code tried enabling the 0th phy in the usb-phy proplist, which is the usb2 phy, and if that didn't exist it would try usb3-phy in the standard phys/phy-names properties. it now tries to enable the usb2 and usb3 phys independently. further, support using standard phy drivers registered with the ofw/fdt code, not just the ones handled inside the xhci driver. ok kettenis@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/02 19:57:41 Modified files: sys/dev/fdt : ehci_fdt.c Log message: try using a standard phy drivers registered with ofw/fdt first. this allows ehci to enable rkusbphy(4), which in means the port and port gets turned onto the port. tested on a radxa e25 and nanopi r5s without any usb or usb phy support in the boot loader. ok kettenis@ CVSROOT: /cvs Module name: ports Changes by: thfr@cvs.openbsd.org 2023/04/02 21:10:28 Modified files: audio/faudio : Makefile distinfo games/fna : Makefile distinfo graphics/fna3d : Makefile distinfo Removed files: graphics/fna3d/patches: patch-MojoShader_mojoshader_internal_h Log message: update FNA ports to 23.04; tested with Rogue Legacy and Blossom Tales II without issues CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2023/04/02 21:40:32 Modified files: . : 73.html Log message: don't mention fixes for drm problems 7.2 didn't have CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2023/04/02 22:02:09 Modified files: . : 73.html Log message: spelling CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2023/04/02 23:41:31 Modified files: editors/libreoffice: Makefile distinfo editors/libreoffice/patches: patch-basic_source_classes_sbxmod_cxx patch-configure editors/libreoffice/pkg: PLIST-main Log message: update to 7.5.2.2 CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/02 23:58:56 Modified files: sys/arch/arm64/conf: GENERIC RAMDISK Log message: enable rkusbphy(4) CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2023/04/03 00:33:07 Modified files: sysutils/salt : Makefile distinfo sysutils/salt/patches: patch-salt_client_ssh_shell_py patch-salt_grains_core_py patch-salt_modules_salt_proxy_py patch-salt_modules_vmctl_py patch-salt_returners_zabbix_return_py patch-salt_utils_network_py sysutils/salt/pkg: PLIST Added files: sysutils/salt/patches: patch-salt___init___py patch-setup_py Log message: update to 3005.1 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/03 00:51:58 Modified files: geo/py-fiona : Makefile Log message: geo/py-fiona: add missing BDEP on math/py-oldest-supported-numpy spotted by ajacoutot@, thanks! CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/03 01:16:53 Modified files: sysutils/consolekit: Makefile distinfo Log message: Update to consolekit2-1.2.4.20230404. CVSROOT: /cvs Module name: src Changes by: nicm@cvs.openbsd.org 2023/04/03 01:39:37 Modified files: usr.bin/tmux : tmux.1 Log message: Clarify text for new -A slightly, GitHub issue 3508. CVSROOT: /cvs Module name: ports Changes by: fcambus@cvs.openbsd.org 2023/04/03 01:46:06 Modified files: net/dbip : Makefile.inc net/dbip/asn : distinfo net/dbip/city : distinfo net/dbip/country: distinfo Log message: Update dbip to 2023.04. CVSROOT: /cvs Module name: src Changes by: dtucker@cvs.openbsd.org 2023/04/03 02:10:54 Modified files: usr.bin/ssh : clientloop.c Log message: Move null check up and simplify process_escapes. Based on Coverity CID 291863 which points out we check the channel pointer for NULLness after dereferencing it. Move this to the start of the function, and while there simplify initialization of efc a bit. ok djm@ CVSROOT: /cvs Module name: www Changes by: kn@cvs.openbsd.org 2023/04/03 04:17:31 Modified files: . : 73.html Log message: more installer, installboot and softraid changes from me CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2023/04/03 04:18:09 Modified files: mail/grommunio/gromox: Makefile distinfo mail/grommunio/gromox/pkg: PLIST-main Log message: update to 2.7 CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2023/04/03 04:18:39 Removed files: mail/grommunio/gromox/patches: patch-lib_rfbl_cpp Log message: remove obsolete patch CVSROOT: /cvs Module name: www Changes by: kn@cvs.openbsd.org 2023/04/03 04:26:37 Modified files: . : 73.html Log message: installer: mention lladdr support, move MD bits, markup CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/03 04:28:39 Modified files: wayland/wayland-protocols: Makefile distinfo wayland/wayland-protocols/pkg: PLIST Log message: Update wayland-protocols to 1.31 Update diff from Vasyl Zubko (thanks) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/03 04:30:18 Modified files: devel/py-blinker: Makefile distinfo Log message: update to py3-blinker-1.6 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/03 04:38:08 Modified files: textproc/py-semver: Makefile distinfo textproc/py-semver/pkg: PLIST Log message: update to py3-semver-3.0.0 CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2023/04/03 04:40:52 Modified files: mail/grommunio/mapi-header-php: Makefile distinfo mail/grommunio/mapi-header-php/pkg: PLIST Log message: update to 1.1 CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2023/04/03 04:41:19 Modified files: mail/grommunio/sync: Makefile distinfo mail/grommunio/sync/patches: patch-config_php patch-vendor_composer_autoload_classmap_php patch-vendor_composer_autoload_static_php mail/grommunio/sync/pkg: PLIST Log message: update to 2.0 CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2023/04/03 04:41:53 Modified files: mail/grommunio/web: Makefile distinfo Log message: update to 3.2 CVSROOT: /cvs Module name: www Changes by: kn@cvs.openbsd.org 2023/04/03 04:45:55 Modified files: . : 73.html Log message: two more tftpd and arpd improvements for safer diskless(8) setups CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/04/03 04:48:00 Modified files: usr.sbin/bgpd : bgpd.8 bgpd.conf.5 bgpd.h parse.y rde.c util.c Log message: Add first step of flowspec support. This adds the bits to establish a connection with SAFI 133. Right now any sent UPDATE with SAFI 133 is simply ignored. At the moment SAFI 134 (flowspec for L3VPN) is unsupported. OK tb@ CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/04/03 04:51:50 Modified files: distrib/arm64/iso: Makefile distrib/arm64/ramdisk: Makefile install.md list Log message: Stop writing pine64 firmware to disk pine64 happens to be the first board "we ran on", as kettenis explains, and this code tries to handle the situation of installing to the same disk the installer booted from. Similar boards like the Pinebook Pro don't get special treatment and work; INSTALL.arm64 already explains how to flash required firmware onto disks or install media -- Allwinner SoCs like the pine64 included. Spotted through md_installboot() dd'ing blobs onto the root disk, which does not fly with root on softraid and is in the way of arm64 getting support for guided disk encryption. Suggested by kettenis patrick Feedback jsg patrick OK patrick CVSROOT: /cvs Module name: www Changes by: kn@cvs.openbsd.org 2023/04/03 04:51:57 Modified files: . : arm64.html Log message: no more pine64 firmware on install media CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/03 04:52:31 Modified files: x11/kde-plasma : Makefile.inc x11/kde-plasma/breeze: distinfo x11/kde-plasma/breeze-grub: distinfo x11/kde-plasma/breeze-gtk: distinfo x11/kde-plasma/kdecoration: distinfo x11/kde-plasma/oxygen: distinfo Log message: Update KDE Plasma to 5.27.3 CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/03 04:55:20 Modified files: devel/jenkins/devel: Makefile distinfo devel/jenkins/stable: Makefile distinfo Log message: Update Jenkins -stable and -devel to the latest upstream versions CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/03 05:47:18 Modified files: www/tomcat/v8 : Makefile distinfo www/tomcat/v8/pkg: PLIST-examples Log message: update to tomcat-8.5.87, including regression fix for a change that was made in the recent release which also included a security update CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/03 05:47:30 Modified files: www/tomcat/v9 : Makefile distinfo www/tomcat/v9/pkg: PLIST-examples Log message: update to tomcat-9.0.73, including regression fix for a change that was made in the recent release which also included a security update CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/03 05:47:31 Modified files: www/tomcat/v10 : Makefile distinfo www/tomcat/v10/pkg: PLIST-examples Log message: update to tomcat-10.1.7, including regression fix for a change that was made in the recent release which also included a security update CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/03 05:48:19 Modified files: www/tomcat/v8 : Tag: OPENBSD_7_2 Makefile distinfo www/tomcat/v8/pkg: Tag: OPENBSD_7_2 PLIST-examples Log message: update to tomcat-8.5.87, including regression fix for a change that was made in the recent release which also included a security update CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/03 05:48:26 Modified files: www/tomcat/v9 : Tag: OPENBSD_7_2 Makefile distinfo www/tomcat/v9/pkg: Tag: OPENBSD_7_2 PLIST-examples Log message: update to tomcat-9.0.73, including regression fix for a change that was made in the recent release which also included a security update CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/03 05:48:34 Modified files: www/tomcat/v10 : Tag: OPENBSD_7_2 Makefile distinfo www/tomcat/v10/pkg: Tag: OPENBSD_7_2 PLIST-examples Log message: update to tomcat-10.1.7, including regression fix for a change that was made in the recent release which also included a security update CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/04/03 05:57:50 Modified files: sys/kern : kern_sig.c Log message: Reduce indent in single_thread_check_locked() by inverting initial if () check which just returns. OK mpi@ CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/03 06:19:12 Modified files: productivity/homebank: Makefile distinfo productivity/homebank/pkg: PLIST Log message: Update homebank to 5.6.3 CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/03 06:49:01 Modified files: multimedia/mkvtoolnix: Makefile distinfo Log message: Update mkvtoolnix to 75.0.0 CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/03 07:03:12 Modified files: graphics/digikam: Makefile distinfo graphics/digikam/patches: patch-core_libs_rawengine_libraw_src_decoders_fp_dng_cpp graphics/digikam/pkg: PLIST Log message: Update digikam to 7.10.0 CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/03 07:18:55 Modified files: devel/kdiff3 : Makefile distinfo Log message: Update kdiff3 to 1.10.1 CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2023/04/03 07:38:18 Modified files: sys/dev/acpi : acpibtn.c Log message: acpibtn_notify: ignore duplicate ACPI lid transitions A Dell Precision 5510 produces two _LID events when the lid is closed. This results in acpibtn_notify() adding two sleep tasks. The laptop suspends and resumes successfully, but on resume the second sleep task runs and it goes right back to sleep. Making the lid transition a no-op when the existing value matches new _LID value works around the problem. OK miod@ jcs@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/03 08:55:34 Modified files: sysutils/consolekit: Makefile distinfo Log message: Update to consolekit2-1.2.5. CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/04/03 09:00:21 Modified files: security/c2sp-testvectors: Makefile Log message: c2sp-testvectors: drop an -s that snuck in reported by aja CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2023/04/03 09:52:28 Modified files: net/munin : Makefile distinfo Log message: update to munin-2.0.73 CVSROOT: /cvs Module name: ports Changes by: caspar@cvs.openbsd.org 2023/04/03 11:26:50 Modified files: meta/tor-browser: Makefile www/tor-browser: Makefile.inc www/tor-browser/browser: Makefile distinfo www/tor-browser/browser/patches: patch-browser_app_profile_000-tor-browser_js www/tor-browser/noscript: Makefile distinfo Log message: Tor Browser: update to 12.0.4 OK landry@ CVSROOT: /cvs Module name: ports Changes by: caspar@cvs.openbsd.org 2023/04/03 11:28:23 Modified files: meta/tor-browser: Tag: OPENBSD_7_2 Makefile www/tor-browser: Tag: OPENBSD_7_2 Makefile.inc www/tor-browser/browser: Tag: OPENBSD_7_2 Makefile distinfo www/tor-browser/browser/patches: Tag: OPENBSD_7_2 patch-browser_app_profile_000-tor-browser_js www/tor-browser/noscript: Tag: OPENBSD_7_2 Makefile distinfo Log message: Tor Browser: update to 12.0.4 OK landry@ CVSROOT: /cvs Module name: src Changes by: cheloha@cvs.openbsd.org 2023/04/03 11:40:51 Modified files: sys/kern : kern_clockintr.c Log message: clockintr: clockintr_cpu_init(): isolate struct clockintr_queue setup We will always need to initialize the clockintr_queue struct. However, the hardclock, schedclock, and statclock will not always be a part of that struct. Move the clockintr_establish() calls in clockintr_cpu_init() away from the other initialization steps to make the dependency relationship more obvious. We need to intialize a struct clockintr_queue before we can establish clock interrupts. CVSROOT: /cvs Module name: www Changes by: naddy@cvs.openbsd.org 2023/04/03 12:47:55 Modified files: . : 73.html Log message: 7.3 release: 10191 riscv64 packages CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2023/04/03 12:59:47 Modified files: sys/dev/pci : sti_pci.c Log message: Fix stupid bug in previous. CVSROOT: /cvs Module name: www Changes by: benno@cvs.openbsd.org 2023/04/03 13:08:11 Modified files: . : 73.html Log message: move hostname.if(5) change to the correct section CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/04/03 15:09:40 Modified files: databases/p5-Rose-DB-Object: Makefile distinfo Log message: update p5-Rose-DB-Object to 0.820 from wen heping CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/03 15:32:44 Added files: regress/lib/libcrypto/bn: bn_gcd.c Log message: Add regress coverage for BN_gcd() and BN_gcd_ct() CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/03 15:33:16 Modified files: regress/lib/libcrypto/bn: Makefile Log message: Link bn_gcd test to regress CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/03 15:43:43 Modified files: lib/libcrypto/bn: bn_gcd.c Log message: Compress euclid() a little This function is spread out over way too many lines and has too much repetition. Once this is made a little more compact, it becomes clearer that this is a somewhat obfuscated version of binary gcd (it is not constant time therefore cryptographically unsound. It is not used internally). This will likely go away later. ok jsing CVSROOT: /cvs Module name: www Changes by: benno@cvs.openbsd.org 2023/04/03 15:51:34 Modified files: . : 73.html Log message: last parts of 73 changes. Entries are complete, reordering and cleanup to follow. CVSROOT: /cvs Module name: www Changes by: benno@cvs.openbsd.org 2023/04/03 16:14:15 Modified files: . : 73.html Log message: security improvements: much better descriptions pulled from innovations.html CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2023/04/03 18:22:30 Modified files: . : 73.html Log message: spelling CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/03 18:38:38 Modified files: sys/conf : files sys/dev/fdt : files.fdt share/man/man4 : dwge.4 dwmmc.4 dwdog.4 dwpcie.4 Log message: Synopsis Designware -> Synopsys DesignWare CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2023/04/03 18:48:46 Modified files: . : 73.html Log message: remove misleading azalia entries for matching with device id CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2023/04/03 20:05:17 Modified files: . : 73.html Log message: rewrite incomplete paragraph on TZ with absolute path CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2023/04/03 21:09:41 Modified files: . : 73.html Log message: spelling CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/04 00:21:08 Modified files: www/lighttpd : Makefile distinfo www/lighttpd/pkg: PLIST Removed files: www/lighttpd/patches: patch-doc_CMakeLists_txt patch-src_CMakeLists_txt patch-src_mod_openssl_c Log message: Update lighttpd to 1.4.69 - 1.4.69 - 2023-02-10 * [meson] remove t/test_mod_evasive.c * [doc] remove references to removed modules * [cmake] add doc/CMakeLists.txt to dist tar ball (#3181) * [meson] add meson.build to install man pages (fixes #3181) * [meson] fix typo in sbindir * [core] update ls-hpack * [cmake] remove -I/usr/include/mysql for mysql.h (#3181) * [cmake] add -DWITH_LUA_VERSION= to specify lua ver (#3181) * [cmake] use mysql_config cflags and ldflags (#3181) * [cmake] do not link with fam if inotify or kqueue * [TLS] fix spurious warning trace (fixes #3182) * [multiple] codespell: correct spelling in comments * [multiple] spelling: github action check-spelling * [lemon] upgrade LEMON parser to SQLite maint ver * [build] modify arguments to updated LEMON parser * [core] build configparser.y w/ -Werror workarounds * [lemon] fix -Wpendantic warnings for bad casts * [core] avoid accept4() on ARM unless detected * [cmake] use CMAKE_CURRENT_SOURCE_DIR * [cmake] SERVER_SRC variable * [multiple] quiet some coverity false positives * [cmake] use LIGHTTPD_MODULES_DIR as relative path (fixes #3185) * [core] add missed h2 state transition (fixes #3186) * [core] remove cygwin O_NOFOLLOW workaround * [multiple] clang -Wstrict-prototypes for C2x * [core] reset SIGUSR1 to SIG_DFL before execve() * [mod_webdav] modify OPTIONS response if no db cfg * [mod_webdav] MOD_WEBDAV_BUILD_MINIMAL preproc opt * [core] pass fdn to fdevent_sched_close,_unregister * [core] disable sendfile() on TARGET_OS_IPHONE * [core] iOS does not provide netinet/tcp_fsm.h * [core] move headers to help isolate fdevent layer * [core] avoid select() FD_ISSET repeat on active fds * [core] gw_backend more precise backend env alloc * [core] fdevent_poll_poll avoid potential race * [tests] quickly exit tests/request.t if GET / fail * [tests] adjust outdated opt in tests/lighttpd.conf * [autotools] add mod_evhost to static build list * [autotools] skip modules build if LIGHTTPD_STATIC * [mod_cgi] cygwin supports CGI file I/O redirection * [mod_dirlisting] use fdevent_rename() wrapper * [core] path-info in debug trace may be unset * [core] reset path-info for cgi.local-redir * [autotools] fix typo in -I used --with-pcre2=/path (fixes #3190) * [mod_webdav] send 409 Conflict if PUT miss parent * [core] fix HTTP/2 HEADERS frame parsing bug * [core] remove extra HTTP/2 HEADERS frame len check Update diff from Brad CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/04 00:26:35 Modified files: cad/magic : Makefile distinfo Removed files: cad/magic/patches: patch-database_DBpaint_c patch-drc_DRCtech_c Log message: Update magic to 8.3.365 Update diff from Brad CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/04 01:44:49 Modified files: textproc/py-semver: Makefile Log message: py-semver now needs setuptools_scm CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/04 02:12:24 Modified files: telephony/sngrep: Makefile distinfo telephony/sngrep/patches: patch-src_capture_c Log message: update to sngrep-1.7.0 CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/04/04 02:31:35 Modified files: distrib/arm64/ramdisk: install.md Log message: Make root on softraid installations boot out of the box on Raspberry Pis Various files are put onto a pi's ESP, assuming root disk means boot disk, which is not true for root on softraid(4). Wrap the code in a loop over chunks (if any) or the single disk as before, just like installboot(8) does. OK mbuhl CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/04/04 02:39:40 Modified files: distrib/arm64/ramdisk: install.md Log message: Enable guided disk encryption support on arm64 All board specific quirks inside the installer (and other bugs) relating to root on softraid are fixed, so that install media with the new question just works for plain as well as encrypted installs. Tested on Pinebook Pro, Raspberry Pi 4b, SolidRun CEX7. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/04 02:46:26 Modified files: telephony/asterisk/18: Makefile distinfo Log message: update to asterisk-18.17.1 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/04 02:46:34 Modified files: telephony/asterisk/20: Makefile distinfo Log message: update to asterisk-20.2.1 CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/04 03:06:45 Modified files: multimedia/xine-lib: Makefile distinfo multimedia/xine-lib/patches: patch-configure_ac patch-src_post_Makefile_in patch-src_xine-utils_utils_c Removed files: multimedia/xine-lib/patches: patch-src_combined_ffmpeg_ff_video_decoder_c patch-src_demuxers_asfheader_c patch-src_demuxers_demux_qt_c patch-src_demuxers_demux_smjpeg_c patch-src_dxr3_ffmpeg_encoder_c patch-src_post_visualizations_tdaudioanalyzer_c Log message: Update xine-lib to 1.2.13 xine-lib (1.2.13) 2023-01-25 * Add dav1d 1.0.0 support. * Add user video frame rate limiter. * Add xine_query_stream_info (). * Add user OpenGL2 scale modes. - Add xine timespec tools. * FFmpeg compatibility update. * Update german translation. * Improved DVB subtitle support. * Improved HLS input. * Improved AAC demux. * Fix clang build. * Fix build with libcaca. * Fix fine time display. * Fix .mp4 audio. * Fix wav demuxer. * Work around broken Mesa vdpau drivers. * Fix OpenGL2 deep color display. * Various small fixes. * Optimize OpenGL2 video output. * Optimize audio out. * Optimize OSD. * Small engine optimizations. Update diff from Brad CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/04 03:07:14 ports/multimedia/libheif/patches Update of /cvs/ports/multimedia/libheif/patches In directory cvs.openbsd.org:/tmp/cvs-serv136/patches Log Message: Directory /cvs/ports/multimedia/libheif/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/04 03:08:47 Modified files: multimedia/libheif: Makefile distinfo multimedia/libheif/pkg: PLIST Added files: multimedia/libheif/patches: patch-libheif_CMakeLists_txt Log message: Update libheif to 1.14.2 Update diff from Brad CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2023/04/04 04:12:04 Modified files: sys/netinet : ip_divert.c sys/netinet6 : ip6_divert.c Log message: When sending IP packets to userland with divert-packet rules, the checksum may be wrong. Locally generated packets diverted by pf out rules may have no checksum due to to hardware offloading. Calculate the checksum in that case. OK mvs@ sashan@ CVSROOT: /cvs Module name: www Changes by: kn@cvs.openbsd.org 2023/04/04 04:21:05 Modified files: . : 73.html Log message: zap duplicate change CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2023/04/04 04:26:27 Modified files: . : 73.html Log message: mention new icc(4) driver for I2C Consumer Control devices CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/04 04:27:57 Modified files: devel/dune : Makefile distinfo devel/dune/pkg : PFRAG.native PFRAG.native-configurator PLIST-configurator PLIST-main Added files: devel/dune/patches: patch-Makefile Removed files: devel/dune/patches: patch-src_dune_cram_exec_ml devel/dune/pkg : DESCR-private PFRAG.dynlink-native PFRAG.dynlink-native-private PFRAG.native-private PLIST-private Log message: update to dune-3.6.2, from Volker Schlecht, ok chrisz@ (the following few commits will fix dependent ports) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/04 04:28:14 Modified files: devel/ocaml-menhir: Makefile distinfo devel/ocaml-menhir/pkg: PFRAG.dynlink-native PFRAG.native PLIST Log message: update to ocaml-menhir-20211012, from Volker Schlecht CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/04 04:29:03 Modified files: devel/ocaml-cppo: Makefile devel/ocaml-pcre: Makefile devel/ocaml-pcre/pkg: PLIST devel/ocaml-yojson: Makefile devel/ocaml-yojson/pkg: PLIST graphics/ocaml-cairo: Makefile graphics/ocaml-cairo/pkg: PLIST graphics/ocaml-graphics: Makefile graphics/ocaml-graphics/pkg: PLIST x11/lablgtk3 : Makefile x11/lablgtk3/pkg: PLIST Log message: post-install changes to adapt to devel/dune update, from Volker Schlecht CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2023/04/04 05:33:56 Modified files: . : 73.html Log message: mention getthrname(2) setthrname(2) pinsyscall(2) use Nd text for waitid(2) CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2023/04/04 05:43:11 Modified files: . : 73.html Log message: don't refer to clockintr(9) as an interrupt controller, use Nd text CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/04 06:22:06 Modified files: sysutils/borgmatic: Makefile distinfo Log message: update to borgmatic-1.7.11 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/04 06:22:07 Modified files: net/nagios/check_postgres: Makefile distinfo net/nagios/check_postgres/patches: patch-check_postgres_pl net/nagios/check_postgres/pkg: PLIST Log message: update to check_postgres-2.26.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/04 06:22:16 Modified files: databases/freetds: Makefile distinfo Log message: update to freetds-1.3.18 CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/04 09:32:02 Modified files: regress/lib/libcrypto/bn: bn_mod_sqrt.c Log message: Clean bn_mod_sqrt up a little This makes it look a bit more like other tests and also prepares the addition of further test cases and different tests. CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2023/04/04 09:33:24 Modified files: multimedia/libmediainfo: Makefile distinfo multimedia/mediainfo: Makefile distinfo Added files: multimedia/libmediainfo/patches: patch-Source_MediaInfo_Audio_File_Usac_cpp patch-Source_MediaInfo_Audio_File_Usac_h Log message: mediainfo: maintenance update to 23.03 CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/04/04 10:01:54 Modified files: usr.sbin/bgpd : parse.y Log message: Cleanup parse.y a bit. Move global defines a bit down. Move mrtdump and network rules up into the grammar and switch the order of restricted to be more like the rest. OK tb@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2023/04/04 11:10:37 Modified files: lib/libcrypto/man: BIO_ctrl.3 Log message: In preparation for better documenting BIO info callbacks, improve the description of BIO_ctrl(3) and its three siblings. Given the vast range of effects these functions can have, the text is unavoidably still vague, but at least some information can be provided. While here, fix one wrong parameter type and three inconsistent parameter names in the SYNOPSIS. CVSROOT: /cvs Module name: www Changes by: anton@cvs.openbsd.org 2023/04/04 12:06:30 Modified files: . : 73.html Log message: mention more uhidpp changes CVSROOT: /cvs Module name: src Changes by: anton@cvs.openbsd.org 2023/04/04 12:14:32 Modified files: lib/libcrypto : x86_64cpuid.pl Log message: A refactoring back in 2016 in which magic numbers where extracted into named constants accidentally dropped an instruction causing detection of eXtended operations (XOP) on AMD hardware to break. ok miod@ tb@ CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2023/04/04 13:03:21 Modified files: mail/extsmail : Makefile distinfo Log message: mail/extsmail: easy update to version 2.8. Diff sent from upstream author, Laurence Tratt, thanks! CVSROOT: /cvs Module name: ports Changes by: edd@cvs.openbsd.org 2023/04/04 13:16:08 Modified files: devel/snare : Makefile distinfo Log message: devel/snare: easy update to version 0.4.8. From upstream author Laurence Tratt, thanks! CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2023/04/04 15:18:04 Modified files: usr.sbin/arp : arp.c usr.sbin/ndp : ndp.c Log message: Remove stylistic differences between arp(8) and ndp(8) delete() function. This makes it easier to spot real changes in behavior. OK kn@ CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/04/04 15:43:06 Modified files: sbin/fdisk : part.c Log message: Adopt a more compact idiom when initializing gpt_types[]. Group entries with attributes together. No intentional functional change. CVSROOT: /cvs Module name: src Changes by: cheloha@cvs.openbsd.org 2023/04/04 15:49:10 Modified files: sys/kern : kern_clockintr.c Log message: clockintr: add clockintr_cancel_locked() Move the CLST_PENDING check and TAILQ_REMOVE() in clockintr_schedule_locked() into a dedicated function, clockintr_cancel_locked(). clockintr_schedule_locked() no longer implicitly cancels a pending clockintr: it is the caller's responsibility to check for CLST_PENDING and cancel any pending expiration before calling clockintr_schedule_locked(). We can skip the CLST_PENDING check during the dispatch loop because we know for certain the clockintr in question is pending. This is more verbose but I think it is less surprising. Both functions do one thing. CVSROOT: /cvs Module name: www Changes by: tj@cvs.openbsd.org 2023/04/04 17:37:32 Modified files: . : 73.html Log message: add missing tag and fix a typo CVSROOT: /cvs Module name: src Changes by: cheloha@cvs.openbsd.org 2023/04/04 18:23:06 Modified files: sys/kern : kern_clockintr.c Log message: clockintr: add clockintr_cancel() As the name suggests, clockintr_cancel() cancels any pending expiration of the given clockintr. I think we will need this in the near future. CVSROOT: /cvs Module name: src Changes by: otto@cvs.openbsd.org 2023/04/05 00:25:38 Modified files: lib/libc/stdlib: malloc.c Log message: Introduce variation in location of junked bytes; ok tb@ CVSROOT: /cvs Module name: ports Changes by: benoit@cvs.openbsd.org 2023/04/05 00:45:54 Modified files: security/cracklib: Makefile distinfo Log message: Update to cracklib-2.9.11. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/05 01:17:44 Modified files: regress/lib/libcrypto/bn: bn_mod_sqrt.c Log message: Add coverage for the truly non-deterministic path of Tonelli-Shanks Regress coverage of all of BN_mod_sqrt() is still lacking after this. This will improve in forthcoming commits. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/05 01:52:25 Modified files: regress/lib/libcrypto/bn: bn_mod_sqrt.c Log message: bn_mod_sqrt test: Use a #define rather than hard coded 100 CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/04/05 02:04:28 Modified files: usr.sbin/bgpd : parse.y Log message: Rename family with af to follow pfctl/parse.y a bit more. OK tb@ CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/04/05 02:37:21 Modified files: usr.sbin/bgpd : parse.y Log message: Refactor port definitions to also support service names like bgp. OK tb@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/05 02:43:31 Modified files: regress/lib/libcrypto/bn: bn_mod_sqrt.c Log message: Simplify mod_sqrt_test() a bit CVSROOT: /cvs Module name: www Changes by: stsp@cvs.openbsd.org 2023/04/05 03:41:51 Modified files: . : 73.html Log message: remove iwx details that were part of the -77 fw upgrade; mention new iwm fw CVSROOT: /cvs Module name: src Changes by: edd@cvs.openbsd.org 2023/04/05 03:46:27 Modified files: share/man/man5 : bsd.port.mk.5 Log message: bsd.port.mk: Fix documentation on PATCHORIG. The default recently changed to `.orig.port`. OK sthen@, tb@, op@, thanks! CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/05 04:34:36 Modified files: distrib/sets/lists/man: mi Log message: sync CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/04/05 04:40:37 Modified files: sys/netinet6 : nd6.c Log message: Call getuptime(9) once for consistency, sync with ARP Feedback OK bluhm CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/05 04:45:07 Modified files: sys/dev/mii : miivar.h rgephy.c rgephyreg.h Log message: Implement software control for the internal delays of the RTL8211F PHY. Since we need to retain the hardware/firmware configuration of the delays in most existing hardware that uses rgephy(4) (such as PCIe NICs), add a bew MIIF_SETDELAY flag that controls the software configuration of the delays. ok dlg@, jsg@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/05 04:47:00 Modified files: regress/lib/libcrypto/bn: bn_mod_sqrt.c Log message: Improve regress coverage for BN_mod_sqrt() This now covers all the main branches of both the old and new BN_mod_sqrt() implementation except for negative p. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/05 04:48:13 Modified files: sys/dev/fdt : dwpcie.c Log message: Call dwpcie_link_config() when initializing the RK3568 PCIe controllers. This makes sure the PCIe link runs at the maximum possible speed. Prompted by a diff from dlg@, who also tested this alternative diff. ok dlg@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/05 05:03:11 Modified files: regress/lib/libcrypto/bn: bn_mod_sqrt.c Log message: bn_mod_sqrt: Improve a handful of comments and a printf CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/05 05:07:40 Modified files: lib/libcrypto/arch/aarch64: Makefile.inc arm64cpuid.S Log message: Sprinkle a few BTI instructions into the arm64 assembly files and pass -mmark-bti-property to indicate those now have BTI support. ok jsing@, deraadt@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/05 05:30:12 Modified files: lib/libcrypto/rsa: rsa_eay.c Log message: Set up the RSA's _method_mod_n before the initial blinding As observed by Bernd Edlinger, the main part of the RSA timing leak that was recently made public is that the initial blinding isn't done with Montgomery exponentiation but rather with plain exponentiation. Pull up the initialization of the cached Montgomery context to ensure we use Montgomery exponentiation. Do this for private_{de,en}crypt(). Interestingly, the latter was fixed in OpenSSL a while ago by Andy Polyakov as part of the "smooth CRT-RSA" addition. If this code was anything but completely insane this would never have been an issue in the first place. But it's libcrypto... ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/05 05:31:38 Modified files: lib/libcrypto/rsa: rsa_eay.c Log message: Add a few missing braces ok jsing CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/05 05:52:39 Modified files: lang/cython : Makefile distinfo lang/cython/pkg: PLIST Log message: update to cython-0.29.34 CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/05 06:40:30 Modified files: x11/kde-plasma : Makefile.inc x11/kde-plasma/breeze: distinfo x11/kde-plasma/breeze-grub: distinfo x11/kde-plasma/breeze-gtk: distinfo x11/kde-plasma/kdecoration: distinfo x11/kde-plasma/oxygen: distinfo Log message: Update KDE Plamsa to 5.27.4 CVSROOT: /cvs Module name: ports Changes by: bket@cvs.openbsd.org 2023/04/05 07:16:48 Modified files: archivers/zstd : Makefile distinfo Removed files: archivers/zstd/patches: patch-programs_fileio_c Log message: Update to zstd-1.5.5 This release corrects a corruption bug in high compression mode. More information can be found at https://github.com/facebook/zstd/pull/3517. Overview on other changes can be found at https://github.com/facebook/zstd/releases/tag/v1.5.5. Minor of SHLIB has been bumped because of addition of new symbols. CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/04/05 07:20:17 Modified files: security/qdigidoc4: Makefile distinfo Log message: config.json rerolled, spotted by rsadowski CVSROOT: /cvs Module name: ports Changes by: bket@cvs.openbsd.org 2023/04/05 07:25:04 Modified files: archivers/zstd : Tag: OPENBSD_7_2 Makefile distinfo archivers/zstd/patches: Tag: OPENBSD_7_2 patch-lib_libzstd_mk Log message: Update to zstd-1.5.5 This release corrects a corruption bug in high compression mode. More information can be found at https://github.com/facebook/zstd/pull/3517. Overview on other changes can be found at https://github.com/facebook/zstd/releases/tag/v1.5.5. Minor of SHLIB has been bumped because of addition of new symbols. CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/04/05 07:56:31 Modified files: sys/netinet6 : ip6_forward.c Log message: Call getuptime(9) once for consistency; OK bluhm CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2023/04/05 07:56:41 Modified files: usr.sbin/ndp : ndp.c Log message: If ndp -d did not find a neigbor entry, it removed the cloning route instead. Comparing the arp(8) and ndp(8) code shows that the latter has a fallthrough to delete. Return an error also in this case. OK kn@ CVSROOT: /cvs Module name: www Changes by: dv@cvs.openbsd.org 2023/04/05 08:03:42 Modified files: papers : asiabsdcon2023-hardening_vmd_devices-slides.pdf Log message: Replace my slides with compressed version. 32MB was ridiculous. CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/04/05 08:07:08 Modified files: sbin/fdisk : part.c Log message: Add (inside #if 0 blocks) #define's and gpt_types[] entries for all the GPT partition types known to mankind. a.k.a. Wikipedia, Linux, and various BSD's. Makes it easier to discuss/add/remove/check GUID's known to fdisk(8). No functional change. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/05 09:35:01 Modified files: security/py-miasm: Makefile security/py-miasm/pkg: PLIST Log message: py-miasm: force a version number to be used which is valid as far as setuptools is concerned; the mechanism which miasm uses to generate a version based on the git hash generates an invalid ver which is rejected by newer setuptools. CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2023/04/05 10:10:39 Modified files: www/chromium : Makefile distinfo www/chromium/patches: patch-BUILD_gn patch-base_BUILD_gn patch-base_allocator_partition_allocator_page_allocator_internals_posix_h patch-base_allocator_partition_allocator_partition_address_space_cc patch-base_allocator_partition_allocator_partition_alloc_config_h patch-base_allocator_partition_allocator_partition_alloc_constants_h patch-base_allocator_partition_allocator_partition_alloc_gni patch-base_allocator_partition_allocator_partition_page_h patch-base_allocator_partition_allocator_partition_root_cc patch-base_allocator_partition_allocator_starscan_stack_stack_cc patch-base_atomicops_h patch-base_debug_stack_trace_posix_cc patch-base_process_kill_posix_cc patch-base_process_process_iterator_freebsd_cc patch-base_process_process_iterator_openbsd_cc patch-base_process_process_posix_cc patch-base_profiler_module_cache_cc patch-base_synchronization_lock_impl_h patch-base_threading_platform_thread_posix_cc patch-build_config_compiler_BUILD_gn patch-build_config_rust_gni patch-build_toolchain_gcc_toolchain_gni patch-cc_BUILD_gn patch-chrome_app_chrome_main_cc patch-chrome_app_chrome_main_delegate_cc patch-chrome_app_generated_resources_grd patch-chrome_app_settings_strings_grdp patch-chrome_app_theme_chrome_unscaled_resources_grd patch-chrome_browser_about_flags_cc patch-chrome_browser_chrome_browser_interface_binders_cc patch-chrome_browser_chrome_browser_main_cc patch-chrome_browser_chrome_content_browser_client_cc patch-chrome_browser_devtools_devtools_eye_dropper_cc patch-chrome_browser_download_chrome_download_manager_delegate_cc patch-chrome_browser_download_download_commands_cc patch-chrome_browser_download_download_item_model_cc patch-chrome_browser_download_download_prefs_cc patch-chrome_browser_download_download_prefs_h patch-chrome_browser_enterprise_connectors_connectors_service_cc patch-chrome_browser_enterprise_connectors_device_trust_device_trust_service_factory_cc patch-chrome_browser_enterprise_connectors_device_trust_signals_signals_service_factory_cc patch-chrome_browser_enterprise_connectors_reporting_browser_crash_event_router_cc patch-chrome_browser_extensions_BUILD_gn patch-chrome_browser_extensions_api_api_browser_context_keyed_service_factories_cc patch-chrome_browser_extensions_api_enterprise_reporting_private_enterprise_reporting_private_api_cc patch-chrome_browser_extensions_api_passwords_private_passwords_private_delegate_impl_cc patch-chrome_browser_extensions_api_settings_private_prefs_util_cc patch-chrome_browser_file_system_access_chrome_file_system_access_permission_context_cc patch-chrome_browser_flag_descriptions_cc patch-chrome_browser_flag_descriptions_h patch-chrome_browser_headless_headless_mode_util_cc patch-chrome_browser_media_webrtc_webrtc_log_uploader_cc patch-chrome_browser_metrics_chrome_browser_main_extra_parts_metrics_cc patch-chrome_browser_metrics_chrome_metrics_service_client_cc patch-chrome_browser_net_system_network_context_manager_cc patch-chrome_browser_new_tab_page_modules_drive_drive_service_cc patch-chrome_browser_policy_configuration_policy_handler_list_factory_cc patch-chrome_browser_prefs_browser_prefs_cc patch-chrome_browser_prefs_pref_service_incognito_allowlist_cc patch-chrome_browser_printing_print_backend_service_manager_cc patch-chrome_browser_profiles_chrome_browser_main_extra_parts_profiles_cc patch-chrome_browser_profiles_profile_impl_cc patch-chrome_browser_renderer_preferences_util_cc patch-chrome_browser_resources_settings_route_ts patch-chrome_browser_safe_browsing_download_protection_file_analyzer_cc patch-chrome_browser_safe_browsing_download_protection_file_analyzer_h patch-chrome_browser_sync_chrome_sync_client_cc patch-chrome_browser_sync_sync_service_factory_cc patch-chrome_browser_ui_browser_command_controller_cc patch-chrome_browser_ui_browser_h patch-chrome_browser_ui_chrome_pages_cc patch-chrome_browser_ui_chrome_pages_h patch-chrome_browser_ui_sharing_hub_sharing_hub_bubble_controller_h patch-chrome_browser_ui_startup_startup_browser_creator_cc patch-chrome_browser_ui_tab_helpers_cc patch-chrome_browser_ui_views_frame_browser_frame_cc patch-chrome_browser_ui_views_frame_browser_frame_h patch-chrome_browser_ui_views_frame_browser_view_cc patch-chrome_browser_ui_views_frame_opaque_browser_frame_view_cc patch-chrome_browser_ui_views_frame_opaque_browser_frame_view_h patch-chrome_browser_ui_views_frame_picture_in_picture_browser_frame_view_cc patch-chrome_browser_ui_views_frame_picture_in_picture_browser_frame_view_h patch-chrome_browser_ui_views_tabs_tab_drag_controller_cc patch-chrome_browser_ui_views_tabs_tab_hover_card_controller_cc patch-chrome_browser_ui_views_web_apps_web_app_integration_test_driver_cc patch-chrome_browser_ui_webui_about_ui_cc patch-chrome_browser_ui_webui_app_home_app_home_page_handler_cc patch-chrome_browser_ui_webui_chrome_web_ui_controller_factory_cc patch-chrome_browser_ui_webui_settings_settings_localized_strings_provider_cc patch-chrome_browser_web_applications_commands_install_app_locally_command_cc patch-chrome_browser_web_applications_os_integration_os_integration_test_override_cc patch-chrome_browser_web_applications_os_integration_os_integration_test_override_h patch-chrome_browser_web_applications_os_integration_shortcut_sub_manager_cc patch-chrome_browser_web_applications_os_integration_web_app_shortcut_cc patch-chrome_browser_web_applications_os_integration_web_app_shortcut_h patch-chrome_browser_web_applications_os_integration_web_app_shortcut_manager_cc patch-chrome_browser_webauthn_chrome_authenticator_request_delegate_cc patch-chrome_common_chrome_features_cc patch-chrome_common_chrome_features_h patch-chrome_common_chrome_switches_cc patch-chrome_common_chrome_switches_h patch-chrome_common_pref_names_cc patch-chrome_common_pref_names_h patch-chrome_common_webui_url_constants_cc patch-chrome_common_webui_url_constants_h patch-chrome_services_file_util_public_mojom_safe_document_analyzer_mojom_traits_h patch-chrome_services_printing_print_backend_service_impl_cc patch-chrome_test_BUILD_gn patch-components_autofill_core_browser_personal_data_manager_cc patch-components_autofill_core_common_autofill_payments_features_cc patch-components_autofill_core_common_autofill_util_cc patch-components_feature_engagement_public_feature_configurations_cc patch-components_feature_engagement_public_feature_constants_cc patch-components_feature_engagement_public_feature_constants_h patch-components_feature_engagement_public_feature_list_cc patch-components_feature_engagement_public_feature_list_h patch-components_feed_core_v2_proto_util_unittest_cc patch-components_network_session_configurator_browser_network_session_configurator_cc patch-components_network_session_configurator_browser_network_session_configurator_unittest_cc patch-components_password_manager_core_browser_login_database_cc patch-components_password_manager_core_common_password_manager_features_cc patch-components_password_manager_core_common_password_manager_features_h patch-components_policy_core_common_cloud_cloud_policy_client_cc patch-components_services_screen_ai_sandbox_screen_ai_sandbox_hook_linux_cc patch-components_translate_core_common_translate_util_cc patch-components_url_formatter_spoof_checks_idn_spoof_checker_cc patch-content_app_content_main_runner_impl_cc patch-content_browser_BUILD_gn patch-content_browser_audio_audio_service_cc patch-content_browser_gpu_gpu_process_host_cc patch-content_browser_renderer_host_render_process_host_impl_cc patch-content_browser_renderer_host_render_widget_host_view_aura_cc patch-content_common_BUILD_gn patch-content_common_user_agent_cc patch-content_gpu_gpu_main_cc patch-content_gpu_gpu_sandbox_hook_linux_cc patch-content_public_common_content_features_cc patch-content_public_common_content_features_h patch-content_public_common_content_switches_cc patch-content_public_common_content_switches_h patch-content_public_common_zygote_features_gni patch-content_renderer_render_thread_impl_cc patch-content_renderer_renderer_blink_platform_impl_cc patch-content_renderer_renderer_blink_platform_impl_h patch-content_shell_BUILD_gn patch-content_shell_app_shell_main_delegate_cc patch-content_shell_browser_shell_browser_main_parts_cc patch-content_test_BUILD_gn patch-content_utility_services_cc patch-extensions_browser_api_api_browser_context_keyed_service_factories_cc patch-extensions_browser_api_messaging_message_service_cc patch-extensions_browser_api_networking_private_networking_private_delegate_factory_cc patch-extensions_browser_extension_prefs_cc patch-extensions_browser_pref_names_cc patch-extensions_browser_pref_names_h patch-extensions_shell_browser_api_runtime_shell_runtime_api_delegate_cc patch-gpu_command_buffer_common_gpu_memory_buffer_support_cc patch-gpu_command_buffer_service_shared_image_angle_vulkan_image_backing_factory_cc patch-gpu_command_buffer_service_shared_image_external_vk_image_backing_cc patch-gpu_command_buffer_service_shared_image_external_vk_image_backing_factory_cc patch-gpu_command_buffer_service_shared_image_shared_image_manager_cc patch-gpu_command_buffer_service_shared_image_wrapped_sk_image_backing_cc patch-gpu_command_buffer_service_webgpu_decoder_impl_cc patch-gpu_command_buffer_tests_gl_gpu_memory_buffer_unittest_cc patch-gpu_config_gpu_finch_features_cc patch-gpu_ipc_service_gpu_init_cc patch-headless_lib_headless_content_main_delegate_cc patch-media_BUILD_gn patch-media_audio_BUILD_gn patch-media_base_audio_latency_cc patch-media_base_media_switches_cc patch-media_base_media_switches_h patch-media_base_video_frame_cc patch-media_base_video_frame_h patch-media_capture_video_fake_video_capture_device_factory_cc patch-media_capture_video_linux_fake_v4l2_impl_cc patch-media_capture_video_linux_v4l2_capture_delegate_cc patch-media_capture_video_linux_v4l2_capture_delegate_h patch-media_capture_video_video_capture_device_client_cc patch-media_gpu_chromeos_video_decoder_pipeline_cc patch-media_gpu_vaapi_vaapi_video_decoder_cc patch-media_media_options_gni patch-media_mojo_mojom_stable_stable_video_decoder_types_mojom_traits_cc patch-media_video_video_encode_accelerator_adapter_cc patch-mojo_public_tools_bindings_mojom_gni patch-net_BUILD_gn patch-net_cert_cert_verify_proc_cc patch-net_cert_cert_verify_proc_h patch-net_dns_dns_reloader_cc patch-net_socket_tcp_socket_posix_cc patch-net_socket_udp_socket_posix_cc patch-net_socket_udp_socket_unittest_cc patch-printing_mojom_printing_context_mojom_traits_cc patch-printing_print_settings_cc patch-printing_print_settings_conversion_cc patch-printing_print_settings_h patch-printing_printing_context_linux_cc patch-remoting_host_desktop_capturer_proxy_cc patch-remoting_host_heartbeat_sender_cc patch-remoting_host_remote_open_url_remote_open_url_util_cc patch-remoting_protocol_webrtc_video_stream_cc patch-sandbox_policy_BUILD_gn patch-services_cert_verifier_cert_verifier_creation_cc patch-services_device_hid_hid_connection_freebsd_cc patch-services_device_hid_hid_service_freebsd_cc patch-services_device_public_mojom_BUILD_gn patch-services_device_time_zone_monitor_time_zone_monitor_linux_cc patch-services_network_BUILD_gn patch-services_network_network_service_cc patch-services_resource_coordinator_public_cpp_memory_instrumentation_BUILD_gn patch-third_party_angle_BUILD_gn patch-third_party_angle_src_libANGLE_Display_cpp patch-third_party_angle_src_libANGLE_formatutils_cpp patch-third_party_blink_public_platform_platform_h patch-third_party_blink_renderer_controller_blink_initializer_cc patch-third_party_blink_renderer_core_editing_editing_behavior_cc patch-third_party_blink_renderer_core_execution_context_navigator_base_cc patch-third_party_blink_renderer_core_exported_web_view_impl_cc patch-third_party_blink_renderer_core_frame_web_frame_test_cc patch-third_party_blink_renderer_core_layout_layout_view_cc patch-third_party_blink_renderer_modules_ml_webnn_features_gni patch-third_party_blink_renderer_modules_ml_webnn_ml_graph_xnnpack_cc patch-third_party_blink_renderer_modules_peerconnection_webrtc_audio_renderer_test_cc patch-third_party_blink_renderer_modules_webgl_webgl_webcodecs_video_frame_cc patch-third_party_blink_renderer_modules_webgpu_gpu_queue_cc patch-third_party_blink_renderer_platform_BUILD_gn patch-third_party_blink_renderer_platform_fonts_font_cache_cc patch-third_party_blink_renderer_platform_graphics_begin_frame_provider_cc patch-third_party_blink_renderer_platform_graphics_video_frame_submitter_cc patch-third_party_blink_renderer_platform_runtime_enabled_features_json5 patch-third_party_boringssl_BUILD_generated_gni patch-third_party_boringssl_src_crypto_fipsmodule_aes_asm_aesni-x86_64_pl patch-third_party_boringssl_src_crypto_fipsmodule_modes_asm_aesni-gcm-x86_64_pl patch-third_party_boringssl_src_crypto_fipsmodule_modes_asm_ghash-ssse3-x86_64_pl patch-third_party_boringssl_src_crypto_fipsmodule_modes_asm_ghash-x86_64_pl patch-third_party_boringssl_src_include_openssl_base_h patch-third_party_boringssl_src_util_generate_build_files_py patch-third_party_crashpad_crashpad_client_BUILD_gn patch-third_party_dawn_src_dawn_common_Platform_h patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_arm64_config_components_h patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_arm64_config_h patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_ia32_config_asm patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_ia32_config_components_h patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_ia32_config_h patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_x64_config_asm patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_x64_config_components_h patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_x64_config_h patch-third_party_fontconfig_include_config_h patch-third_party_fontconfig_src_src_fccompat_c patch-third_party_leveldatabase_env_chromium_cc patch-third_party_maldoca_BUILD_gn patch-third_party_perfetto_src_base_periodic_task_cc patch-third_party_perfetto_src_tracing_core_tracing_service_impl_cc patch-third_party_sqlite_src_amalgamation_sqlite3_c patch-third_party_test_fonts_fontconfig_generate_fontconfig_caches_cc patch-tools_json_schema_compiler_feature_compiler_py patch-ui_color_color_id_h patch-ui_compositor_compositor_cc patch-ui_compositor_compositor_h patch-ui_gfx_BUILD_gn patch-ui_gfx_gpu_memory_buffer_cc patch-ui_gfx_gpu_memory_buffer_h patch-ui_gfx_switches_h patch-ui_gl_BUILD_gn patch-ui_gl_gl_bindings_h patch-ui_gl_gl_context_cc patch-ui_gl_gl_implementation_cc patch-ui_gl_gl_switches_cc patch-ui_ozone_platform_wayland_host_wayland_toplevel_window_cc patch-ui_ozone_platform_wayland_host_xdg_toplevel_wrapper_impl_cc patch-ui_ozone_platform_wayland_ozone_platform_wayland_cc patch-ui_platform_window_platform_window_delegate_cc patch-ui_platform_window_platform_window_delegate_h patch-ui_views_controls_textfield_textfield_cc patch-ui_views_widget_desktop_aura_desktop_window_tree_host_platform_cc patch-ui_views_widget_widget_cc patch-v8_BUILD_gn patch-v8_include_v8-internal_h patch-v8_include_v8config_h patch-v8_src_api_api_cc patch-v8_src_execution_isolate_cc patch-v8_src_wasm_baseline_ia32_liftoff-assembler-ia32_h Added files: www/chromium/patches: patch-chrome_browser_enterprise_connectors_connectors_prefs_cc patch-chrome_browser_enterprise_connectors_reporting_crash_reporting_context_cc patch-chrome_browser_enterprise_connectors_reporting_crash_reporting_context_h patch-chrome_browser_extensions_api_tabs_tabs_api_cc patch-chrome_browser_metrics_chrome_browser_main_extra_parts_metrics_h patch-chrome_browser_net_system_network_context_manager_h patch-gpu_command_buffer_service_gles2_cmd_decoder_cc patch-headless_lib_browser_headless_browser_main_parts_posix_cc patch-media_capture_video_linux_video_capture_device_factory_v4l2_cc patch-media_capture_video_linux_video_capture_device_factory_v4l2_h patch-printing_backend_cups_helper_cc patch-printing_backend_cups_ipp_helper_cc patch-remoting_host_desktop_and_cursor_conditional_composer_cc patch-remoting_host_desktop_capturer_wrapper_cc patch-third_party_perfetto_include_perfetto_tracing_track_event_legacy_h Removed files: www/chromium/patches: patch-chrome_browser_enterprise_connectors_reporting_browser_crash_event_router_h patch-chrome_browser_web_applications_web_app_provider_cc patch-content_renderer_media_render_media_client_cc patch-gpu_command_buffer_tests_gl_oes_egl_image_unittest_cc patch-gpu_command_buffer_tests_gl_test_utils_cc patch-gpu_command_buffer_tests_gl_test_utils_h patch-headless_lib_browser_headless_browser_main_parts_h patch-headless_lib_browser_headless_browser_main_parts_linux_cc patch-media_base_supported_types_cc patch-media_capture_video_linux_video_capture_device_factory_linux_cc patch-media_capture_video_linux_video_capture_device_factory_linux_h patch-net_dns_dns_reloader_h patch-net_dns_host_resolver_system_task_cc patch-third_party_angle_src_common_vulkan_BUILD_gn patch-third_party_angle_src_third_party_volk_BUILD_gn Log message: update to 112.0.5615.49 CVSROOT: /cvs Module name: ports Changes by: pvk@cvs.openbsd.org 2023/04/05 10:50:33 Log message: Import py-cfgv, configuration validator (devel/pre-commit dependency) Status: Vendor Tag: pvk Release Tags: pvk_20230405 N ports/devel/py-cfgv/Makefile N ports/devel/py-cfgv/distinfo N ports/devel/py-cfgv/pkg/DESCR N ports/devel/py-cfgv/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: pvk@cvs.openbsd.org 2023/04/05 10:50:49 Log message: Import py-identify, file identification library (devel/pre-commit dependency) Status: Vendor Tag: pvk Release Tags: pvk_20230405 N ports/devel/py-identify/Makefile N ports/devel/py-identify/distinfo N ports/devel/py-identify/pkg/DESCR N ports/devel/py-identify/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: pvk@cvs.openbsd.org 2023/04/05 10:51:09 Log message: Import pre-commit, framework for managing git pre-commit hooks Status: Vendor Tag: pvk Release Tags: pvk_20230405 N ports/devel/pre-commit/Makefile N ports/devel/pre-commit/distinfo N ports/devel/pre-commit/pkg/DESCR N ports/devel/pre-commit/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: pvk@cvs.openbsd.org 2023/04/05 10:51:33 Modified files: devel : Makefile Log message: +pre-commit +py-cfgv +py-identify CVSROOT: /cvs Module name: ports Changes by: pvk@cvs.openbsd.org 2023/04/05 10:53:07 Log message: Import tflint, a pluggable Terraform linter Status: Vendor Tag: pvk Release Tags: pvk_20230405 N ports/sysutils/tflint/Makefile N ports/sysutils/tflint/distinfo N ports/sysutils/tflint/modules.inc N ports/sysutils/tflint/pkg/DESCR N ports/sysutils/tflint/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: pvk@cvs.openbsd.org 2023/04/05 10:53:28 Modified files: sysutils : Makefile Log message: +tflint CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/04/05 11:15:42 Modified files: security/qdigidoc4: Makefile distinfo Log message: Put date into fetched config files For bulk machines the distfile dir is shared, so some machines will fail on changed file contents/checksums without filename change. Pointed out by sthen CVSROOT: /cvs Module name: src Changes by: mglocker@cvs.openbsd.org 2023/04/05 11:23:30 Modified files: sys/dev/ic : ufshci.c Log message: Enable Force Unit Access (FUA) for write commands. This seems to fix intermittent data corruptions which I faced. The documentation says about FUA for write commands: "The Device Server shall write the logical blocks to the medium, and shall not complete the command with GOOD status until all the logical blocks have been written on the medium without error." CVSROOT: /cvs Module name: www Changes by: rsadowski@cvs.openbsd.org 2023/04/05 12:21:08 Modified files: . : events.html Added files: papers : clt2023-openbsd-packages–erfahrungen-als-maintainer-von-500-apps-en.pdf Log message: Add slides (EN) and video (DE) link for a talk I gave at CLT 2023, titled "OpenBSD Packages – Erfahrungen als Maintainer von 500 Apps". - https://chemnitzer.linux-tage.de/2023/de/programm/beitrag/135 CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2023/04/05 12:34:37 Added files: lib/libevent : event_base_new.3 Log message: Import the first of the new libevent manual pages written by Ted Bullock in order to polish it in the tree. Not yet linked to the build. In particular, this documents the so far undocumented functions event_base_new(3) and event_reinit(3) and provides lots of new information regarding event_init(3) and event_base_free(3). Also using input from nicm@, jmc@, and myself, OK nicm@ jmc@. CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/05 12:51:07 Modified files: devel/jenkins/devel: Makefile distinfo Log message: Update jenkins-devel to 2.398 CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2023/04/05 13:35:23 Modified files: sys/net : if.c if_var.h sys/netinet : if_ether.c sys/netinet6 : nd6.c nd6.h nd6_nbr.c Log message: ARP has a queue of packets that should be sent after name resolution. ND6 did only hold a single packet. Unify the logic and add a mbuf hold queue to struct llinfo_nd6. This is MP safe and queue limits are tracked with atomic operations. New function if_mqoutput() has common code for ARP and ND6. ln_saddr6 holds the source address of the requesting packet. That is easier than fiddling with mbuf queue in nd6_ns_output(). OK kn@ CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/04/05 14:45:09 Modified files: devel/github-cli: Makefile distinfo modules.inc devel/github-cli/pkg: PLIST Log message: update to github-cli 2.26.1 CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/04/05 14:45:28 Modified files: sysutils/gitlab-cli: Makefile distinfo modules.inc Log message: update to gitlab-cli 1.27.0 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/05 15:38:54 Modified files: misc/hwdata : Makefile distinfo Log message: Update to hwdata-0.369. CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2023/04/05 15:51:47 Modified files: sys/netinet : icmp6.h if_ether.c ip_input.c ip_var.h sys/netinet6 : icmp6.c nd6.c nd6.h Log message: ARP has a sysctl to show the number of packets waiting for an arp response. Implement analog sysctl net.inet6.icmp6.nd6_queued for ND6 to reduce places where mbufs can hide within the kernel. Atomic operations operate on unsigned int. Make the type of total hold queue length consistent. Use atomic load to read the value for the sysctl. This clarifies why no lock around sysctl_rdint() is needed. OK mvs@ kn@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/05 16:06:33 Modified files: x11/gnome/grilo-plugins: Makefile distinfo x11/gnome/grilo-plugins/patches: patch-meson_build Log message: Update to grilo-plugins-0.3.16. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/05 16:07:49 Modified files: lang/vala : Makefile distinfo lang/vala/pkg : PLIST-main Log message: Update to vala-0.56.6. CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/04/05 17:01:03 Modified files: sys/net : if_ethersubr.c sys/netinet6 : nd6.c Log message: Push kernel lock into nd6_resolve() Tested as part of bigger unlock diffs, commit now as tiny first step. OK bluhm CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/05 18:09:39 Modified files: sys/dev/fdt : if_dwqe_fdt.c Log message: better handle "phy-mode" properties, in particular around clk delays. the phy mode can encode whether rk3568 mac should be doing the delays when talking to the phy, or whether it should ignore them and let the phy handle them. turns out this will probably be needed by kettenis to get working ethernet on another rk3568 based system. tweaks and ok kettenis@ CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2023/04/05 21:12:32 Modified files: usr.bin/ssh : sftp.c Log message: don't care about glob() return value here. CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2023/04/05 21:19:32 Modified files: usr.bin/ssh : match.c Log message: match_user() shouldn't be called with user==NULL unless host and ipaddr are also NULL CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2023/04/05 21:21:31 Modified files: usr.bin/ssh : packet.c Log message: remove redundant ssh!=NULL check; we'd already dereferenced it CVSROOT: /cvs Module name: src Changes by: djm@cvs.openbsd.org 2023/04/05 21:56:03 Modified files: usr.bin/ssh : sshsig.c Log message: simplify sshsig_find_principals() similar to what happened to sshsig_check_allowed_keys() in r1.31, removing some dead code CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/04/05 23:52:45 Modified files: security/rust-openssl-tests: Makefile crates.inc distinfo security/rust-openssl-tests/pkg: PLIST Log message: Update to rust-openssl-tests 20230406 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/06 00:03:41 Modified files: multimedia/py-chromecast: Makefile distinfo Log message: Update to py3-chromecast-13.0.7. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/06 00:07:57 Modified files: sysutils/amazon-ssm-agent: Makefile distinfo Log message: Update to amazon-ssm-agent-3.2.815.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/06 00:26:04 Modified files: sysutils/google-cloud-sdk: Makefile distinfo sysutils/google-cloud-sdk/pkg: PLIST Log message: Update to google-cloud-sdk-425.0.0. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/06 01:07:54 Modified files: regress/lib/libcrypto/bn: bn_gcd.c Log message: Zap extra empty line CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/06 01:08:04 Modified files: security/py-fido2: Makefile distinfo security/py-fido2/pkg: PLIST Log message: update to py3-fido2-1.1.1 CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/06 01:08:41 Modified files: regress/lib/libcrypto/bn: bn_mod_exp.c Log message: Check and assign on one line CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/06 01:10:11 Modified files: textproc/py-inflect: Makefile distinfo Log message: update to py3-inflect-6.0.4 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/06 01:12:16 Modified files: textproc/py-xmldiff: Makefile distinfo textproc/py-xmldiff/pkg: PLIST Log message: update to py3-xmldiff-2.6.1 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/06 01:14:52 Modified files: www/py-beautifulsoup4: Makefile distinfo www/py-beautifulsoup4/pkg: PLIST Log message: update to py3-beautifulsoup4-4.12.1 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/06 01:26:10 Modified files: print/hplip : Makefile distinfo print/hplip/patches: patch-Makefile_in patch-base_password_py patch-base_utils_py patch-configure patch-fax_pmlfax_py patch-io_hpmud_musb_c patch-prnt_cups_py patch-prnt_cupsext_cupsext_c patch-ui4_wifisetupdialog_py patch-ui5_fabwindow_py patch-ui_devmgr4_py patch-ui_nodevicesform_py print/hplip/pkg: PLIST-hpcups PLIST-hpijs PLIST-main Added files: print/hplip/patches: patch-ui5_devmgr5_py patch-ui5_nodevicesdialog_py patch-ui5_plugindialog_py patch-ui5_queuesconf_py patch-ui_faxaddrbookform_py patch-ui_faxsendjobform_py patch-ui_firmwaredialog_py patch-ui_makecopiesform_py patch-ui_pluginform2_py patch-ui_printerform_py patch-ui_settingsdialog_py patch-ui_setupform_py patch-ui_unloadform_py patch-ui_upgradeform_py Log message: Update to hplip-3.23.3. CVSROOT: /cvs Module name: ports Changes by: op@cvs.openbsd.org 2023/04/06 01:47:06 Modified files: databases/pspg : Makefile distinfo databases/pspg/patches: patch-configure_ac Log message: update databases/pspg to 5.7.5 CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/06 01:48:05 Modified files: devel/jenkins/devel: Makefile distinfo Log message: Update jenkins-devel to 2.399 CVSROOT: /cvs Module name: ports Changes by: op@cvs.openbsd.org 2023/04/06 01:53:10 Modified files: lang/clojure : Makefile distinfo Log message: update lang/clojure to 1.11.1.1273 - fix regression in -Spom - update help to include -X:deps mvn-pom rather than -Spom (which will eventually go away) - update tools.deps to 0.18.1335 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/06 02:15:31 Modified files: x11/gnome/secrets: Makefile distinfo x11/gnome/secrets/pkg: PLIST Log message: Update to secrets-7.3. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/06 02:30:37 Modified files: x11/yaru : Makefile distinfo x11/yaru/patches: patch-icons_meson_build x11/yaru/pkg : PLIST Log message: Update to yaru-23.04.3. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/06 02:38:53 Modified files: regress/lib/libcrypto/wycheproof: wycheproof.go Log message: wycheproof: use EVP_MD instead of importing "hash" CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/06 02:41:53 Modified files: regress/lib/libcrypto/wycheproof: wycheproof.go Log message: wycheproof: fix copy-paste error in previous CVSROOT: /cvs Module name: xenocara Changes by: jsg@cvs.openbsd.org 2023/04/06 04:16:46 Log message: Import Mesa 22.3.7 Status: Vendor Tag: mesa Release Tags: mesa-22_3_7 U xenocara/lib/mesa/.dir-locals.el U xenocara/lib/mesa/.editorconfig U xenocara/lib/mesa/.gitattributes U xenocara/lib/mesa/.gitignore U xenocara/lib/mesa/.gitlab-ci.yml U xenocara/lib/mesa/.graphqlrc.yml U xenocara/lib/mesa/.mailmap U xenocara/lib/mesa/.pick_status.json U xenocara/lib/mesa/CODEOWNERS U xenocara/lib/mesa/README.rst C xenocara/lib/mesa/VERSION C xenocara/lib/mesa/meson.build U xenocara/lib/mesa/meson_options.txt U xenocara/lib/mesa/.github/workflows/macos.yml U xenocara/lib/mesa/.gitlab/issue_templates/Bug Report - AMD Radeon Vulkan.md U xenocara/lib/mesa/.gitlab/issue_templates/Bug Report.md U xenocara/lib/mesa/.gitlab-ci/all-skips.txt U xenocara/lib/mesa/.gitlab-ci/cross-xfail-ppc64el U xenocara/lib/mesa/.gitlab-ci/cross-xfail-s390x U xenocara/lib/mesa/.gitlab-ci/crosvm-init.sh U xenocara/lib/mesa/.gitlab-ci/crosvm-runner.sh U xenocara/lib/mesa/.gitlab-ci/deqp-runner.sh U xenocara/lib/mesa/.gitlab-ci/download-git-cache.sh U xenocara/lib/mesa/.gitlab-ci/fossilize-runner.sh U xenocara/lib/mesa/.gitlab-ci/fossils.yml U xenocara/lib/mesa/.gitlab-ci/gtest-runner.sh U xenocara/lib/mesa/.gitlab-ci/image-tags.yml U xenocara/lib/mesa/.gitlab-ci/report-flakes.py U xenocara/lib/mesa/.gitlab-ci/prepare-artifacts.sh U xenocara/lib/mesa/.gitlab-ci/run-shader-db.sh U xenocara/lib/mesa/.gitlab-ci/run-shellcheck.sh U xenocara/lib/mesa/.gitlab-ci/run-yamllint.sh U xenocara/lib/mesa/.gitlab-ci/skqp-runner.sh U xenocara/lib/mesa/.gitlab-ci/test-source-dep.yml U xenocara/lib/mesa/.gitlab-ci/x86_64-w64-mingw32 U xenocara/lib/mesa/.gitlab-ci/b2c/b2c.yml.jinja2.jinja2 U xenocara/lib/mesa/.gitlab-ci/b2c/generate_b2c.py U xenocara/lib/mesa/.gitlab-ci/bare-metal/.editorconfig U xenocara/lib/mesa/.gitlab-ci/bare-metal/arm64_a630_egl.sh U xenocara/lib/mesa/.gitlab-ci/bare-metal/bm-init.sh U xenocara/lib/mesa/.gitlab-ci/bare-metal/cisco-2960-poe-off.sh U xenocara/lib/mesa/.gitlab-ci/bare-metal/cisco-2960-poe-on.sh U xenocara/lib/mesa/.gitlab-ci/bare-metal/cros-servo.sh U xenocara/lib/mesa/.gitlab-ci/bare-metal/cros_servo_run.py U xenocara/lib/mesa/.gitlab-ci/bare-metal/eth008-power-down.sh U xenocara/lib/mesa/.gitlab-ci/bare-metal/eth008-power-relay.py U xenocara/lib/mesa/.gitlab-ci/bare-metal/eth008-power-up.sh U xenocara/lib/mesa/.gitlab-ci/bare-metal/expect-output.sh U xenocara/lib/mesa/.gitlab-ci/bare-metal/fastboot.sh U xenocara/lib/mesa/.gitlab-ci/bare-metal/fastboot_run.py U xenocara/lib/mesa/.gitlab-ci/bare-metal/google-power-down.sh U xenocara/lib/mesa/.gitlab-ci/bare-metal/google-power-relay.py U xenocara/lib/mesa/.gitlab-ci/bare-metal/google-power-up.sh U xenocara/lib/mesa/.gitlab-ci/bare-metal/mkbootimg.py U xenocara/lib/mesa/.gitlab-ci/bare-metal/poe-off U xenocara/lib/mesa/.gitlab-ci/bare-metal/poe-on U xenocara/lib/mesa/.gitlab-ci/bare-metal/poe-powered.sh U xenocara/lib/mesa/.gitlab-ci/bare-metal/poe_run.py U xenocara/lib/mesa/.gitlab-ci/bare-metal/rootfs-setup.sh U xenocara/lib/mesa/.gitlab-ci/bare-metal/serial_buffer.py U xenocara/lib/mesa/.gitlab-ci/bare-metal/telnet-buffer.py U xenocara/lib/mesa/.gitlab-ci/bin/.gitignore U xenocara/lib/mesa/.gitlab-ci/bin/ci_run_n_monitor.py U xenocara/lib/mesa/.gitlab-ci/bin/download_gl_schema.sh U xenocara/lib/mesa/.gitlab-ci/bin/gitlab_common.py U xenocara/lib/mesa/.gitlab-ci/bin/gitlab_gql.py U xenocara/lib/mesa/.gitlab-ci/bin/job_details.gql U xenocara/lib/mesa/.gitlab-ci/bin/pipeline_details.gql U xenocara/lib/mesa/.gitlab-ci/bin/requirements.txt U xenocara/lib/mesa/.gitlab-ci/bin/update_traces_checksum.py U xenocara/lib/mesa/.gitlab-ci/build/gitlab-ci.yml U xenocara/lib/mesa/.gitlab-ci/common/capture-devcoredump.sh U xenocara/lib/mesa/.gitlab-ci/common/generate-env.sh U xenocara/lib/mesa/.gitlab-ci/common/init-stage1.sh U xenocara/lib/mesa/.gitlab-ci/common/init-stage2.sh U xenocara/lib/mesa/.gitlab-ci/common/intel-gpu-freq.sh U xenocara/lib/mesa/.gitlab-ci/common/start-x.sh U xenocara/lib/mesa/.gitlab-ci/container/arm.config U xenocara/lib/mesa/.gitlab-ci/container/arm64.config U xenocara/lib/mesa/.gitlab-ci/container/baremetal_build.sh U xenocara/lib/mesa/.gitlab-ci/container/build-apitrace.sh U xenocara/lib/mesa/.gitlab-ci/container/build-crosvm.sh U xenocara/lib/mesa/.gitlab-ci/container/build-deqp-runner.sh U xenocara/lib/mesa/.gitlab-ci/container/build-deqp.sh U xenocara/lib/mesa/.gitlab-ci/container/build-fossilize.sh U xenocara/lib/mesa/.gitlab-ci/container/build-gfxreconstruct.sh U xenocara/lib/mesa/.gitlab-ci/container/build-hang-detection.sh U xenocara/lib/mesa/.gitlab-ci/container/build-kernel.sh U xenocara/lib/mesa/.gitlab-ci/container/build-libclc.sh U xenocara/lib/mesa/.gitlab-ci/container/build-libdrm.sh U xenocara/lib/mesa/.gitlab-ci/container/build-llvm-spirv.sh U xenocara/lib/mesa/.gitlab-ci/container/build-mold.sh U xenocara/lib/mesa/.gitlab-ci/container/build-piglit.sh U xenocara/lib/mesa/.gitlab-ci/container/build-rust.sh U xenocara/lib/mesa/.gitlab-ci/container/build-skqp.sh U xenocara/lib/mesa/.gitlab-ci/container/build-skqp_BUILD.gn.patch U xenocara/lib/mesa/.gitlab-ci/container/build-skqp_base.gn U xenocara/lib/mesa/.gitlab-ci/container/build-skqp_fetch_gn.patch U xenocara/lib/mesa/.gitlab-ci/container/build-skqp_git-sync-deps.patch U xenocara/lib/mesa/.gitlab-ci/container/build-skqp_gl.patch U xenocara/lib/mesa/.gitlab-ci/container/build-skqp_is_clang.py.patch U xenocara/lib/mesa/.gitlab-ci/container/build-skqp_nima.patch U xenocara/lib/mesa/.gitlab-ci/container/build-va-tools.sh U xenocara/lib/mesa/.gitlab-ci/container/build-vkd3d-proton.sh U xenocara/lib/mesa/.gitlab-ci/container/build-wayland.sh U xenocara/lib/mesa/.gitlab-ci/container/container_post_build.sh U xenocara/lib/mesa/.gitlab-ci/container/container_pre_build.sh U xenocara/lib/mesa/.gitlab-ci/container/create-android-cross-file.sh U xenocara/lib/mesa/.gitlab-ci/container/create-android-ndk-pc.sh U xenocara/lib/mesa/.gitlab-ci/container/create-cross-file.sh U xenocara/lib/mesa/.gitlab-ci/container/create-rootfs.sh U xenocara/lib/mesa/.gitlab-ci/container/cross_build.sh U xenocara/lib/mesa/.gitlab-ci/container/gitlab-ci.yml U xenocara/lib/mesa/.gitlab-ci/container/install-wine-apitrace.sh U xenocara/lib/mesa/.gitlab-ci/container/install-wine-dxvk.sh U xenocara/lib/mesa/.gitlab-ci/container/lava_build.sh U xenocara/lib/mesa/.gitlab-ci/container/setup-wine.sh U xenocara/lib/mesa/.gitlab-ci/container/x86_64.config U xenocara/lib/mesa/.gitlab-ci/container/debian/android_build.sh U xenocara/lib/mesa/.gitlab-ci/container/debian/arm_build.sh U xenocara/lib/mesa/.gitlab-ci/container/debian/arm_test.sh U xenocara/lib/mesa/.gitlab-ci/container/debian/i386_build.sh U xenocara/lib/mesa/.gitlab-ci/container/debian/llvm-snapshot.gpg.key U xenocara/lib/mesa/.gitlab-ci/container/debian/ppc64el_build.sh U xenocara/lib/mesa/.gitlab-ci/container/debian/s390x_build.sh U xenocara/lib/mesa/.gitlab-ci/container/debian/winehq.gpg.key U xenocara/lib/mesa/.gitlab-ci/container/debian/x86_build-base-wine.sh U xenocara/lib/mesa/.gitlab-ci/container/debian/x86_build-base.sh U xenocara/lib/mesa/.gitlab-ci/container/debian/x86_build-mingw-patch.sh U xenocara/lib/mesa/.gitlab-ci/container/debian/x86_build-mingw-source-deps.sh U xenocara/lib/mesa/.gitlab-ci/container/debian/x86_build-mingw.sh U xenocara/lib/mesa/.gitlab-ci/container/debian/x86_build.sh U xenocara/lib/mesa/.gitlab-ci/container/debian/x86_mingw-toolchain.cmake U xenocara/lib/mesa/.gitlab-ci/container/debian/x86_test-base.sh U xenocara/lib/mesa/.gitlab-ci/container/debian/x86_test-gl.sh U xenocara/lib/mesa/.gitlab-ci/container/debian/x86_test-vk.sh U xenocara/lib/mesa/.gitlab-ci/container/fedora/x86_build.sh U xenocara/lib/mesa/.gitlab-ci/fossils/fossils.sh U xenocara/lib/mesa/.gitlab-ci/fossils/query_fossils_yaml.py U xenocara/lib/mesa/.gitlab-ci/lava/__init__.py U xenocara/lib/mesa/.gitlab-ci/lava/exceptions.py U xenocara/lib/mesa/.gitlab-ci/lava/lava-gitlab-ci.yml U xenocara/lib/mesa/.gitlab-ci/lava/lava-pytest.sh U xenocara/lib/mesa/.gitlab-ci/lava/lava-submit.sh U xenocara/lib/mesa/.gitlab-ci/lava/lava_job_submitter.py U xenocara/lib/mesa/.gitlab-ci/lava/utils/__init__.py U xenocara/lib/mesa/.gitlab-ci/lava/utils/console_format.py U xenocara/lib/mesa/.gitlab-ci/lava/utils/gitlab_section.py U xenocara/lib/mesa/.gitlab-ci/lava/utils/lava_log_hints.py U xenocara/lib/mesa/.gitlab-ci/lava/utils/log_follower.py U xenocara/lib/mesa/.gitlab-ci/lava/utils/log_section.py U xenocara/lib/mesa/.gitlab-ci/meson/build.sh U xenocara/lib/mesa/.gitlab-ci/meson/time-strace.sh U xenocara/lib/mesa/.gitlab-ci/meson/time.sh U xenocara/lib/mesa/.gitlab-ci/piglit/build-piglit_backport-s3-migration.diff U xenocara/lib/mesa/.gitlab-ci/piglit/disable-vs_in.diff U xenocara/lib/mesa/.gitlab-ci/piglit/piglit-runner.sh U xenocara/lib/mesa/.gitlab-ci/piglit/piglit-traces.sh U xenocara/lib/mesa/.gitlab-ci/piglit/run_cl.sh U xenocara/lib/mesa/.gitlab-ci/test/gitlab-ci.yml U xenocara/lib/mesa/.gitlab-ci/tests/__init__.py U xenocara/lib/mesa/.gitlab-ci/tests/conftest.py U xenocara/lib/mesa/.gitlab-ci/tests/test_lava_job_submitter.py U xenocara/lib/mesa/.gitlab-ci/tests/lava/__init__.py U xenocara/lib/mesa/.gitlab-ci/tests/lava/helpers.py U xenocara/lib/mesa/.gitlab-ci/tests/utils/__init__.py U xenocara/lib/mesa/.gitlab-ci/tests/utils/test_lava_log.py U xenocara/lib/mesa/.gitlab-ci/valve/traces-runner.sh U xenocara/lib/mesa/.gitlab-ci/vkd3d-proton/run.sh U xenocara/lib/mesa/.gitlab-ci/windows/Dockerfile_build U xenocara/lib/mesa/.gitlab-ci/windows/Dockerfile_test U xenocara/lib/mesa/.gitlab-ci/windows/Dockerfile_vs U xenocara/lib/mesa/.gitlab-ci/windows/README.md U xenocara/lib/mesa/.gitlab-ci/windows/deqp_runner_run.ps1 U xenocara/lib/mesa/.gitlab-ci/windows/mesa_build.ps1 U xenocara/lib/mesa/.gitlab-ci/windows/mesa_container.ps1 U xenocara/lib/mesa/.gitlab-ci/windows/mesa_deps_build.ps1 U xenocara/lib/mesa/.gitlab-ci/windows/mesa_deps_choco.ps1 U xenocara/lib/mesa/.gitlab-ci/windows/mesa_deps_test.ps1 U xenocara/lib/mesa/.gitlab-ci/windows/mesa_deps_vs2019.ps1 U xenocara/lib/mesa/.gitlab-ci/windows/mesa_vs_init.ps1 U xenocara/lib/mesa/.gitlab-ci/windows/piglit_run.ps1 U xenocara/lib/mesa/.gitlab-ci/windows/spirv2dxil_check.ps1 U xenocara/lib/mesa/.gitlab-ci/windows/spirv2dxil_run.ps1 U xenocara/lib/mesa/android/Android.mk U xenocara/lib/mesa/android/mesa3d_cross.mk U xenocara/lib/mesa/bin/.editorconfig U xenocara/lib/mesa/bin/__init__.py U xenocara/lib/mesa/bin/commit_in_branch.py U xenocara/lib/mesa/bin/commit_in_branch_test.py U xenocara/lib/mesa/bin/gen_calendar_entries.py U xenocara/lib/mesa/bin/gen_calendar_entries_test.py U xenocara/lib/mesa/bin/gen_release_notes.py U xenocara/lib/mesa/bin/gen_release_notes_test.py U xenocara/lib/mesa/bin/gen_vs_module_defs.py U xenocara/lib/mesa/bin/git_sha1_gen.py U xenocara/lib/mesa/bin/install_megadrivers.py U xenocara/lib/mesa/bin/khronos-update.py U xenocara/lib/mesa/bin/meson-cmd-extract.py U xenocara/lib/mesa/bin/meson-options.py U xenocara/lib/mesa/bin/meson.build U xenocara/lib/mesa/bin/meson_get_version.py U xenocara/lib/mesa/bin/perf-annotate-jit.py U xenocara/lib/mesa/bin/pick-ui.py U xenocara/lib/mesa/bin/post_version.py U xenocara/lib/mesa/bin/post_version_test.py U xenocara/lib/mesa/bin/refcnt-log-helper.py U xenocara/lib/mesa/bin/symbols-check.py U xenocara/lib/mesa/bin/update-android-headers.sh U xenocara/lib/mesa/bin/pick/__init__.py U xenocara/lib/mesa/bin/pick/core.py U xenocara/lib/mesa/bin/pick/core_test.py U xenocara/lib/mesa/bin/pick/ui.py U xenocara/lib/mesa/build-support/conftest.dyn U xenocara/lib/mesa/build-support/conftest.map U xenocara/lib/mesa/docs/ARB_color_buffer_float.txt U xenocara/lib/mesa/docs/README.UVD U xenocara/lib/mesa/docs/README.VCE U xenocara/lib/mesa/docs/amber.rst U xenocara/lib/mesa/docs/android.rst U xenocara/lib/mesa/docs/application-issues.rst U xenocara/lib/mesa/docs/bugs.rst U xenocara/lib/mesa/docs/codingstyle.rst U xenocara/lib/mesa/docs/conf.py U xenocara/lib/mesa/docs/conform.rst U xenocara/lib/mesa/docs/debugging.rst U xenocara/lib/mesa/docs/developers.rst U xenocara/lib/mesa/docs/devinfo.rst U xenocara/lib/mesa/docs/dispatch.rst U xenocara/lib/mesa/docs/download.rst U xenocara/lib/mesa/docs/doxygen-wrapper.py U xenocara/lib/mesa/docs/egl.rst U xenocara/lib/mesa/docs/envvars.rst U xenocara/lib/mesa/docs/faq.rst U xenocara/lib/mesa/docs/extensions.rst U xenocara/lib/mesa/docs/favicon.ico U xenocara/lib/mesa/docs/favicon.svg U xenocara/lib/mesa/docs/features.txt U xenocara/lib/mesa/docs/gallium-nine.rst U xenocara/lib/mesa/docs/gpu-perf-tracing.rst U xenocara/lib/mesa/docs/helpwanted.rst U xenocara/lib/mesa/docs/history.rst U xenocara/lib/mesa/docs/index.rst U xenocara/lib/mesa/docs/install.rst U xenocara/lib/mesa/docs/libGL.txt U xenocara/lib/mesa/docs/license.rst U xenocara/lib/mesa/docs/lists.rst U xenocara/lib/mesa/docs/macos.rst U xenocara/lib/mesa/docs/meson.rst U xenocara/lib/mesa/docs/opengles.rst U xenocara/lib/mesa/docs/osmesa.rst U xenocara/lib/mesa/docs/perf.rst U xenocara/lib/mesa/docs/perfetto.rst U xenocara/lib/mesa/docs/precompiled.rst U xenocara/lib/mesa/docs/releasing.rst U xenocara/lib/mesa/docs/release-calendar.csv U xenocara/lib/mesa/docs/release-calendar.rst U xenocara/lib/mesa/docs/relnotes.rst U xenocara/lib/mesa/docs/release-maintainers-keys.asc U xenocara/lib/mesa/docs/repository.rst U xenocara/lib/mesa/docs/rusticl.rst U xenocara/lib/mesa/docs/shading.rst U xenocara/lib/mesa/docs/sourcetree.rst U xenocara/lib/mesa/docs/submittingpatches.rst U xenocara/lib/mesa/docs/systems.rst U xenocara/lib/mesa/docs/thanks.rst U xenocara/lib/mesa/docs/u_trace.rst U xenocara/lib/mesa/docs/utilities.rst U xenocara/lib/mesa/docs/viewperf.rst U xenocara/lib/mesa/docs/xlibdriver.rst U xenocara/lib/mesa/docs/_extra/_redirects U xenocara/lib/mesa/docs/_extra/specs/EGL_MESA_device_software.txt U xenocara/lib/mesa/docs/_extra/specs/EGL_MESA_drm_image_formats.txt U xenocara/lib/mesa/docs/_extra/specs/EGL_MESA_platform_surfaceless.txt U xenocara/lib/mesa/docs/_extra/specs/EGL_MESA_query_driver.txt U xenocara/lib/mesa/docs/_extra/specs/EXT_shader_integer_mix.spec U xenocara/lib/mesa/docs/_extra/specs/EXT_shader_samples_identical.txt U xenocara/lib/mesa/docs/_extra/specs/INTEL_shader_atomic_float_minmax.txt U xenocara/lib/mesa/docs/_extra/specs/MESA_bgra.txt U xenocara/lib/mesa/docs/_extra/specs/MESA_configless_context.spec U xenocara/lib/mesa/docs/_extra/specs/MESA_copy_sub_buffer.spec U xenocara/lib/mesa/docs/_extra/specs/MESA_drm_image.spec U xenocara/lib/mesa/docs/_extra/specs/MESA_framebuffer_flip_y.txt U xenocara/lib/mesa/docs/_extra/specs/enums.txt U xenocara/lib/mesa/docs/_extra/specs/MESA_pack_invert.spec U xenocara/lib/mesa/docs/_extra/specs/MESA_image_dma_buf_export.txt U xenocara/lib/mesa/docs/_extra/specs/MESA_multithread_makecurrent.spec U xenocara/lib/mesa/docs/_extra/specs/MESA_pixmap_colormap.spec U xenocara/lib/mesa/docs/_extra/specs/MESA_query_renderer.spec U xenocara/lib/mesa/docs/_extra/specs/MESA_release_buffers.spec U xenocara/lib/mesa/docs/_extra/specs/MESA_shader_debug.spec U xenocara/lib/mesa/docs/_extra/specs/MESA_shader_integer_functions.txt U xenocara/lib/mesa/docs/_extra/specs/MESA_swap_control.spec U xenocara/lib/mesa/docs/_extra/specs/MESA_swap_frame_usage.spec U xenocara/lib/mesa/docs/_extra/specs/MESA_texture_array.spec U xenocara/lib/mesa/docs/_extra/specs/MESA_texture_signed_rgba.spec U xenocara/lib/mesa/docs/_extra/specs/MESA_window_pos.spec U xenocara/lib/mesa/docs/_extra/specs/MESA_ycbcr_texture.spec U xenocara/lib/mesa/docs/_extra/specs/WL_bind_wayland_display.spec U xenocara/lib/mesa/docs/_extra/specs/WL_create_wayland_buffer_from_image.spec U xenocara/lib/mesa/docs/_extra/specs/OLD/EGL_MESA_screen_surface.txt U xenocara/lib/mesa/docs/_extra/specs/OLD/MESA_agp_offset.spec U xenocara/lib/mesa/docs/_extra/specs/OLD/MESA_packed_depth_stencil.spec U xenocara/lib/mesa/docs/_extra/specs/OLD/MESA_program_debug.spec U xenocara/lib/mesa/docs/_extra/specs/OLD/MESA_resize_buffers.spec U xenocara/lib/mesa/docs/_extra/specs/OLD/MESA_set_3dfx_mode.spec U xenocara/lib/mesa/docs/_extra/specs/OLD/MESA_sprite_point.spec U xenocara/lib/mesa/docs/_extra/specs/OLD/MESA_trace.spec U xenocara/lib/mesa/docs/_exts/formatting.py U xenocara/lib/mesa/docs/_exts/nir.py U xenocara/lib/mesa/docs/_exts/redirects.py U xenocara/lib/mesa/docs/ci/LAVA.rst U xenocara/lib/mesa/docs/ci/bare-metal.rst U xenocara/lib/mesa/docs/ci/docker.rst U xenocara/lib/mesa/docs/ci/fdo-cache U xenocara/lib/mesa/docs/ci/index.rst U xenocara/lib/mesa/docs/ci/kernel.rst U xenocara/lib/mesa/docs/ci/local-traces.rst U xenocara/lib/mesa/docs/ci/skqp.rst U xenocara/lib/mesa/docs/ci/uri-caching.conf U xenocara/lib/mesa/docs/drivers/anv.rst U xenocara/lib/mesa/docs/drivers/asahi.rst U xenocara/lib/mesa/docs/drivers/d3d12.rst U xenocara/lib/mesa/docs/drivers/freedreno.rst U xenocara/lib/mesa/docs/drivers/lima.rst U xenocara/lib/mesa/docs/drivers/llvmpipe.rst U xenocara/lib/mesa/docs/drivers/panfrost.rst U xenocara/lib/mesa/docs/drivers/radv.rst U xenocara/lib/mesa/docs/drivers/svga3d.rst U xenocara/lib/mesa/docs/drivers/v3d.rst U xenocara/lib/mesa/docs/drivers/vc4.rst U xenocara/lib/mesa/docs/drivers/venus.rst U xenocara/lib/mesa/docs/drivers/virgl.rst U xenocara/lib/mesa/docs/drivers/zink.rst U xenocara/lib/mesa/docs/drivers/freedreno/ir3-notes.rst U xenocara/lib/mesa/docs/drivers/freedreno/isaspec.rst U xenocara/lib/mesa/docs/gallium/buffermapping.rst U xenocara/lib/mesa/docs/gallium/context.rst U xenocara/lib/mesa/docs/gallium/cso.rst U xenocara/lib/mesa/docs/gallium/debugging.rst U xenocara/lib/mesa/docs/gallium/distro.rst U xenocara/lib/mesa/docs/gallium/format.rst U xenocara/lib/mesa/docs/gallium/glossary.rst U xenocara/lib/mesa/docs/gallium/index.rst U xenocara/lib/mesa/docs/gallium/intro.rst U xenocara/lib/mesa/docs/gallium/pipeline.txt U xenocara/lib/mesa/docs/gallium/postprocess.rst U xenocara/lib/mesa/docs/gallium/resources.rst U xenocara/lib/mesa/docs/gallium/screen.rst U xenocara/lib/mesa/docs/gallium/tgsi.rst U xenocara/lib/mesa/docs/gallium/cso/blend.rst U xenocara/lib/mesa/docs/gallium/cso/dsa.rst U xenocara/lib/mesa/docs/gallium/cso/rasterizer.rst U xenocara/lib/mesa/docs/gallium/cso/sampler.rst U xenocara/lib/mesa/docs/gallium/cso/shader.rst U xenocara/lib/mesa/docs/gallium/cso/velems.rst U xenocara/lib/mesa/docs/isl/aux-surf-comp.rst U xenocara/lib/mesa/docs/isl/ccs.rst U xenocara/lib/mesa/docs/isl/formats.rst U xenocara/lib/mesa/docs/isl/hiz.rst U xenocara/lib/mesa/docs/isl/index.rst U xenocara/lib/mesa/docs/isl/tiling-basic.svg U xenocara/lib/mesa/docs/isl/tiling.rst U xenocara/lib/mesa/docs/isl/units.rst U xenocara/lib/mesa/docs/nir/alu.rst U xenocara/lib/mesa/docs/nir/index.rst U xenocara/lib/mesa/docs/nir/tex.rst U xenocara/lib/mesa/docs/relnotes/10.0.1.rst U xenocara/lib/mesa/docs/relnotes/10.0.2.rst U xenocara/lib/mesa/docs/relnotes/10.0.3.rst U xenocara/lib/mesa/docs/relnotes/10.0.4.rst U xenocara/lib/mesa/docs/relnotes/10.0.5.rst U xenocara/lib/mesa/docs/relnotes/10.0.rst U xenocara/lib/mesa/docs/relnotes/10.1.1.rst U xenocara/lib/mesa/docs/relnotes/10.1.2.rst U xenocara/lib/mesa/docs/relnotes/10.1.3.rst U xenocara/lib/mesa/docs/relnotes/10.1.4.rst U xenocara/lib/mesa/docs/relnotes/10.1.5.rst U xenocara/lib/mesa/docs/relnotes/10.1.6.rst U xenocara/lib/mesa/docs/relnotes/10.1.rst U xenocara/lib/mesa/docs/relnotes/10.2.1.rst U xenocara/lib/mesa/docs/relnotes/10.2.2.rst U xenocara/lib/mesa/docs/relnotes/10.2.3.rst U xenocara/lib/mesa/docs/relnotes/10.2.4.rst U xenocara/lib/mesa/docs/relnotes/10.2.5.rst U xenocara/lib/mesa/docs/relnotes/10.2.6.rst U xenocara/lib/mesa/docs/relnotes/10.2.7.rst U xenocara/lib/mesa/docs/relnotes/10.2.8.rst U xenocara/lib/mesa/docs/relnotes/10.2.9.rst U xenocara/lib/mesa/docs/relnotes/10.2.rst U xenocara/lib/mesa/docs/relnotes/3.1 U xenocara/lib/mesa/docs/relnotes/10.3.1.rst U xenocara/lib/mesa/docs/relnotes/10.3.2.rst U xenocara/lib/mesa/docs/relnotes/10.3.3.rst U xenocara/lib/mesa/docs/relnotes/10.3.4.rst U xenocara/lib/mesa/docs/relnotes/10.3.5.rst U xenocara/lib/mesa/docs/relnotes/10.3.6.rst U xenocara/lib/mesa/docs/relnotes/10.3.7.rst U xenocara/lib/mesa/docs/relnotes/10.3.rst U xenocara/lib/mesa/docs/relnotes/10.4.1.rst U xenocara/lib/mesa/docs/relnotes/10.4.2.rst U xenocara/lib/mesa/docs/relnotes/10.4.3.rst U xenocara/lib/mesa/docs/relnotes/10.4.4.rst U xenocara/lib/mesa/docs/relnotes/10.4.5.rst U xenocara/lib/mesa/docs/relnotes/10.4.6.rst U xenocara/lib/mesa/docs/relnotes/10.4.7.rst U xenocara/lib/mesa/docs/relnotes/10.4.rst U xenocara/lib/mesa/docs/relnotes/10.5.0.rst U xenocara/lib/mesa/docs/relnotes/10.5.1.rst U xenocara/lib/mesa/docs/relnotes/10.5.2.rst U xenocara/lib/mesa/docs/relnotes/10.5.3.rst U xenocara/lib/mesa/docs/relnotes/10.5.4.rst U xenocara/lib/mesa/docs/relnotes/10.5.5.rst U xenocara/lib/mesa/docs/relnotes/10.5.6.rst U xenocara/lib/mesa/docs/relnotes/10.5.7.rst U xenocara/lib/mesa/docs/relnotes/10.5.8.rst U xenocara/lib/mesa/docs/relnotes/3.2 U xenocara/lib/mesa/docs/relnotes/10.5.9.rst U xenocara/lib/mesa/docs/relnotes/10.6.0.rst U xenocara/lib/mesa/docs/relnotes/10.6.1.rst U xenocara/lib/mesa/docs/relnotes/10.6.2.rst U xenocara/lib/mesa/docs/relnotes/10.6.3.rst U xenocara/lib/mesa/docs/relnotes/10.6.4.rst U xenocara/lib/mesa/docs/relnotes/10.6.5.rst U xenocara/lib/mesa/docs/relnotes/10.6.6.rst U xenocara/lib/mesa/docs/relnotes/10.6.7.rst U xenocara/lib/mesa/docs/relnotes/10.6.8.rst U xenocara/lib/mesa/docs/relnotes/10.6.9.rst U xenocara/lib/mesa/docs/relnotes/11.0.0.rst U xenocara/lib/mesa/docs/relnotes/11.0.1.rst U xenocara/lib/mesa/docs/relnotes/11.0.2.rst U xenocara/lib/mesa/docs/relnotes/11.0.3.rst U xenocara/lib/mesa/docs/relnotes/11.0.4.rst U xenocara/lib/mesa/docs/relnotes/11.0.5.rst U xenocara/lib/mesa/docs/relnotes/11.0.6.rst U xenocara/lib/mesa/docs/relnotes/11.0.7.rst U xenocara/lib/mesa/docs/relnotes/11.0.8.rst U xenocara/lib/mesa/docs/relnotes/11.0.9.rst U xenocara/lib/mesa/docs/relnotes/11.1.0.rst U xenocara/lib/mesa/docs/relnotes/11.1.1.rst U xenocara/lib/mesa/docs/relnotes/11.1.2.rst U xenocara/lib/mesa/docs/relnotes/11.1.3.rst U xenocara/lib/mesa/docs/relnotes/3.3 U xenocara/lib/mesa/docs/relnotes/11.1.4.rst U xenocara/lib/mesa/docs/relnotes/11.2.0.rst U xenocara/lib/mesa/docs/relnotes/11.2.1.rst U xenocara/lib/mesa/docs/relnotes/11.2.2.rst U xenocara/lib/mesa/docs/relnotes/12.0.0.rst U xenocara/lib/mesa/docs/relnotes/12.0.1.rst U xenocara/lib/mesa/docs/relnotes/12.0.2.rst U xenocara/lib/mesa/docs/relnotes/12.0.3.rst U xenocara/lib/mesa/docs/relnotes/12.0.4.rst U xenocara/lib/mesa/docs/relnotes/12.0.5.rst U xenocara/lib/mesa/docs/relnotes/12.0.6.rst U xenocara/lib/mesa/docs/relnotes/13.0.0.rst U xenocara/lib/mesa/docs/relnotes/13.0.1.rst U xenocara/lib/mesa/docs/relnotes/13.0.2.rst U xenocara/lib/mesa/docs/relnotes/13.0.3.rst U xenocara/lib/mesa/docs/relnotes/13.0.4.rst U xenocara/lib/mesa/docs/relnotes/13.0.5.rst U xenocara/lib/mesa/docs/relnotes/13.0.6.rst U xenocara/lib/mesa/docs/relnotes/17.0.0.rst U xenocara/lib/mesa/docs/relnotes/17.0.1.rst U xenocara/lib/mesa/docs/relnotes/17.0.2.rst U xenocara/lib/mesa/docs/relnotes/17.0.3.rst U xenocara/lib/mesa/docs/relnotes/17.0.4.rst U xenocara/lib/mesa/docs/relnotes/17.0.5.rst U xenocara/lib/mesa/docs/relnotes/17.0.6.rst U xenocara/lib/mesa/docs/relnotes/3.4 U xenocara/lib/mesa/docs/relnotes/17.0.7.rst U xenocara/lib/mesa/docs/relnotes/17.1.0.rst U xenocara/lib/mesa/docs/relnotes/17.1.1.rst U xenocara/lib/mesa/docs/relnotes/17.1.10.rst U xenocara/lib/mesa/docs/relnotes/17.1.2.rst U xenocara/lib/mesa/docs/relnotes/17.1.3.rst U xenocara/lib/mesa/docs/relnotes/17.1.4.rst U xenocara/lib/mesa/docs/relnotes/17.1.5.rst U xenocara/lib/mesa/docs/relnotes/17.1.6.rst U xenocara/lib/mesa/docs/relnotes/17.1.7.rst U xenocara/lib/mesa/docs/relnotes/17.1.8.rst U xenocara/lib/mesa/docs/relnotes/17.1.9.rst U xenocara/lib/mesa/docs/relnotes/17.2.0.rst U xenocara/lib/mesa/docs/relnotes/17.2.1.rst U xenocara/lib/mesa/docs/relnotes/17.2.2.rst U xenocara/lib/mesa/docs/relnotes/17.2.3.rst U xenocara/lib/mesa/docs/relnotes/17.2.4.rst U xenocara/lib/mesa/docs/relnotes/17.2.5.rst U xenocara/lib/mesa/docs/relnotes/17.2.6.rst U xenocara/lib/mesa/docs/relnotes/17.2.7.rst U xenocara/lib/mesa/docs/relnotes/17.2.8.rst U xenocara/lib/mesa/docs/relnotes/17.3.0.rst U xenocara/lib/mesa/docs/relnotes/17.3.1.rst U xenocara/lib/mesa/docs/relnotes/17.3.2.rst U xenocara/lib/mesa/docs/relnotes/17.3.3.rst U xenocara/lib/mesa/docs/relnotes/3.5 U xenocara/lib/mesa/docs/relnotes/17.3.4.rst U xenocara/lib/mesa/docs/relnotes/17.3.5.rst U xenocara/lib/mesa/docs/relnotes/17.3.6.rst U xenocara/lib/mesa/docs/relnotes/17.3.7.rst U xenocara/lib/mesa/docs/relnotes/17.3.8.rst U xenocara/lib/mesa/docs/relnotes/17.3.9.rst U xenocara/lib/mesa/docs/relnotes/18.0.0.rst U xenocara/lib/mesa/docs/relnotes/18.0.1.rst U xenocara/lib/mesa/docs/relnotes/18.0.2.rst U xenocara/lib/mesa/docs/relnotes/18.0.3.rst U xenocara/lib/mesa/docs/relnotes/18.0.4.rst U xenocara/lib/mesa/docs/relnotes/18.0.5.rst U xenocara/lib/mesa/docs/relnotes/18.1.0.rst U xenocara/lib/mesa/docs/relnotes/18.1.1.rst U xenocara/lib/mesa/docs/relnotes/18.1.2.rst U xenocara/lib/mesa/docs/relnotes/18.1.3.rst U xenocara/lib/mesa/docs/relnotes/18.1.4.rst U xenocara/lib/mesa/docs/relnotes/18.1.5.rst U xenocara/lib/mesa/docs/relnotes/18.1.6.rst U xenocara/lib/mesa/docs/relnotes/18.1.7.rst U xenocara/lib/mesa/docs/relnotes/18.1.8.rst U xenocara/lib/mesa/docs/relnotes/18.1.9.rst U xenocara/lib/mesa/docs/relnotes/18.2.0.rst U xenocara/lib/mesa/docs/relnotes/18.2.1.rst U xenocara/lib/mesa/docs/relnotes/18.2.2.rst U xenocara/lib/mesa/docs/relnotes/4.0 U xenocara/lib/mesa/docs/relnotes/18.2.3.rst U xenocara/lib/mesa/docs/relnotes/18.2.4.rst U xenocara/lib/mesa/docs/relnotes/18.2.5.rst U xenocara/lib/mesa/docs/relnotes/18.2.6.rst U xenocara/lib/mesa/docs/relnotes/18.2.7.rst U xenocara/lib/mesa/docs/relnotes/18.2.8.rst U xenocara/lib/mesa/docs/relnotes/18.3.0.rst U xenocara/lib/mesa/docs/relnotes/18.3.1.rst U xenocara/lib/mesa/docs/relnotes/18.3.2.rst U xenocara/lib/mesa/docs/relnotes/18.3.3.rst U xenocara/lib/mesa/docs/relnotes/18.3.4.rst U xenocara/lib/mesa/docs/relnotes/18.3.5.rst U xenocara/lib/mesa/docs/relnotes/18.3.6.rst U xenocara/lib/mesa/docs/relnotes/19.0.0.rst U xenocara/lib/mesa/docs/relnotes/19.0.1.rst U xenocara/lib/mesa/docs/relnotes/19.0.2.rst U xenocara/lib/mesa/docs/relnotes/19.0.3.rst U xenocara/lib/mesa/docs/relnotes/19.0.4.rst U xenocara/lib/mesa/docs/relnotes/19.0.5.rst U xenocara/lib/mesa/docs/relnotes/19.0.6.rst U xenocara/lib/mesa/docs/relnotes/19.0.7.rst U xenocara/lib/mesa/docs/relnotes/19.0.8.rst U xenocara/lib/mesa/docs/relnotes/19.1.0.rst U xenocara/lib/mesa/docs/relnotes/19.1.1.rst U xenocara/lib/mesa/docs/relnotes/19.1.2.rst U xenocara/lib/mesa/docs/relnotes/4.1 U xenocara/lib/mesa/docs/relnotes/19.1.3.rst U xenocara/lib/mesa/docs/relnotes/19.1.4.rst U xenocara/lib/mesa/docs/relnotes/19.1.5.rst U xenocara/lib/mesa/docs/relnotes/19.1.6.rst U xenocara/lib/mesa/docs/relnotes/19.1.7.rst U xenocara/lib/mesa/docs/relnotes/19.1.8.rst U xenocara/lib/mesa/docs/relnotes/19.2.0.rst U xenocara/lib/mesa/docs/relnotes/19.2.1.rst U xenocara/lib/mesa/docs/relnotes/19.2.2.rst U xenocara/lib/mesa/docs/relnotes/19.2.3.rst U xenocara/lib/mesa/docs/relnotes/19.2.4.rst U xenocara/lib/mesa/docs/relnotes/19.2.5.rst U xenocara/lib/mesa/docs/relnotes/19.2.6.rst U xenocara/lib/mesa/docs/relnotes/19.2.7.rst U xenocara/lib/mesa/docs/relnotes/19.2.8.rst U xenocara/lib/mesa/docs/relnotes/19.3.0.rst U xenocara/lib/mesa/docs/relnotes/19.3.1.rst U xenocara/lib/mesa/docs/relnotes/19.3.2.rst U xenocara/lib/mesa/docs/relnotes/19.3.3.rst U xenocara/lib/mesa/docs/relnotes/19.3.4.rst U xenocara/lib/mesa/docs/relnotes/19.3.5.rst U xenocara/lib/mesa/docs/relnotes/20.0.0.rst U xenocara/lib/mesa/docs/relnotes/20.0.1.rst U xenocara/lib/mesa/docs/relnotes/20.0.2.rst U xenocara/lib/mesa/docs/relnotes/20.0.3.rst U xenocara/lib/mesa/docs/relnotes/5.0 U xenocara/lib/mesa/docs/relnotes/20.0.4.rst U xenocara/lib/mesa/docs/relnotes/20.0.5.rst U xenocara/lib/mesa/docs/relnotes/20.0.6.rst U xenocara/lib/mesa/docs/relnotes/20.0.7.rst U xenocara/lib/mesa/docs/relnotes/20.0.8.rst U xenocara/lib/mesa/docs/relnotes/20.1.0.rst U xenocara/lib/mesa/docs/relnotes/20.1.1.rst U xenocara/lib/mesa/docs/relnotes/20.1.10.rst U xenocara/lib/mesa/docs/relnotes/20.1.2.rst U xenocara/lib/mesa/docs/relnotes/20.1.3.rst U xenocara/lib/mesa/docs/relnotes/20.1.4.rst U xenocara/lib/mesa/docs/relnotes/20.1.5.rst U xenocara/lib/mesa/docs/relnotes/20.1.6.rst U xenocara/lib/mesa/docs/relnotes/20.1.7.rst U xenocara/lib/mesa/docs/relnotes/20.1.8.rst U xenocara/lib/mesa/docs/relnotes/20.1.9.rst U xenocara/lib/mesa/docs/relnotes/20.2.0.rst U xenocara/lib/mesa/docs/relnotes/20.2.1.rst U xenocara/lib/mesa/docs/relnotes/20.2.2.rst U xenocara/lib/mesa/docs/relnotes/20.2.3.rst U xenocara/lib/mesa/docs/relnotes/20.2.4.rst U xenocara/lib/mesa/docs/relnotes/20.2.5.rst U xenocara/lib/mesa/docs/relnotes/20.2.6.rst U xenocara/lib/mesa/docs/relnotes/20.3.0.rst U xenocara/lib/mesa/docs/relnotes/20.3.1.rst U xenocara/lib/mesa/docs/relnotes/5.1 U xenocara/lib/mesa/docs/relnotes/20.3.2.rst U xenocara/lib/mesa/docs/relnotes/20.3.3.rst U xenocara/lib/mesa/docs/relnotes/20.3.4.rst U xenocara/lib/mesa/docs/relnotes/20.3.5.rst U xenocara/lib/mesa/docs/relnotes/21.0.0.rst U xenocara/lib/mesa/docs/relnotes/21.0.1.rst U xenocara/lib/mesa/docs/relnotes/21.0.2.rst U xenocara/lib/mesa/docs/relnotes/21.0.3.rst U xenocara/lib/mesa/docs/relnotes/21.1.0.rst U xenocara/lib/mesa/docs/relnotes/21.1.1.rst U xenocara/lib/mesa/docs/relnotes/21.1.2.rst U xenocara/lib/mesa/docs/relnotes/21.1.3.rst U xenocara/lib/mesa/docs/relnotes/21.1.4.rst U xenocara/lib/mesa/docs/relnotes/21.1.5.rst U xenocara/lib/mesa/docs/relnotes/21.1.6.rst U xenocara/lib/mesa/docs/relnotes/21.1.7.rst U xenocara/lib/mesa/docs/relnotes/21.1.8.rst U xenocara/lib/mesa/docs/relnotes/21.2.0.rst U xenocara/lib/mesa/docs/relnotes/21.2.2.rst U xenocara/lib/mesa/docs/relnotes/21.2.3.rst U xenocara/lib/mesa/docs/relnotes/21.2.4.rst U xenocara/lib/mesa/docs/relnotes/21.2.5.rst U xenocara/lib/mesa/docs/relnotes/21.2.6.rst U xenocara/lib/mesa/docs/relnotes/21.3.0.rst U xenocara/lib/mesa/docs/relnotes/21.3.1.rst U xenocara/lib/mesa/docs/relnotes/6.0 U xenocara/lib/mesa/docs/relnotes/21.3.2.rst U xenocara/lib/mesa/docs/relnotes/21.3.3.rst U xenocara/lib/mesa/docs/relnotes/21.3.4.rst U xenocara/lib/mesa/docs/relnotes/21.3.5.rst U xenocara/lib/mesa/docs/relnotes/21.3.6.rst U xenocara/lib/mesa/docs/relnotes/21.3.7.rst U xenocara/lib/mesa/docs/relnotes/21.3.8.rst U xenocara/lib/mesa/docs/relnotes/21.3.9.rst U xenocara/lib/mesa/docs/relnotes/22.0.0.rst U xenocara/lib/mesa/docs/relnotes/22.0.1.rst U xenocara/lib/mesa/docs/relnotes/22.0.2.rst U xenocara/lib/mesa/docs/relnotes/22.0.3.rst U xenocara/lib/mesa/docs/relnotes/22.0.4.rst U xenocara/lib/mesa/docs/relnotes/22.0.5.rst U xenocara/lib/mesa/docs/relnotes/22.1.0.rst U xenocara/lib/mesa/docs/relnotes/22.1.1.rst U xenocara/lib/mesa/docs/relnotes/22.1.2.rst U xenocara/lib/mesa/docs/relnotes/22.1.3.rst U xenocara/lib/mesa/docs/relnotes/22.1.4.rst U xenocara/lib/mesa/docs/relnotes/22.1.5.rst U xenocara/lib/mesa/docs/relnotes/22.1.6.rst U xenocara/lib/mesa/docs/relnotes/22.1.7.rst U xenocara/lib/mesa/docs/relnotes/22.2.0.rst U xenocara/lib/mesa/docs/relnotes/22.2.1.rst U xenocara/lib/mesa/docs/relnotes/22.2.2.rst U xenocara/lib/mesa/docs/relnotes/6.1 U xenocara/lib/mesa/docs/relnotes/22.3.0.rst U xenocara/lib/mesa/docs/relnotes/22.3.1.rst U xenocara/lib/mesa/docs/relnotes/22.3.2.rst U xenocara/lib/mesa/docs/relnotes/22.3.3.rst U xenocara/lib/mesa/docs/relnotes/22.3.4.rst N xenocara/lib/mesa/docs/relnotes/22.3.5.rst N xenocara/lib/mesa/docs/relnotes/22.3.6.rst N xenocara/lib/mesa/docs/relnotes/22.3.7.rst U xenocara/lib/mesa/docs/relnotes/3.2.1 U xenocara/lib/mesa/docs/relnotes/3.4.1 U xenocara/lib/mesa/docs/relnotes/3.4.2 U xenocara/lib/mesa/docs/relnotes/4.0.1 U xenocara/lib/mesa/docs/relnotes/4.0.2 U xenocara/lib/mesa/docs/relnotes/4.0.3 U xenocara/lib/mesa/docs/relnotes/5.0.1 U xenocara/lib/mesa/docs/relnotes/5.0.2 U xenocara/lib/mesa/docs/relnotes/6.0.1 U xenocara/lib/mesa/docs/relnotes/6.2 U xenocara/lib/mesa/docs/relnotes/6.2.1 U xenocara/lib/mesa/docs/relnotes/6.3 U xenocara/lib/mesa/docs/relnotes/6.3.1 U xenocara/lib/mesa/docs/relnotes/6.3.2 U xenocara/lib/mesa/docs/relnotes/6.4 U xenocara/lib/mesa/docs/relnotes/6.4.1.rst U xenocara/lib/mesa/docs/relnotes/6.4.2.rst U xenocara/lib/mesa/docs/relnotes/6.4.rst U xenocara/lib/mesa/docs/relnotes/6.5.1.rst U xenocara/lib/mesa/docs/relnotes/6.5.2.rst U xenocara/lib/mesa/docs/relnotes/6.5.3.rst U xenocara/lib/mesa/docs/relnotes/6.5.rst U xenocara/lib/mesa/docs/relnotes/7.0.1.rst U xenocara/lib/mesa/docs/relnotes/7.0.2.rst U xenocara/lib/mesa/docs/relnotes/7.0.3.rst U xenocara/lib/mesa/docs/relnotes/7.0.4.rst U xenocara/lib/mesa/docs/relnotes/7.0.rst U xenocara/lib/mesa/docs/relnotes/7.1.rst U xenocara/lib/mesa/docs/relnotes/7.10.1.rst U xenocara/lib/mesa/docs/relnotes/7.10.2.rst U xenocara/lib/mesa/docs/relnotes/7.10.3.rst U xenocara/lib/mesa/docs/relnotes/7.10.rst U xenocara/lib/mesa/docs/relnotes/7.11.1.rst U xenocara/lib/mesa/docs/relnotes/7.11.2.rst U xenocara/lib/mesa/docs/relnotes/7.11.rst U xenocara/lib/mesa/docs/relnotes/7.2.rst U xenocara/lib/mesa/docs/relnotes/7.3.rst U xenocara/lib/mesa/docs/relnotes/7.4.1.rst U xenocara/lib/mesa/docs/relnotes/7.4.2.rst U xenocara/lib/mesa/docs/relnotes/7.4.3.rst U xenocara/lib/mesa/docs/relnotes/7.4.4.rst U xenocara/lib/mesa/docs/relnotes/7.4.rst U xenocara/lib/mesa/docs/relnotes/7.5.1.rst U xenocara/lib/mesa/docs/relnotes/7.5.2.rst U xenocara/lib/mesa/docs/relnotes/7.5.rst U xenocara/lib/mesa/docs/relnotes/7.6.1.rst U xenocara/lib/mesa/docs/relnotes/7.6.rst U xenocara/lib/mesa/docs/relnotes/7.7.1.rst U xenocara/lib/mesa/docs/relnotes/7.7.rst U xenocara/lib/mesa/docs/relnotes/7.8.1.rst U xenocara/lib/mesa/docs/relnotes/7.8.2.rst U xenocara/lib/mesa/docs/relnotes/7.8.3.rst U xenocara/lib/mesa/docs/relnotes/7.8.rst U xenocara/lib/mesa/docs/relnotes/7.9.1.rst U xenocara/lib/mesa/docs/relnotes/7.9.2.rst U xenocara/lib/mesa/docs/relnotes/7.9.rst U xenocara/lib/mesa/docs/relnotes/8.0.1.rst U xenocara/lib/mesa/docs/relnotes/8.0.2.rst U xenocara/lib/mesa/docs/relnotes/8.0.3.rst U xenocara/lib/mesa/docs/relnotes/8.0.4.rst U xenocara/lib/mesa/docs/relnotes/8.0.5.rst U xenocara/lib/mesa/docs/relnotes/8.0.rst U xenocara/lib/mesa/docs/relnotes/9.0.1.rst U xenocara/lib/mesa/docs/relnotes/9.0.2.rst U xenocara/lib/mesa/docs/relnotes/9.0.3.rst U xenocara/lib/mesa/docs/relnotes/9.0.rst U xenocara/lib/mesa/docs/relnotes/9.1.1.rst U xenocara/lib/mesa/docs/relnotes/9.1.2.rst U xenocara/lib/mesa/docs/relnotes/9.1.3.rst U xenocara/lib/mesa/docs/relnotes/9.1.4.rst U xenocara/lib/mesa/docs/relnotes/9.1.5.rst U xenocara/lib/mesa/docs/relnotes/9.1.6.rst U xenocara/lib/mesa/docs/relnotes/9.1.7.rst U xenocara/lib/mesa/docs/relnotes/9.1.rst U xenocara/lib/mesa/docs/relnotes/9.2.rst U xenocara/lib/mesa/docs/relnotes/9.2.1.rst U xenocara/lib/mesa/docs/relnotes/9.2.2.rst U xenocara/lib/mesa/docs/relnotes/9.2.3.rst U xenocara/lib/mesa/docs/relnotes/9.2.4.rst U xenocara/lib/mesa/docs/relnotes/9.2.5.rst U xenocara/lib/mesa/docs/vulkan/base-objs.rst U xenocara/lib/mesa/docs/vulkan/command-pools.rst U xenocara/lib/mesa/docs/vulkan/dispatch.rst U xenocara/lib/mesa/docs/vulkan/graphics-state.rst U xenocara/lib/mesa/docs/vulkan/index.rst U xenocara/lib/mesa/docs/vulkan/renderpass.rst U xenocara/lib/mesa/include/c99_alloca.h U xenocara/lib/mesa/include/c99_compat.h U xenocara/lib/mesa/include/kopper_interface.h U xenocara/lib/mesa/include/meson.build U xenocara/lib/mesa/include/no_extern_c.h U xenocara/lib/mesa/include/CL/cl.h U xenocara/lib/mesa/include/CL/cl.hpp U xenocara/lib/mesa/include/CL/cl2.hpp U xenocara/lib/mesa/include/CL/cl_d3d10.h U xenocara/lib/mesa/include/CL/cl_d3d11.h U xenocara/lib/mesa/include/CL/cl_dx9_media_sharing.h U xenocara/lib/mesa/include/CL/cl_dx9_media_sharing_intel.h U xenocara/lib/mesa/include/CL/cl_egl.h U xenocara/lib/mesa/include/CL/cl_ext.h U xenocara/lib/mesa/include/CL/cl_ext_intel.h U xenocara/lib/mesa/include/CL/cl_gl.h U xenocara/lib/mesa/include/CL/cl_gl_ext.h U xenocara/lib/mesa/include/CL/cl_icd.h U xenocara/lib/mesa/include/CL/cl_platform.h U xenocara/lib/mesa/include/CL/cl_va_api_media_sharing_intel.h U xenocara/lib/mesa/include/CL/cl_version.h U xenocara/lib/mesa/include/CL/opencl.h U xenocara/lib/mesa/include/D3D9/.editorconfig U xenocara/lib/mesa/include/D3D9/d3d9.h U xenocara/lib/mesa/include/D3D9/d3d9caps.h U xenocara/lib/mesa/include/D3D9/d3d9types.h U xenocara/lib/mesa/include/EGL/egl.h U xenocara/lib/mesa/include/EGL/eglext.h U xenocara/lib/mesa/include/EGL/eglext_angle.h U xenocara/lib/mesa/include/EGL/eglmesaext.h U xenocara/lib/mesa/include/EGL/eglplatform.h U xenocara/lib/mesa/include/GL/gl.h U xenocara/lib/mesa/include/GL/glcorearb.h U xenocara/lib/mesa/include/GL/glext.h U xenocara/lib/mesa/include/GL/glx.h U xenocara/lib/mesa/include/GL/glxext.h U xenocara/lib/mesa/include/GL/mesa_glinterop.h U xenocara/lib/mesa/include/GL/osmesa.h U xenocara/lib/mesa/include/GL/wglext.h U xenocara/lib/mesa/include/GL/internal/dri_interface.h U xenocara/lib/mesa/include/GLES/egl.h U xenocara/lib/mesa/include/GLES/gl.h U xenocara/lib/mesa/include/GLES/glext.h U xenocara/lib/mesa/include/GLES/glplatform.h U xenocara/lib/mesa/include/GLES2/gl2.h U xenocara/lib/mesa/include/GLES2/gl2ext.h U xenocara/lib/mesa/include/GLES2/gl2platform.h U xenocara/lib/mesa/include/GLES3/gl3.h U xenocara/lib/mesa/include/GLES3/gl31.h U xenocara/lib/mesa/include/GLES3/gl32.h U xenocara/lib/mesa/include/GLES3/gl3ext.h U xenocara/lib/mesa/include/GLES3/gl3platform.h U xenocara/lib/mesa/include/HaikuGL/GLRenderer.h U xenocara/lib/mesa/include/HaikuGL/GLView.h U xenocara/lib/mesa/include/HaikuGL/OpenGLKit.h U xenocara/lib/mesa/include/HaikuGL/README U xenocara/lib/mesa/include/KHR/khrplatform.h U xenocara/lib/mesa/include/android_stub/android/data_space.h U xenocara/lib/mesa/include/android_stub/android/hardware_buffer.h U xenocara/lib/mesa/include/android_stub/android/hdr_metadata.h U xenocara/lib/mesa/include/android_stub/android/log.h U xenocara/lib/mesa/include/android_stub/android/native_window.h U xenocara/lib/mesa/include/android_stub/android/rect.h U xenocara/lib/mesa/include/android_stub/android/sync.h U xenocara/lib/mesa/include/android_stub/backtrace/Backtrace.h U xenocara/lib/mesa/include/android_stub/backtrace/BacktraceMap.h U xenocara/lib/mesa/include/android_stub/backtrace/backtrace_constants.h U xenocara/lib/mesa/include/android_stub/cutils/compiler.h U xenocara/lib/mesa/include/android_stub/cutils/log.h U xenocara/lib/mesa/include/android_stub/cutils/native_handle.h U xenocara/lib/mesa/include/android_stub/cutils/properties.h U xenocara/lib/mesa/include/android_stub/cutils/trace.h U xenocara/lib/mesa/include/android_stub/hardware/fb.h U xenocara/lib/mesa/include/android_stub/hardware/gralloc.h U xenocara/lib/mesa/include/android_stub/hardware/gralloc1.h U xenocara/lib/mesa/include/android_stub/hardware/hardware.h U xenocara/lib/mesa/include/android_stub/hardware/hwvulkan.h U xenocara/lib/mesa/include/android_stub/log/event_tag_map.h U xenocara/lib/mesa/include/android_stub/log/log.h U xenocara/lib/mesa/include/android_stub/log/log_event_list.h U xenocara/lib/mesa/include/android_stub/log/log_id.h U xenocara/lib/mesa/include/android_stub/log/log_main.h U xenocara/lib/mesa/include/android_stub/log/log_properties.h U xenocara/lib/mesa/include/android_stub/log/log_radio.h U xenocara/lib/mesa/include/android_stub/log/log_read.h U xenocara/lib/mesa/include/android_stub/log/log_safetynet.h U xenocara/lib/mesa/include/android_stub/log/log_system.h U xenocara/lib/mesa/include/android_stub/log/log_time.h U xenocara/lib/mesa/include/android_stub/log/logprint.h U xenocara/lib/mesa/include/android_stub/nativebase/nativebase.h U xenocara/lib/mesa/include/android_stub/ndk/sync.h U xenocara/lib/mesa/include/android_stub/system/camera.h U xenocara/lib/mesa/include/android_stub/system/graphics-base-v1.0.h U xenocara/lib/mesa/include/android_stub/system/graphics-base-v1.1.h U xenocara/lib/mesa/include/android_stub/system/graphics-base-v1.2.h U xenocara/lib/mesa/include/android_stub/system/graphics-base.h U xenocara/lib/mesa/include/android_stub/system/graphics-sw.h U xenocara/lib/mesa/include/android_stub/system/graphics.h U xenocara/lib/mesa/include/android_stub/system/radio.h U xenocara/lib/mesa/include/android_stub/system/thread_defs.h U xenocara/lib/mesa/include/android_stub/system/window.h U xenocara/lib/mesa/include/android_stub/vndk/hardware_buffer.h U xenocara/lib/mesa/include/android_stub/vndk/window.h U xenocara/lib/mesa/include/d3dadapter/.editorconfig U xenocara/lib/mesa/include/d3dadapter/d3dadapter9.h U xenocara/lib/mesa/include/d3dadapter/drm.h U xenocara/lib/mesa/include/d3dadapter/present.h U xenocara/lib/mesa/include/drm-uapi/README U xenocara/lib/mesa/include/drm-uapi/amdgpu_drm.h U xenocara/lib/mesa/include/drm-uapi/drm.h U xenocara/lib/mesa/include/drm-uapi/drm_fourcc.h U xenocara/lib/mesa/include/drm-uapi/drm_mode.h U xenocara/lib/mesa/include/drm-uapi/etnaviv_drm.h U xenocara/lib/mesa/include/drm-uapi/i915_drm.h U xenocara/lib/mesa/include/drm-uapi/lima_drm.h U xenocara/lib/mesa/include/drm-uapi/msm_drm.h U xenocara/lib/mesa/include/drm-uapi/panfrost_drm.h U xenocara/lib/mesa/include/drm-uapi/sync_file.h U xenocara/lib/mesa/include/drm-uapi/tegra_drm.h U xenocara/lib/mesa/include/drm-uapi/v3d_drm.h U xenocara/lib/mesa/include/drm-uapi/vc4_drm.h U xenocara/lib/mesa/include/drm-uapi/virtgpu_drm.h U xenocara/lib/mesa/include/pci_ids/crocus_pci_ids.h U xenocara/lib/mesa/include/pci_ids/i830_pci_ids.h U xenocara/lib/mesa/include/pci_ids/i915_pci_ids.h U xenocara/lib/mesa/include/pci_ids/iris_pci_ids.h U xenocara/lib/mesa/include/pci_ids/r300_pci_ids.h U xenocara/lib/mesa/include/pci_ids/r600_pci_ids.h U xenocara/lib/mesa/include/pci_ids/radeonsi_pci_ids.h U xenocara/lib/mesa/include/pci_ids/virtio_gpu_pci_ids.h U xenocara/lib/mesa/include/pci_ids/vmwgfx_pci_ids.h U xenocara/lib/mesa/include/vk_video/vulkan_video_codec_h264std.h U xenocara/lib/mesa/include/vk_video/vulkan_video_codec_h264std_decode.h U xenocara/lib/mesa/include/vk_video/vulkan_video_codec_h264std_encode.h U xenocara/lib/mesa/include/vk_video/vulkan_video_codec_h265std.h U xenocara/lib/mesa/include/vk_video/vulkan_video_codec_h265std_decode.h U xenocara/lib/mesa/include/vk_video/vulkan_video_codec_h265std_encode.h U xenocara/lib/mesa/include/vk_video/vulkan_video_codecs_common.h U xenocara/lib/mesa/include/vulkan/.editorconfig U xenocara/lib/mesa/include/vulkan/vk_android_native_buffer.h U xenocara/lib/mesa/include/vulkan/vk_icd.h U xenocara/lib/mesa/include/vulkan/vk_layer.h U xenocara/lib/mesa/include/vulkan/vk_platform.h U xenocara/lib/mesa/include/vulkan/vulkan.h U xenocara/lib/mesa/include/vulkan/vulkan_android.h U xenocara/lib/mesa/include/vulkan/vulkan_beta.h U xenocara/lib/mesa/include/vulkan/vulkan_core.h U xenocara/lib/mesa/include/vulkan/vulkan_directfb.h U xenocara/lib/mesa/include/vulkan/vulkan_fuchsia.h U xenocara/lib/mesa/include/vulkan/vulkan_ggp.h U xenocara/lib/mesa/include/vulkan/vulkan_ios.h U xenocara/lib/mesa/include/vulkan/vulkan_macos.h U xenocara/lib/mesa/include/vulkan/vulkan_metal.h U xenocara/lib/mesa/include/vulkan/vulkan_screen.h U xenocara/lib/mesa/include/vulkan/vulkan_vi.h U xenocara/lib/mesa/include/vulkan/vulkan_wayland.h U xenocara/lib/mesa/include/vulkan/vulkan_win32.h U xenocara/lib/mesa/include/vulkan/vulkan_xcb.h U xenocara/lib/mesa/include/vulkan/vulkan_xlib.h U xenocara/lib/mesa/include/vulkan/vulkan_xlib_xrandr.h U xenocara/lib/mesa/include/winddk/.gitignore U xenocara/lib/mesa/include/winddk/README.txt U xenocara/lib/mesa/include/winddk/winddk_compat.h U xenocara/lib/mesa/src/meson.build U xenocara/lib/mesa/src/amd/.clang-format U xenocara/lib/mesa/src/amd/meson.build U xenocara/lib/mesa/src/amd/addrlib/meson.build U xenocara/lib/mesa/src/amd/addrlib/inc/addrinterface.h U xenocara/lib/mesa/src/amd/addrlib/inc/addrtypes.h U xenocara/lib/mesa/src/amd/addrlib/src/addrinterface.cpp U xenocara/lib/mesa/src/amd/addrlib/src/amdgpu_asic_addr.h U xenocara/lib/mesa/src/amd/addrlib/src/chip/gfx10/gfx10_gb_reg.h U xenocara/lib/mesa/src/amd/addrlib/src/chip/gfx11/gfx11_gb_reg.h U xenocara/lib/mesa/src/amd/addrlib/src/chip/gfx9/gfx9_gb_reg.h U xenocara/lib/mesa/src/amd/addrlib/src/chip/r800/si_gb_reg.h U xenocara/lib/mesa/src/amd/addrlib/src/core/addrcommon.h U xenocara/lib/mesa/src/amd/addrlib/src/core/addrelemlib.cpp U xenocara/lib/mesa/src/amd/addrlib/src/core/addrelemlib.h U xenocara/lib/mesa/src/amd/addrlib/src/core/addrlib.cpp U xenocara/lib/mesa/src/amd/addrlib/src/core/addrlib.h U xenocara/lib/mesa/src/amd/addrlib/src/core/addrlib1.cpp U xenocara/lib/mesa/src/amd/addrlib/src/core/addrlib1.h U xenocara/lib/mesa/src/amd/addrlib/src/core/addrlib2.cpp U xenocara/lib/mesa/src/amd/addrlib/src/core/addrlib2.h U xenocara/lib/mesa/src/amd/addrlib/src/core/addrobject.cpp U xenocara/lib/mesa/src/amd/addrlib/src/core/addrobject.h U xenocara/lib/mesa/src/amd/addrlib/src/core/coord.cpp U xenocara/lib/mesa/src/amd/addrlib/src/core/coord.h U xenocara/lib/mesa/src/amd/addrlib/src/gfx10/gfx10SwizzlePattern.h U xenocara/lib/mesa/src/amd/addrlib/src/gfx10/gfx10addrlib.cpp U xenocara/lib/mesa/src/amd/addrlib/src/gfx10/gfx10addrlib.h U xenocara/lib/mesa/src/amd/addrlib/src/gfx11/gfx11SwizzlePattern.h U xenocara/lib/mesa/src/amd/addrlib/src/gfx11/gfx11addrlib.cpp U xenocara/lib/mesa/src/amd/addrlib/src/gfx11/gfx11addrlib.h U xenocara/lib/mesa/src/amd/addrlib/src/gfx9/gfx9addrlib.cpp U xenocara/lib/mesa/src/amd/addrlib/src/gfx9/gfx9addrlib.h U xenocara/lib/mesa/src/amd/addrlib/src/r800/ciaddrlib.cpp U xenocara/lib/mesa/src/amd/addrlib/src/r800/ciaddrlib.h U xenocara/lib/mesa/src/amd/addrlib/src/r800/egbaddrlib.cpp U xenocara/lib/mesa/src/amd/addrlib/src/r800/egbaddrlib.h U xenocara/lib/mesa/src/amd/addrlib/src/r800/siaddrlib.cpp U xenocara/lib/mesa/src/amd/addrlib/src/r800/siaddrlib.h U xenocara/lib/mesa/src/amd/ci/.gitattributes U xenocara/lib/mesa/src/amd/ci/amd-raven-skqp-gl_rendertests-fails.txt U xenocara/lib/mesa/src/amd/ci/amd-raven-skqp-gles_rendertests-fails.txt U xenocara/lib/mesa/src/amd/ci/amd-raven-skqp-vk_rendertests-fails.txt U xenocara/lib/mesa/src/amd/ci/amd-raven-skqp_unittests-fails.txt U xenocara/lib/mesa/src/amd/ci/deqp-radeonsi-stoney.toml U xenocara/lib/mesa/src/amd/ci/gitlab-ci.yml U xenocara/lib/mesa/src/amd/ci/radeonsi-raven-fails.txt U xenocara/lib/mesa/src/amd/ci/radeonsi-raven-flakes.txt U xenocara/lib/mesa/src/amd/ci/radeonsi-raven-skips.txt U xenocara/lib/mesa/src/amd/ci/radeonsi-stoney-fails.txt U xenocara/lib/mesa/src/amd/ci/radeonsi-stoney-flakes.txt U xenocara/lib/mesa/src/amd/ci/radv-fiji-aco-fails.txt U xenocara/lib/mesa/src/amd/ci/radeonsi-stoney-skips.txt U xenocara/lib/mesa/src/amd/ci/radv-bonaire-aco-fails.txt U xenocara/lib/mesa/src/amd/ci/radv-bonaire-aco-skips.txt U xenocara/lib/mesa/src/amd/ci/radv-hawaii-aco-skips.txt U xenocara/lib/mesa/src/amd/ci/radv-kabini-aco-fails.txt U xenocara/lib/mesa/src/amd/ci/radv-kabini-aco-flakes.txt U xenocara/lib/mesa/src/amd/ci/radv-kabini-aco-skips.txt U xenocara/lib/mesa/src/amd/ci/radv-navi10-aco-fails.txt U xenocara/lib/mesa/src/amd/ci/radv-navi10-aco-flakes.txt U xenocara/lib/mesa/src/amd/ci/radv-navi14-aco-fails.txt U xenocara/lib/mesa/src/amd/ci/radv-navi21-aco-fails.txt U xenocara/lib/mesa/src/amd/ci/radv-navi21-aco-flakes.txt U xenocara/lib/mesa/src/amd/ci/radv-navi21-llvm-fails.txt U xenocara/lib/mesa/src/amd/ci/radv-navi21-llvm-flakes.txt U xenocara/lib/mesa/src/amd/ci/radv-navi22-aco-fails.txt U xenocara/lib/mesa/src/amd/ci/radv-navi22-aco-flakes.txt U xenocara/lib/mesa/src/amd/ci/radv-pitcairn-aco-fails.txt U xenocara/lib/mesa/src/amd/ci/radv-polaris10-aco-fails.txt U xenocara/lib/mesa/src/amd/ci/radv-polaris10-aco-flakes.txt U xenocara/lib/mesa/src/amd/ci/radv-polaris10-vkd3d.txt U xenocara/lib/mesa/src/amd/ci/radv-raven-aco-fails.txt U xenocara/lib/mesa/src/amd/ci/radv-raven-aco-skips.txt U xenocara/lib/mesa/src/amd/ci/radv-renoir-aco-fails.txt U xenocara/lib/mesa/src/amd/ci/radv-renoir-aco-flakes.txt U xenocara/lib/mesa/src/amd/ci/radv-renoir-aco-skips.txt U xenocara/lib/mesa/src/amd/ci/radv-skips.txt U xenocara/lib/mesa/src/amd/ci/radv-stoney-aco-fails.txt U xenocara/lib/mesa/src/amd/ci/radv-stoney-aco-flakes.txt U xenocara/lib/mesa/src/amd/ci/radv-stoney-aco-skips.txt U xenocara/lib/mesa/src/amd/ci/radv-vangogh-aco-fails.txt U xenocara/lib/mesa/src/amd/ci/radv-vangogh-aco-flakes.txt U xenocara/lib/mesa/src/amd/ci/radv-vega10-aco-fails.txt U xenocara/lib/mesa/src/amd/ci/radv-vega10-aco-flakes.txt U xenocara/lib/mesa/src/amd/ci/traces-amd.yml U xenocara/lib/mesa/src/amd/common/ac_binary.c U xenocara/lib/mesa/src/amd/common/ac_binary.h U xenocara/lib/mesa/src/amd/common/ac_debug.c U xenocara/lib/mesa/src/amd/common/ac_debug.h U xenocara/lib/mesa/src/amd/common/ac_drm_fourcc.h C xenocara/lib/mesa/src/amd/common/ac_gpu_info.c U xenocara/lib/mesa/src/amd/common/ac_gpu_info.h U xenocara/lib/mesa/src/amd/common/ac_msgpack.c U xenocara/lib/mesa/src/amd/common/ac_msgpack.h U xenocara/lib/mesa/src/amd/common/ac_nir.c U xenocara/lib/mesa/src/amd/common/ac_nir.h U xenocara/lib/mesa/src/amd/common/ac_nir_cull.c U xenocara/lib/mesa/src/amd/common/ac_nir_lower_esgs_io_to_mem.c U xenocara/lib/mesa/src/amd/common/ac_nir_lower_global_access.c U xenocara/lib/mesa/src/amd/common/ac_nir_lower_ngg.c U xenocara/lib/mesa/src/amd/common/ac_nir_lower_resinfo.c U xenocara/lib/mesa/src/amd/common/ac_nir_lower_taskmesh_io_to_mem.c U xenocara/lib/mesa/src/amd/common/ac_perfcounter.c U xenocara/lib/mesa/src/amd/common/ac_nir_lower_tess_io_to_mem.c U xenocara/lib/mesa/src/amd/common/ac_nir_opt_outputs.c U xenocara/lib/mesa/src/amd/common/ac_perfcounter.h U xenocara/lib/mesa/src/amd/common/ac_rgp.c U xenocara/lib/mesa/src/amd/common/ac_rgp.h U xenocara/lib/mesa/src/amd/common/ac_rgp_elf_object_pack.c U xenocara/lib/mesa/src/amd/common/ac_rtld.c U xenocara/lib/mesa/src/amd/common/ac_rtld.h U xenocara/lib/mesa/src/amd/common/ac_shader_args.c U xenocara/lib/mesa/src/amd/common/ac_shader_args.h U xenocara/lib/mesa/src/amd/common/ac_shader_util.c U xenocara/lib/mesa/src/amd/common/ac_shader_util.h U xenocara/lib/mesa/src/amd/common/ac_shadowed_regs.c U xenocara/lib/mesa/src/amd/common/ac_shadowed_regs.h U xenocara/lib/mesa/src/amd/common/ac_spm.c U xenocara/lib/mesa/src/amd/common/ac_spm.h U xenocara/lib/mesa/src/amd/common/ac_sqtt.c U xenocara/lib/mesa/src/amd/common/ac_sqtt.h C xenocara/lib/mesa/src/amd/common/ac_surface.c C xenocara/lib/mesa/src/amd/common/ac_surface.h U xenocara/lib/mesa/src/amd/common/ac_surface_meta_address_test.c U xenocara/lib/mesa/src/amd/common/ac_surface_modifier_test.c U xenocara/lib/mesa/src/amd/common/ac_surface_test_common.h U xenocara/lib/mesa/src/amd/common/ac_uvd_dec.h U xenocara/lib/mesa/src/amd/common/ac_vcn_dec.h U xenocara/lib/mesa/src/amd/common/amd_family.c C xenocara/lib/mesa/src/amd/common/amd_family.h U xenocara/lib/mesa/src/amd/common/amd_kernel_code_t.h U xenocara/lib/mesa/src/amd/common/gfx10_format_table.h U xenocara/lib/mesa/src/amd/common/gfx10_format_table.py U xenocara/lib/mesa/src/amd/common/meson.build U xenocara/lib/mesa/src/amd/common/sid.h U xenocara/lib/mesa/src/amd/common/sid_tables.py U xenocara/lib/mesa/src/amd/compiler/.clang-format U xenocara/lib/mesa/src/amd/compiler/README-ISA.md U xenocara/lib/mesa/src/amd/compiler/README.md U xenocara/lib/mesa/src/amd/compiler/aco_assembler.cpp U xenocara/lib/mesa/src/amd/compiler/aco_builder_h.py U xenocara/lib/mesa/src/amd/compiler/aco_dead_code_analysis.cpp U xenocara/lib/mesa/src/amd/compiler/aco_dominance.cpp U xenocara/lib/mesa/src/amd/compiler/aco_form_hard_clauses.cpp U xenocara/lib/mesa/src/amd/compiler/aco_insert_NOPs.cpp U xenocara/lib/mesa/src/amd/compiler/aco_insert_exec_mask.cpp U xenocara/lib/mesa/src/amd/compiler/aco_insert_waitcnt.cpp C xenocara/lib/mesa/src/amd/compiler/aco_instruction_selection.cpp U xenocara/lib/mesa/src/amd/compiler/aco_instruction_selection.h U xenocara/lib/mesa/src/amd/compiler/aco_instruction_selection_setup.cpp U xenocara/lib/mesa/src/amd/compiler/aco_interface.cpp U xenocara/lib/mesa/src/amd/compiler/aco_ir.cpp U xenocara/lib/mesa/src/amd/compiler/aco_interface.h U xenocara/lib/mesa/src/amd/compiler/aco_ir.h U xenocara/lib/mesa/src/amd/compiler/aco_live_var_analysis.cpp U xenocara/lib/mesa/src/amd/compiler/aco_lower_phis.cpp U xenocara/lib/mesa/src/amd/compiler/aco_lower_to_cssa.cpp U xenocara/lib/mesa/src/amd/compiler/aco_lower_to_hw_instr.cpp U xenocara/lib/mesa/src/amd/compiler/aco_opcodes.py U xenocara/lib/mesa/src/amd/compiler/aco_opcodes_cpp.py U xenocara/lib/mesa/src/amd/compiler/aco_opcodes_h.py U xenocara/lib/mesa/src/amd/compiler/aco_opt_value_numbering.cpp U xenocara/lib/mesa/src/amd/compiler/aco_optimizer.cpp U xenocara/lib/mesa/src/amd/compiler/aco_optimizer_postRA.cpp U xenocara/lib/mesa/src/amd/compiler/aco_print_asm.cpp U xenocara/lib/mesa/src/amd/compiler/aco_print_ir.cpp U xenocara/lib/mesa/src/amd/compiler/aco_reduce_assign.cpp U xenocara/lib/mesa/src/amd/compiler/aco_register_allocation.cpp U xenocara/lib/mesa/src/amd/compiler/aco_reindex_ssa.cpp U xenocara/lib/mesa/src/amd/compiler/aco_scheduler.cpp U xenocara/lib/mesa/src/amd/compiler/aco_shader_info.h U xenocara/lib/mesa/src/amd/compiler/aco_spill.cpp U xenocara/lib/mesa/src/amd/compiler/aco_ssa_elimination.cpp U xenocara/lib/mesa/src/amd/compiler/aco_statistics.cpp U xenocara/lib/mesa/src/amd/compiler/aco_util.h U xenocara/lib/mesa/src/amd/compiler/aco_validate.cpp U xenocara/lib/mesa/src/amd/compiler/meson.build U xenocara/lib/mesa/src/amd/compiler/tests/README.md U xenocara/lib/mesa/src/amd/compiler/tests/check_output.py U xenocara/lib/mesa/src/amd/compiler/tests/framework.h U xenocara/lib/mesa/src/amd/compiler/tests/glsl_scraper.py U xenocara/lib/mesa/src/amd/compiler/tests/helpers.cpp U xenocara/lib/mesa/src/amd/compiler/tests/helpers.h U xenocara/lib/mesa/src/amd/compiler/tests/main.cpp U xenocara/lib/mesa/src/amd/compiler/tests/meson.build U xenocara/lib/mesa/src/amd/compiler/tests/test_assembler.cpp U xenocara/lib/mesa/src/amd/compiler/tests/test_builder.cpp U xenocara/lib/mesa/src/amd/compiler/tests/test_hard_clause.cpp U xenocara/lib/mesa/src/amd/compiler/tests/test_insert_nops.cpp U xenocara/lib/mesa/src/amd/compiler/tests/test_insert_waitcnt.cpp U xenocara/lib/mesa/src/amd/compiler/tests/test_isel.cpp U xenocara/lib/mesa/src/amd/compiler/tests/test_optimizer.cpp U xenocara/lib/mesa/src/amd/compiler/tests/test_optimizer_postRA.cpp U xenocara/lib/mesa/src/amd/compiler/tests/test_regalloc.cpp U xenocara/lib/mesa/src/amd/compiler/tests/test_sdwa.cpp U xenocara/lib/mesa/src/amd/compiler/tests/test_tests.cpp U xenocara/lib/mesa/src/amd/compiler/tests/test_to_hw_instr.cpp U xenocara/lib/mesa/src/amd/drm-shim/README.md U xenocara/lib/mesa/src/amd/drm-shim/meson.build U xenocara/lib/mesa/src/amd/drm-shim/radeon_noop_drm_shim.c U xenocara/lib/mesa/src/amd/llvm/ac_llvm_build.c U xenocara/lib/mesa/src/amd/llvm/ac_llvm_build.h U xenocara/lib/mesa/src/amd/llvm/ac_llvm_cull.c U xenocara/lib/mesa/src/amd/llvm/ac_llvm_cull.h U xenocara/lib/mesa/src/amd/llvm/ac_llvm_helper.cpp C xenocara/lib/mesa/src/amd/llvm/ac_llvm_util.c U xenocara/lib/mesa/src/amd/llvm/ac_llvm_util.h U xenocara/lib/mesa/src/amd/llvm/ac_nir_to_llvm.c U xenocara/lib/mesa/src/amd/llvm/ac_nir_to_llvm.h U xenocara/lib/mesa/src/amd/llvm/ac_shader_abi.h U xenocara/lib/mesa/src/amd/llvm/meson.build U xenocara/lib/mesa/src/amd/registers/canonicalize.py U xenocara/lib/mesa/src/amd/registers/gfx10-rsrc.json U xenocara/lib/mesa/src/amd/registers/gfx10.json U xenocara/lib/mesa/src/amd/registers/gfx103.json U xenocara/lib/mesa/src/amd/registers/gfx11-rsrc.json U xenocara/lib/mesa/src/amd/registers/gfx11.json U xenocara/lib/mesa/src/amd/registers/gfx6.json U xenocara/lib/mesa/src/amd/registers/gfx7.json U xenocara/lib/mesa/src/amd/registers/gfx8.json U xenocara/lib/mesa/src/amd/registers/gfx81.json U xenocara/lib/mesa/src/amd/registers/gfx9.json U xenocara/lib/mesa/src/amd/registers/makeregheader.py U xenocara/lib/mesa/src/amd/registers/mergedbs.py U xenocara/lib/mesa/src/amd/registers/parse_kernel_headers.py U xenocara/lib/mesa/src/amd/registers/parseheader.py U xenocara/lib/mesa/src/amd/registers/pkt3.json U xenocara/lib/mesa/src/amd/registers/regdb.py U xenocara/lib/mesa/src/amd/registers/registers-manually-defined.json U xenocara/lib/mesa/src/amd/vulkan/.editorconfig U xenocara/lib/mesa/src/amd/vulkan/00-radv-defaults.conf U xenocara/lib/mesa/src/amd/vulkan/meson.build U xenocara/lib/mesa/src/amd/vulkan/radv_acceleration_structure.c U xenocara/lib/mesa/src/amd/vulkan/radv_acceleration_structure.h U xenocara/lib/mesa/src/amd/vulkan/radv_aco_shader_info.h U xenocara/lib/mesa/src/amd/vulkan/radv_android.c U xenocara/lib/mesa/src/amd/vulkan/radv_check_va.py C xenocara/lib/mesa/src/amd/vulkan/radv_cmd_buffer.c U xenocara/lib/mesa/src/amd/vulkan/radv_constants.h U xenocara/lib/mesa/src/amd/vulkan/radv_cs.h U xenocara/lib/mesa/src/amd/vulkan/radv_debug.c U xenocara/lib/mesa/src/amd/vulkan/radv_debug.h U xenocara/lib/mesa/src/amd/vulkan/radv_descriptor_set.c U xenocara/lib/mesa/src/amd/vulkan/radv_descriptor_set.h C xenocara/lib/mesa/src/amd/vulkan/radv_device.c C xenocara/lib/mesa/src/amd/vulkan/radv_formats.c U xenocara/lib/mesa/src/amd/vulkan/radv_device_generated_commands.c C xenocara/lib/mesa/src/amd/vulkan/radv_image.c U xenocara/lib/mesa/src/amd/vulkan/radv_llvm_helper.cpp U xenocara/lib/mesa/src/amd/vulkan/radv_llvm_helper.h U xenocara/lib/mesa/src/amd/vulkan/radv_meta.c U xenocara/lib/mesa/src/amd/vulkan/radv_meta.h U xenocara/lib/mesa/src/amd/vulkan/radv_meta_blit.c U xenocara/lib/mesa/src/amd/vulkan/radv_meta_blit2d.c U xenocara/lib/mesa/src/amd/vulkan/radv_meta_buffer.c U xenocara/lib/mesa/src/amd/vulkan/radv_meta_bufimage.c U xenocara/lib/mesa/src/amd/vulkan/radv_meta_clear.c U xenocara/lib/mesa/src/amd/vulkan/radv_meta_copy.c U xenocara/lib/mesa/src/amd/vulkan/radv_meta_copy_vrs_htile.c U xenocara/lib/mesa/src/amd/vulkan/radv_meta_dcc_retile.c U xenocara/lib/mesa/src/amd/vulkan/radv_meta_decompress.c C xenocara/lib/mesa/src/amd/vulkan/radv_pipeline.c U xenocara/lib/mesa/src/amd/vulkan/radv_meta_etc_decode.c U xenocara/lib/mesa/src/amd/vulkan/radv_meta_fast_clear.c U xenocara/lib/mesa/src/amd/vulkan/radv_meta_fmask_copy.c U xenocara/lib/mesa/src/amd/vulkan/radv_meta_fmask_expand.c U xenocara/lib/mesa/src/amd/vulkan/radv_meta_resolve.c U xenocara/lib/mesa/src/amd/vulkan/radv_meta_resolve_cs.c U xenocara/lib/mesa/src/amd/vulkan/radv_meta_resolve_fs.c U xenocara/lib/mesa/src/amd/vulkan/radv_nir_apply_pipeline_layout.c U xenocara/lib/mesa/src/amd/vulkan/radv_nir_lower_abi.c U xenocara/lib/mesa/src/amd/vulkan/radv_nir_lower_ray_queries.c U xenocara/lib/mesa/src/amd/vulkan/radv_nir_lower_ycbcr_textures.c U xenocara/lib/mesa/src/amd/vulkan/radv_nir_to_llvm.c U xenocara/lib/mesa/src/amd/vulkan/radv_perfcounter.c U xenocara/lib/mesa/src/amd/vulkan/radv_pipeline_cache.c U xenocara/lib/mesa/src/amd/vulkan/radv_pipeline_rt.c C xenocara/lib/mesa/src/amd/vulkan/radv_private.h C xenocara/lib/mesa/src/amd/vulkan/radv_query.c U xenocara/lib/mesa/src/amd/vulkan/radv_radeon_winsys.h U xenocara/lib/mesa/src/amd/vulkan/radv_rra.c U xenocara/lib/mesa/src/amd/vulkan/radv_rt_common.c U xenocara/lib/mesa/src/amd/vulkan/radv_rt_common.h U xenocara/lib/mesa/src/amd/vulkan/radv_sdma_copy_image.c U xenocara/lib/mesa/src/amd/vulkan/radv_shader.c U xenocara/lib/mesa/src/amd/vulkan/radv_shader.h U xenocara/lib/mesa/src/amd/vulkan/radv_shader_args.c U xenocara/lib/mesa/src/amd/vulkan/radv_shader_args.h U xenocara/lib/mesa/src/amd/vulkan/radv_shader_info.c U xenocara/lib/mesa/src/amd/vulkan/radv_spm.c C xenocara/lib/mesa/src/amd/vulkan/radv_sqtt.c U xenocara/lib/mesa/src/amd/vulkan/radv_wsi.c U xenocara/lib/mesa/src/amd/vulkan/si_cmd_buffer.c U xenocara/lib/mesa/src/amd/vulkan/vk_format.h N xenocara/lib/mesa/src/amd/vulkan/vulkan-android.sym C xenocara/lib/mesa/src/amd/vulkan/vulkan.sym U xenocara/lib/mesa/src/amd/vulkan/bvh/build_helpers.h U xenocara/lib/mesa/src/amd/vulkan/bvh/build_interface.h U xenocara/lib/mesa/src/amd/vulkan/bvh/bvh.h U xenocara/lib/mesa/src/amd/vulkan/bvh/converter_internal.comp U xenocara/lib/mesa/src/amd/vulkan/bvh/converter_leaf.comp U xenocara/lib/mesa/src/amd/vulkan/bvh/copy.comp U xenocara/lib/mesa/src/amd/vulkan/bvh/lbvh_internal.comp U xenocara/lib/mesa/src/amd/vulkan/bvh/leaf.comp U xenocara/lib/mesa/src/amd/vulkan/bvh/meson.build U xenocara/lib/mesa/src/amd/vulkan/bvh/morton.comp U xenocara/lib/mesa/src/amd/vulkan/bvh/ploc_internal.comp U xenocara/lib/mesa/src/amd/vulkan/layers/radv_metro_exodus.c N xenocara/lib/mesa/src/amd/vulkan/layers/radv_rage2.c U xenocara/lib/mesa/src/amd/vulkan/layers/radv_rra_layer.c C xenocara/lib/mesa/src/amd/vulkan/layers/radv_sqtt_layer.c U xenocara/lib/mesa/src/amd/vulkan/radix_sort/LICENSE U xenocara/lib/mesa/src/amd/vulkan/radix_sort/meson.build U xenocara/lib/mesa/src/amd/vulkan/radix_sort/radix_sort_vk.c U xenocara/lib/mesa/src/amd/vulkan/radix_sort/radix_sort_vk.h U xenocara/lib/mesa/src/amd/vulkan/radix_sort/radix_sort_vk_devaddr.h U xenocara/lib/mesa/src/amd/vulkan/radix_sort/radix_sort_vk_ext.h U xenocara/lib/mesa/src/amd/vulkan/radix_sort/radv_radix_sort.c U xenocara/lib/mesa/src/amd/vulkan/radix_sort/radv_radix_sort.h U xenocara/lib/mesa/src/amd/vulkan/radix_sort/target.h U xenocara/lib/mesa/src/amd/vulkan/radix_sort/common/macros.h U xenocara/lib/mesa/src/amd/vulkan/radix_sort/common/util.c U xenocara/lib/mesa/src/amd/vulkan/radix_sort/common/util.h U xenocara/lib/mesa/src/amd/vulkan/radix_sort/common/vk/barrier.c U xenocara/lib/mesa/src/amd/vulkan/radix_sort/common/vk/barrier.h U xenocara/lib/mesa/src/amd/vulkan/radix_sort/shaders/bufref.h U xenocara/lib/mesa/src/amd/vulkan/radix_sort/shaders/fill.comp U xenocara/lib/mesa/src/amd/vulkan/radix_sort/shaders/histogram.comp U xenocara/lib/mesa/src/amd/vulkan/radix_sort/shaders/init.comp U xenocara/lib/mesa/src/amd/vulkan/radix_sort/shaders/meson.build U xenocara/lib/mesa/src/amd/vulkan/radix_sort/shaders/prefix.comp U xenocara/lib/mesa/src/amd/vulkan/radix_sort/shaders/prefix.h U xenocara/lib/mesa/src/amd/vulkan/radix_sort/shaders/prefix_limits.h U xenocara/lib/mesa/src/amd/vulkan/radix_sort/shaders/push.h U xenocara/lib/mesa/src/amd/vulkan/radix_sort/shaders/scatter.glsl U xenocara/lib/mesa/src/amd/vulkan/radix_sort/shaders/scatter_0_even.comp U xenocara/lib/mesa/src/amd/vulkan/radix_sort/shaders/scatter_0_odd.comp U xenocara/lib/mesa/src/amd/vulkan/radix_sort/shaders/scatter_1_even.comp U xenocara/lib/mesa/src/amd/vulkan/radix_sort/shaders/scatter_1_odd.comp U xenocara/lib/mesa/src/amd/vulkan/radix_sort/targets/u64/config.h U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_bo.c U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_bo.h C xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.c U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.h U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_surface.c U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_surface.h U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.c U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys_public.h U xenocara/lib/mesa/src/amd/vulkan/winsys/null/radv_null_bo.c U xenocara/lib/mesa/src/amd/vulkan/winsys/null/radv_null_bo.h U xenocara/lib/mesa/src/amd/vulkan/winsys/null/radv_null_cs.c U xenocara/lib/mesa/src/amd/vulkan/winsys/null/radv_null_cs.h U xenocara/lib/mesa/src/amd/vulkan/winsys/null/radv_null_winsys.c U xenocara/lib/mesa/src/amd/vulkan/winsys/null/radv_null_winsys.h U xenocara/lib/mesa/src/amd/vulkan/winsys/null/radv_null_winsys_public.h U xenocara/lib/mesa/src/android_stub/README.md U xenocara/lib/mesa/src/android_stub/backtrace_stub.cpp U xenocara/lib/mesa/src/android_stub/cutils_stub.cpp U xenocara/lib/mesa/src/android_stub/hardware_stub.cpp U xenocara/lib/mesa/src/android_stub/log_stub.cpp U xenocara/lib/mesa/src/android_stub/meson.build U xenocara/lib/mesa/src/android_stub/nativewindow_stub.cpp U xenocara/lib/mesa/src/android_stub/sync_stub.cpp U xenocara/lib/mesa/src/asahi/meson.build U xenocara/lib/mesa/src/asahi/compiler/agx_builder.h.py U xenocara/lib/mesa/src/asahi/compiler/agx_compile.c U xenocara/lib/mesa/src/asahi/compiler/agx_compile.h U xenocara/lib/mesa/src/asahi/compiler/agx_compiler.h U xenocara/lib/mesa/src/asahi/compiler/agx_dce.c U xenocara/lib/mesa/src/asahi/compiler/agx_liveness.c U xenocara/lib/mesa/src/asahi/compiler/agx_lower_64bit.c U xenocara/lib/mesa/src/asahi/compiler/agx_lower_parallel_copy.c U xenocara/lib/mesa/src/asahi/compiler/agx_lower_pseudo.c U xenocara/lib/mesa/src/asahi/compiler/agx_lower_resinfo.c U xenocara/lib/mesa/src/asahi/compiler/agx_minifloat.h U xenocara/lib/mesa/src/asahi/compiler/agx_nir_lower_array_texture.c U xenocara/lib/mesa/src/asahi/compiler/agx_nir_opt_preamble.c U xenocara/lib/mesa/src/asahi/compiler/agx_opcodes.c.py U xenocara/lib/mesa/src/asahi/compiler/agx_opcodes.h.py U xenocara/lib/mesa/src/asahi/compiler/agx_opcodes.py U xenocara/lib/mesa/src/asahi/compiler/agx_optimizer.c U xenocara/lib/mesa/src/asahi/compiler/agx_pack.c U xenocara/lib/mesa/src/asahi/compiler/agx_print.c U xenocara/lib/mesa/src/asahi/compiler/agx_register_allocate.c U xenocara/lib/mesa/src/asahi/compiler/agx_uniforms.c U xenocara/lib/mesa/src/asahi/compiler/agx_validate.c U xenocara/lib/mesa/src/asahi/compiler/meson.build U xenocara/lib/mesa/src/asahi/compiler/test/agx_test.h U xenocara/lib/mesa/src/asahi/compiler/test/test-lower-parallel-copy.cpp U xenocara/lib/mesa/src/asahi/compiler/test/test-lower-pseudo.cpp U xenocara/lib/mesa/src/asahi/compiler/test/test-minifloat.cpp U xenocara/lib/mesa/src/asahi/compiler/test/test-optimizer.cpp U xenocara/lib/mesa/src/asahi/layout/README U xenocara/lib/mesa/src/asahi/layout/layout.c U xenocara/lib/mesa/src/asahi/layout/layout.h U xenocara/lib/mesa/src/asahi/layout/meson.build U xenocara/lib/mesa/src/asahi/layout/tiling.c U xenocara/lib/mesa/src/asahi/layout/tests/test-layout.cpp U xenocara/lib/mesa/src/asahi/lib/agx_bo.h U xenocara/lib/mesa/src/asahi/lib/agx_device.c U xenocara/lib/mesa/src/asahi/lib/agx_device.h U xenocara/lib/mesa/src/asahi/lib/agx_formats.c U xenocara/lib/mesa/src/asahi/lib/agx_formats.h U xenocara/lib/mesa/src/asahi/lib/agx_ppp.h U xenocara/lib/mesa/src/asahi/lib/cmdbuf.xml U xenocara/lib/mesa/src/asahi/lib/decode.c U xenocara/lib/mesa/src/asahi/lib/decode.h U xenocara/lib/mesa/src/asahi/lib/dyld_interpose.h U xenocara/lib/mesa/src/asahi/lib/gen_pack.py U xenocara/lib/mesa/src/asahi/lib/hexdump.h U xenocara/lib/mesa/src/asahi/lib/io.h U xenocara/lib/mesa/src/asahi/lib/meson.build U xenocara/lib/mesa/src/asahi/lib/pool.c U xenocara/lib/mesa/src/asahi/lib/pool.h U xenocara/lib/mesa/src/asahi/lib/wrap.c U xenocara/lib/mesa/src/asahi/lib/tests/test-packing.cpp U xenocara/lib/mesa/src/broadcom/.editorconfig U xenocara/lib/mesa/src/broadcom/meson.build U xenocara/lib/mesa/src/broadcom/ci/broadcom-rpi3-fails.txt U xenocara/lib/mesa/src/broadcom/ci/broadcom-rpi3-flakes.txt U xenocara/lib/mesa/src/broadcom/ci/broadcom-rpi3-skips.txt U xenocara/lib/mesa/src/broadcom/ci/broadcom-rpi4-fails.txt U xenocara/lib/mesa/src/broadcom/ci/broadcom-rpi4-flakes.txt U xenocara/lib/mesa/src/broadcom/ci/broadcom-rpi4-skips.txt U xenocara/lib/mesa/src/broadcom/ci/deqp-broadcom-rpi3.toml U xenocara/lib/mesa/src/broadcom/ci/deqp-broadcom-rpi4.toml U xenocara/lib/mesa/src/broadcom/ci/gitlab-ci.yml U xenocara/lib/mesa/src/broadcom/ci/traces-broadcom.yml U xenocara/lib/mesa/src/broadcom/cle/gen_pack_header.py U xenocara/lib/mesa/src/broadcom/cle/meson.build U xenocara/lib/mesa/src/broadcom/cle/v3d_decoder.c U xenocara/lib/mesa/src/broadcom/cle/v3d_decoder.h U xenocara/lib/mesa/src/broadcom/cle/v3d_packet_helpers.h U xenocara/lib/mesa/src/broadcom/cle/v3d_packet_v21.xml U xenocara/lib/mesa/src/broadcom/cle/v3d_packet_v33.xml U xenocara/lib/mesa/src/broadcom/cle/v3dx_pack.h U xenocara/lib/mesa/src/broadcom/clif/clif_dump.c U xenocara/lib/mesa/src/broadcom/clif/clif_dump.h U xenocara/lib/mesa/src/broadcom/clif/clif_private.h U xenocara/lib/mesa/src/broadcom/clif/v3dx_dump.c U xenocara/lib/mesa/src/broadcom/common/v3d_cpu_tiling.h U xenocara/lib/mesa/src/broadcom/common/v3d_debug.c U xenocara/lib/mesa/src/broadcom/common/v3d_debug.h U xenocara/lib/mesa/src/broadcom/common/v3d_device_info.c U xenocara/lib/mesa/src/broadcom/common/v3d_device_info.h U xenocara/lib/mesa/src/broadcom/common/v3d_limits.h U xenocara/lib/mesa/src/broadcom/common/v3d_macros.h U xenocara/lib/mesa/src/broadcom/common/v3d_tfu.h U xenocara/lib/mesa/src/broadcom/common/v3d_tiling.c U xenocara/lib/mesa/src/broadcom/common/v3d_tiling.h U xenocara/lib/mesa/src/broadcom/common/v3d_util.c U xenocara/lib/mesa/src/broadcom/common/v3d_util.h U xenocara/lib/mesa/src/broadcom/compiler/meson.build U xenocara/lib/mesa/src/broadcom/compiler/nir_to_vir.c U xenocara/lib/mesa/src/broadcom/compiler/qpu_schedule.c U xenocara/lib/mesa/src/broadcom/compiler/qpu_validate.c U xenocara/lib/mesa/src/broadcom/compiler/v3d33_tex.c U xenocara/lib/mesa/src/broadcom/compiler/v3d33_vpm_setup.c U xenocara/lib/mesa/src/broadcom/compiler/v3d40_tex.c U xenocara/lib/mesa/src/broadcom/compiler/v3d_compiler.h U xenocara/lib/mesa/src/broadcom/compiler/v3d_nir_lower_image_load_store.c U xenocara/lib/mesa/src/broadcom/compiler/v3d_nir_lower_io.c U xenocara/lib/mesa/src/broadcom/compiler/v3d_nir_lower_line_smooth.c U xenocara/lib/mesa/src/broadcom/compiler/v3d_nir_lower_load_store_bitsize.c U xenocara/lib/mesa/src/broadcom/compiler/v3d_nir_lower_logic_ops.c U xenocara/lib/mesa/src/broadcom/compiler/v3d_nir_lower_robust_access.c U xenocara/lib/mesa/src/broadcom/compiler/v3d_nir_lower_scratch.c U xenocara/lib/mesa/src/broadcom/compiler/v3d_nir_lower_txf_ms.c U xenocara/lib/mesa/src/broadcom/compiler/vir.c U xenocara/lib/mesa/src/broadcom/compiler/vir_dump.c U xenocara/lib/mesa/src/broadcom/compiler/vir_live_variables.c U xenocara/lib/mesa/src/broadcom/compiler/vir_opt_constant_alu.c U xenocara/lib/mesa/src/broadcom/compiler/vir_opt_copy_propagate.c U xenocara/lib/mesa/src/broadcom/compiler/vir_opt_dead_code.c U xenocara/lib/mesa/src/broadcom/compiler/vir_opt_redundant_flags.c U xenocara/lib/mesa/src/broadcom/compiler/vir_opt_small_immediates.c U xenocara/lib/mesa/src/broadcom/compiler/vir_register_allocate.c U xenocara/lib/mesa/src/broadcom/compiler/vir_to_qpu.c U xenocara/lib/mesa/src/broadcom/drm-shim/README.md U xenocara/lib/mesa/src/broadcom/drm-shim/meson.build U xenocara/lib/mesa/src/broadcom/drm-shim/v3d_noop.c U xenocara/lib/mesa/src/broadcom/drm-shim/vc4_noop.c U xenocara/lib/mesa/src/broadcom/qpu/meson.build U xenocara/lib/mesa/src/broadcom/qpu/qpu_disasm.c U xenocara/lib/mesa/src/broadcom/qpu/qpu_disasm.h U xenocara/lib/mesa/src/broadcom/qpu/qpu_instr.c U xenocara/lib/mesa/src/broadcom/qpu/qpu_instr.h U xenocara/lib/mesa/src/broadcom/qpu/qpu_pack.c U xenocara/lib/mesa/src/broadcom/qpu/qpu_validate.c U xenocara/lib/mesa/src/broadcom/qpu/tests/qpu_disasm.c U xenocara/lib/mesa/src/broadcom/simulator/meson.build U xenocara/lib/mesa/src/broadcom/simulator/v3d_simulator.c U xenocara/lib/mesa/src/broadcom/simulator/v3d_simulator.h U xenocara/lib/mesa/src/broadcom/simulator/v3d_simulator_wrapper.cpp U xenocara/lib/mesa/src/broadcom/simulator/v3d_simulator_wrapper.h U xenocara/lib/mesa/src/broadcom/simulator/v3dx_simulator.c U xenocara/lib/mesa/src/broadcom/simulator/v3dx_simulator.h U xenocara/lib/mesa/src/broadcom/vulkan/.dir-locals.el U xenocara/lib/mesa/src/broadcom/vulkan/.editorconfig U xenocara/lib/mesa/src/broadcom/vulkan/meson.build U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_android.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_bo.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_bo.h U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_cl.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_cl.h U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_cmd_buffer.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_debug.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_debug.h U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_descriptor_set.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_device.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_event.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_formats.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_image.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_limits.h U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_meta_clear.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_meta_common.h U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_pass.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_meta_copy.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_pipeline.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_pipeline_cache.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_private.h U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_query.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_queue.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_uniforms.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dv_wsi.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dvx_cmd_buffer.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dvx_descriptor_set.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dvx_device.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dvx_formats.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dvx_image.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dvx_meta_common.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dvx_pipeline.c U xenocara/lib/mesa/src/broadcom/vulkan/v3dvx_private.h U xenocara/lib/mesa/src/broadcom/vulkan/v3dvx_queue.c U xenocara/lib/mesa/src/c11/threads.h U xenocara/lib/mesa/src/c11/time.h U xenocara/lib/mesa/src/c11/impl/.editorconfig U xenocara/lib/mesa/src/c11/impl/meson.build U xenocara/lib/mesa/src/c11/impl/threads_posix.c U xenocara/lib/mesa/src/c11/impl/threads_win32.c U xenocara/lib/mesa/src/c11/impl/threads_win32.h U xenocara/lib/mesa/src/c11/impl/threads_win32_tls_callback.cpp U xenocara/lib/mesa/src/c11/impl/time.c U xenocara/lib/mesa/src/compiler/builtin_type_macros.h U xenocara/lib/mesa/src/compiler/glsl_types.cpp U xenocara/lib/mesa/src/compiler/glsl_types.h U xenocara/lib/mesa/src/compiler/meson.build U xenocara/lib/mesa/src/compiler/nir_gl_types.h U xenocara/lib/mesa/src/compiler/nir_types.cpp U xenocara/lib/mesa/src/compiler/nir_types.h U xenocara/lib/mesa/src/compiler/shader_enums.c U xenocara/lib/mesa/src/compiler/shader_enums.h U xenocara/lib/mesa/src/compiler/shader_info.h U xenocara/lib/mesa/src/compiler/clc/clc.c U xenocara/lib/mesa/src/compiler/clc/clc.h U xenocara/lib/mesa/src/compiler/clc/clc_helpers.cpp U xenocara/lib/mesa/src/compiler/clc/clc_helpers.h U xenocara/lib/mesa/src/compiler/clc/meson.build U xenocara/lib/mesa/src/compiler/glsl/README U xenocara/lib/mesa/src/compiler/glsl/TODO U xenocara/lib/mesa/src/compiler/glsl/ast.h U xenocara/lib/mesa/src/compiler/glsl/ast_array_index.cpp U xenocara/lib/mesa/src/compiler/glsl/ast_expr.cpp U xenocara/lib/mesa/src/compiler/glsl/ast_function.cpp U xenocara/lib/mesa/src/compiler/glsl/ast_to_hir.cpp U xenocara/lib/mesa/src/compiler/glsl/ast_type.cpp U xenocara/lib/mesa/src/compiler/glsl/builtin_functions.cpp U xenocara/lib/mesa/src/compiler/glsl/builtin_functions.h U xenocara/lib/mesa/src/compiler/glsl/builtin_int64.h U xenocara/lib/mesa/src/compiler/glsl/builtin_types.cpp U xenocara/lib/mesa/src/compiler/glsl/builtin_variables.cpp U xenocara/lib/mesa/src/compiler/glsl/float64.glsl U xenocara/lib/mesa/src/compiler/glsl/generate_ir.cpp U xenocara/lib/mesa/src/compiler/glsl/gl_nir.h U xenocara/lib/mesa/src/compiler/glsl/gl_nir_link_atomics.c U xenocara/lib/mesa/src/compiler/glsl/gl_nir_link_uniform_blocks.c U xenocara/lib/mesa/src/compiler/glsl/ir.cpp U xenocara/lib/mesa/src/compiler/glsl/gl_nir_link_xfb.c U xenocara/lib/mesa/src/compiler/glsl/gl_nir_link_uniform_initializers.c U xenocara/lib/mesa/src/compiler/glsl/gl_nir_link_uniforms.c U xenocara/lib/mesa/src/compiler/glsl/gl_nir_link_varyings.c U xenocara/lib/mesa/src/compiler/glsl/gl_nir_link_varyings.h U xenocara/lib/mesa/src/compiler/glsl/gl_nir_linker.c U xenocara/lib/mesa/src/compiler/glsl/gl_nir_linker.h U xenocara/lib/mesa/src/compiler/glsl/gl_nir_lower_atomics.c U xenocara/lib/mesa/src/compiler/glsl/gl_nir_lower_buffers.c U xenocara/lib/mesa/src/compiler/glsl/gl_nir_lower_images.c U xenocara/lib/mesa/src/compiler/glsl/gl_nir_lower_packed_varyings.c U xenocara/lib/mesa/src/compiler/glsl/gl_nir_lower_samplers.c U xenocara/lib/mesa/src/compiler/glsl/gl_nir_lower_samplers_as_deref.c U xenocara/lib/mesa/src/compiler/glsl/gl_nir_lower_xfb_varying.c U xenocara/lib/mesa/src/compiler/glsl/gl_nir_opt_dead_builtin_varyings.c U xenocara/lib/mesa/src/compiler/glsl/glsl_lexer.ll U xenocara/lib/mesa/src/compiler/glsl/glsl_parser.yy U xenocara/lib/mesa/src/compiler/glsl/glsl_parser_extras.cpp U xenocara/lib/mesa/src/compiler/glsl/glsl_parser_extras.h U xenocara/lib/mesa/src/compiler/glsl/glsl_symbol_table.cpp U xenocara/lib/mesa/src/compiler/glsl/glsl_symbol_table.h U xenocara/lib/mesa/src/compiler/glsl/glsl_to_nir.cpp U xenocara/lib/mesa/src/compiler/glsl/glsl_to_nir.h U xenocara/lib/mesa/src/compiler/glsl/hir_field_selection.cpp U xenocara/lib/mesa/src/compiler/glsl/int64.glsl U xenocara/lib/mesa/src/compiler/glsl/ir.h U xenocara/lib/mesa/src/compiler/glsl/ir_array_refcount.cpp U xenocara/lib/mesa/src/compiler/glsl/ir_array_refcount.h U xenocara/lib/mesa/src/compiler/glsl/ir_basic_block.cpp U xenocara/lib/mesa/src/compiler/glsl/ir_basic_block.h U xenocara/lib/mesa/src/compiler/glsl/ir_builder.cpp U xenocara/lib/mesa/src/compiler/glsl/ir_builder.h U xenocara/lib/mesa/src/compiler/glsl/ir_builder_print_visitor.cpp U xenocara/lib/mesa/src/compiler/glsl/ir_reader.h U xenocara/lib/mesa/src/compiler/glsl/ir_builder_print_visitor.h U xenocara/lib/mesa/src/compiler/glsl/ir_clone.cpp U xenocara/lib/mesa/src/compiler/glsl/ir_constant_expression.cpp U xenocara/lib/mesa/src/compiler/glsl/ir_equals.cpp U xenocara/lib/mesa/src/compiler/glsl/ir_expression_flattening.cpp U xenocara/lib/mesa/src/compiler/glsl/ir_expression_flattening.h U xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation.py U xenocara/lib/mesa/src/compiler/glsl/ir_function.cpp U xenocara/lib/mesa/src/compiler/glsl/ir_function_can_inline.cpp U xenocara/lib/mesa/src/compiler/glsl/ir_function_detect_recursion.cpp U xenocara/lib/mesa/src/compiler/glsl/ir_function_inlining.h U xenocara/lib/mesa/src/compiler/glsl/ir_hierarchical_visitor.cpp U xenocara/lib/mesa/src/compiler/glsl/ir_hierarchical_visitor.h U xenocara/lib/mesa/src/compiler/glsl/ir_hv_accept.cpp U xenocara/lib/mesa/src/compiler/glsl/ir_optimization.h U xenocara/lib/mesa/src/compiler/glsl/list.h U xenocara/lib/mesa/src/compiler/glsl/ir_print_visitor.cpp U xenocara/lib/mesa/src/compiler/glsl/ir_print_visitor.h U xenocara/lib/mesa/src/compiler/glsl/ir_reader.cpp U xenocara/lib/mesa/src/compiler/glsl/ir_rvalue_visitor.cpp U xenocara/lib/mesa/src/compiler/glsl/ir_rvalue_visitor.h U xenocara/lib/mesa/src/compiler/glsl/ir_uniform.h U xenocara/lib/mesa/src/compiler/glsl/ir_validate.cpp U xenocara/lib/mesa/src/compiler/glsl/ir_variable_refcount.cpp U xenocara/lib/mesa/src/compiler/glsl/ir_variable_refcount.h U xenocara/lib/mesa/src/compiler/glsl/ir_visitor.h U xenocara/lib/mesa/src/compiler/glsl/link_functions.cpp U xenocara/lib/mesa/src/compiler/glsl/link_interface_blocks.cpp U xenocara/lib/mesa/src/compiler/glsl/link_uniform_block_active_visitor.cpp U xenocara/lib/mesa/src/compiler/glsl/link_uniform_block_active_visitor.h U xenocara/lib/mesa/src/compiler/glsl/link_uniform_blocks.cpp U xenocara/lib/mesa/src/compiler/glsl/link_uniforms.cpp U xenocara/lib/mesa/src/compiler/glsl/link_varyings.cpp U xenocara/lib/mesa/src/compiler/glsl/link_varyings.h U xenocara/lib/mesa/src/compiler/glsl/linker.cpp U xenocara/lib/mesa/src/compiler/glsl/linker.h U xenocara/lib/mesa/src/compiler/glsl/linker_util.cpp U xenocara/lib/mesa/src/compiler/glsl/linker_util.h U xenocara/lib/mesa/src/compiler/glsl/lower_blend_equation_advanced.cpp U xenocara/lib/mesa/src/compiler/glsl/lower_builtins.cpp U xenocara/lib/mesa/src/compiler/glsl/lower_discard.cpp U xenocara/lib/mesa/src/compiler/glsl/lower_discard_flow.cpp U xenocara/lib/mesa/src/compiler/glsl/lower_distance.cpp U xenocara/lib/mesa/src/compiler/glsl/lower_instructions.cpp U xenocara/lib/mesa/src/compiler/glsl/lower_int64.cpp U xenocara/lib/mesa/src/compiler/glsl/lower_jumps.cpp U xenocara/lib/mesa/src/compiler/glsl/lower_mat_op_to_vec.cpp U xenocara/lib/mesa/src/compiler/glsl/lower_named_interface_blocks.cpp U xenocara/lib/mesa/src/compiler/glsl/lower_packing_builtins.cpp U xenocara/lib/mesa/src/compiler/glsl/main.cpp U xenocara/lib/mesa/src/compiler/glsl/lower_precision.cpp U xenocara/lib/mesa/src/compiler/glsl/lower_subroutine.cpp U xenocara/lib/mesa/src/compiler/glsl/lower_tess_level.cpp U xenocara/lib/mesa/src/compiler/glsl/lower_vec_index_to_cond_assign.cpp U xenocara/lib/mesa/src/compiler/glsl/lower_vector_derefs.cpp U xenocara/lib/mesa/src/compiler/glsl/lower_vector_insert.cpp U xenocara/lib/mesa/src/compiler/glsl/meson.build U xenocara/lib/mesa/src/compiler/glsl/opt_add_neg_to_sub.h U xenocara/lib/mesa/src/compiler/glsl/opt_algebraic.cpp U xenocara/lib/mesa/src/compiler/glsl/opt_constant_folding.cpp U xenocara/lib/mesa/src/compiler/glsl/opt_constant_propagation.cpp U xenocara/lib/mesa/src/compiler/glsl/opt_constant_variable.cpp U xenocara/lib/mesa/src/compiler/glsl/opt_copy_propagation_elements.cpp U xenocara/lib/mesa/src/compiler/glsl/opt_dead_builtin_variables.cpp U xenocara/lib/mesa/src/compiler/glsl/opt_dead_code.cpp U xenocara/lib/mesa/src/compiler/glsl/opt_dead_code_local.cpp U xenocara/lib/mesa/src/compiler/glsl/opt_dead_functions.cpp U xenocara/lib/mesa/src/compiler/glsl/opt_flatten_nested_if_blocks.cpp U xenocara/lib/mesa/src/compiler/glsl/opt_flip_matrices.cpp U xenocara/lib/mesa/src/compiler/glsl/opt_function_inlining.cpp U xenocara/lib/mesa/src/compiler/glsl/opt_if_simplification.cpp U xenocara/lib/mesa/src/compiler/glsl/opt_minmax.cpp U xenocara/lib/mesa/src/compiler/glsl/opt_rebalance_tree.cpp U xenocara/lib/mesa/src/compiler/glsl/opt_tree_grafting.cpp U xenocara/lib/mesa/src/compiler/glsl/program.h U xenocara/lib/mesa/src/compiler/glsl/propagate_invariance.cpp U xenocara/lib/mesa/src/compiler/glsl/s_expression.cpp U xenocara/lib/mesa/src/compiler/glsl/s_expression.h U xenocara/lib/mesa/src/compiler/glsl/serialize.cpp U xenocara/lib/mesa/src/compiler/glsl/serialize.h U xenocara/lib/mesa/src/compiler/glsl/shader_cache.cpp U xenocara/lib/mesa/src/compiler/glsl/shader_cache.h C xenocara/lib/mesa/src/compiler/glsl/standalone.cpp U xenocara/lib/mesa/src/compiler/glsl/standalone.h C xenocara/lib/mesa/src/compiler/glsl/standalone_scaffolding.cpp C xenocara/lib/mesa/src/compiler/glsl/standalone_scaffolding.h U xenocara/lib/mesa/src/compiler/glsl/string_to_uint_map.cpp U xenocara/lib/mesa/src/compiler/glsl/string_to_uint_map.h U xenocara/lib/mesa/src/compiler/glsl/test.cpp U xenocara/lib/mesa/src/compiler/glsl/test_optpass.cpp U xenocara/lib/mesa/src/compiler/glsl/test_optpass.h U xenocara/lib/mesa/src/compiler/glsl/glcpp/README U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp-lex.l C xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp-parse.y U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp.h U xenocara/lib/mesa/src/compiler/glsl/glcpp/meson.build U xenocara/lib/mesa/src/compiler/glsl/glcpp/pp.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/pp_standalone_scaffolding.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/pp_standalone_scaffolding.h U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/000-content-with-spaces.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/000-content-with-spaces.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/001-define.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/001-define.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/002-define-chain.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/002-define-chain.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/003-define-chain-reverse.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/003-define-chain-reverse.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/004-define-recursive.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/004-define-recursive.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/005-define-composite-chain.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/005-define-composite-chain.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/008-define-empty.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/006-define-composite-chain-reverse.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/006-define-composite-chain-reverse.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/007-define-composite-recursive.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/007-define-composite-recursive.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/008-define-empty.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/009-undef.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/009-undef.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/010-undef-re-define.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/010-undef-re-define.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/011-define-func-empty.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/011-define-func-empty.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/012-define-func-no-args.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/013-define-func-1-arg-unused.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/012-define-func-no-args.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/013-define-func-1-arg-unused.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/014-define-func-2-arg-unused.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/014-define-func-2-arg-unused.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/015-define-object-with-parens.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/015-define-object-with-parens.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/016-define-func-1-arg.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/016-define-func-1-arg.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/017-define-func-2-args.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/017-define-func-2-args.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/018-define-func-macro-as-parameter.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/021-define-func-compose.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/019-define-func-1-arg-multi.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/018-define-func-macro-as-parameter.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/019-define-func-1-arg-multi.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/020-define-func-2-arg-multi.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/020-define-func-2-arg-multi.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/021-define-func-compose.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/022-define-func-arg-with-parens.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/022-define-func-arg-with-parens.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/023-define-extra-whitespace.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/023-define-extra-whitespace.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/024-define-chain-to-self-recursion.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/024-define-chain-to-self-recursion.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/025-func-macro-as-non-macro.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/025-func-macro-as-non-macro.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/026-define-func-extra-newlines.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/026-define-func-extra-newlines.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/027-define-chain-obj-to-func.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/027-define-chain-obj-to-func.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/028-define-chain-obj-to-non-func.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/028-define-chain-obj-to-non-func.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/029-define-chain-obj-to-func-with-args.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/038-func-arg-with-commas.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/029-define-chain-obj-to-func-with-args.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/030-define-chain-obj-to-func-compose.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/030-define-chain-obj-to-func-compose.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/031-define-chain-func-to-func-compose.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/031-define-chain-func-to-func-compose.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/032-define-func-self-recurse.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/032-define-func-self-recurse.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/033-define-func-self-compose.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/033-define-func-self-compose.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/034-define-func-self-compose-non-func.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/034-define-func-self-compose-non-func.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/035-define-func-self-compose-non-func-multi-token-argument.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/035-define-func-self-compose-non-func-multi-token-argument.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/036-define-func-non-macro-multi-token-argument.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/036-define-func-non-macro-multi-token-argument.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/037-finalize-unexpanded-macro.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/037-finalize-unexpanded-macro.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/038-func-arg-with-commas.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/040-token-pasting.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/039-func-arg-obj-macro-with-comma.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/039-func-arg-obj-macro-with-comma.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/040-token-pasting.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/041-if-0.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/041-if-0.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/042-if-1.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/042-if-1.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/043-if-0-else.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/043-if-0-else.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/044-if-1-else.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/044-if-1-else.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/045-if-0-elif.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/045-if-0-elif.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/046-if-1-elsif.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/046-if-1-elsif.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/047-if-elif-else.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/047-if-elif-else.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/048-if-nested.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/048-if-nested.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/049-if-expression-precedence.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/049-if-expression-precedence.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/050-if-defined.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/050-if-defined.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/051-if-relational.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/051-if-relational.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/052-if-bitwise.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/052-if-bitwise.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/053-if-divide-and-shift.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/053-if-divide-and-shift.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/054-if-with-macros.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/054-if-with-macros.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/055-define-chain-obj-to-func-parens-in-text.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/055-define-chain-obj-to-func-parens-in-text.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/056-macro-argument-with-comma.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/056-macro-argument-with-comma.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/057-empty-arguments.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/057-empty-arguments.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/058-token-pasting-empty-arguments.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/058-token-pasting-empty-arguments.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/059-token-pasting-integer.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/059-token-pasting-integer.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/060-left-paren-in-macro-right-paren-in-text.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/060-left-paren-in-macro-right-paren-in-text.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/061-define-chain-obj-to-func-multi.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/061-define-chain-obj-to-func-multi.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/062-if-0-skips-garbage.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/062-if-0-skips-garbage.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/063-comments.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/063-comments.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/064-version.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/064-version.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/065-if-defined-parens.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/065-if-defined-parens.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/066-if-nospace-expression.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/066-if-nospace-expression.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/067-nested-ifdef-ifndef.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/067-nested-ifdef-ifndef.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/068-accidental-pasting.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/068-accidental-pasting.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/069-repeated-argument.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/069-repeated-argument.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/070-undefined-macro-in-expression.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/070-undefined-macro-in-expression.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/071-punctuator.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/071-punctuator.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/073-if-in-ifdef.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/072-token-pasting-same-line.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/072-token-pasting-same-line.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/073-if-in-ifdef.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/074-elif-undef.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/074-elif-undef.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/075-elif-elif-undef.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/075-elif-elif-undef.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/076-elif-undef-nested.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/076-elif-undef-nested.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/077-else-without-if.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/077-else-without-if.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/078-elif-without-if.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/078-elif-without-if.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/079-endif-without-if.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/079-endif-without-if.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/080-if-without-expression.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/080-if-without-expression.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/081-elif-without-expression.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/081-elif-without-expression.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/082-invalid-paste.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/082-invalid-paste.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/083-unterminated-if.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/083-unterminated-if.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/084-unbalanced-parentheses.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/084-unbalanced-parentheses.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/085-incorrect-argument-count.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/087-if-comments.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/085-incorrect-argument-count.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/086-reserved-macro-names.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/086-reserved-macro-names.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/087-if-comments.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/088-redefine-macro-legitimate.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/088-redefine-macro-legitimate.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/089-redefine-macro-error.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/089-redefine-macro-error.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/090-hash-error.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/090-hash-error.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/091-hash-line.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/091-hash-line.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/092-redefine-macro-error-2.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/092-redefine-macro-error-2.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/093-divide-by-zero.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/093-divide-by-zero.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/094-divide-by-zero-short-circuit.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/094-divide-by-zero-short-circuit.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/095-recursive-define.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/095-recursive-define.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/096-paste-twice.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/096-paste-twice.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/097-paste-with-non-function-macro.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/097-paste-with-non-function-macro.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/098-elif-undefined.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/099-c99-example.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/098-elif-undefined.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/099-c99-example.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/100-macro-with-colon.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/100-macro-with-colon.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/101-macros-used-twice.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/101-macros-used-twice.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/102-garbage-after-endif.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/102-garbage-after-endif.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/103-garbage-after-else-0.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/103-garbage-after-else-0.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/104-hash-line-followed-by-code.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/104-hash-line-followed-by-code.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/106-multiline-hash-if.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/105-multiline-hash-line.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/105-multiline-hash-line.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/106-multiline-hash-if.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/107-multiline-hash-elif.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/107-multiline-hash-elif.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/108-no-space-after-hash-version.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/108-no-space-after-hash-version.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/109-no-space-after-hash-line.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/109-no-space-after-hash-line.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/110-no-space-digits-after-hash-elif.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/110-no-space-digits-after-hash-elif.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/111-no-space-operator-after-hash-if.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/111-no-space-operator-after-hash-if.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/112-no-space-operator-after-hash-elif.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/112-no-space-operator-after-hash-elif.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/113-line-and-file-macros.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/113-line-and-file-macros.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/114-paste-integer-tokens.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/114-paste-integer-tokens.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/115-line-continuations.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/115-line-continuations.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/116-disable-line-continuations.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/116-disable-line-continuations.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/117-line-continuation-and-non-continuation-backslash.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/117-line-continuation-and-non-continuation-backslash.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/118-comment-becomes-space.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/118-comment-becomes-space.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/119-elif-after-else.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/119-elif-after-else.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/120-undef-builtin.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/120-undef-builtin.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/121-comment-bug-72686.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/121-comment-bug-72686.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/glcpp_test.py U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/122-redefine-whitespace.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/122-redefine-whitespace.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/123-garbage-after-else-1.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/123-garbage-after-else-1.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/124-preprocessing-numbers.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/124-preprocessing-numbers.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/125-es-short-circuit-undefined.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/125-es-short-circuit-undefined.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/126-garbage-after-directive.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/126-garbage-after-directive.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/127-pragma-empty.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/127-pragma-empty.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/128-space-before-hash.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/128-space-before-hash.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/129-define-non-identifier.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/129-define-non-identifier.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/130-define-comment.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/130-define-comment.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/131-eof-without-newline.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/131-eof-without-newline.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/132-eof-without-newline-define.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/132-eof-without-newline-define.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/133-eof-without-newline-comment.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/133-eof-without-newline-comment.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/134-hash-comment-directive.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/134-hash-comment-directive.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/135-duplicate-parameter.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/135-duplicate-parameter.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/136-plus-plus-and-minus-minus.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/136-plus-plus-and-minus-minus.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/137-expand-macro-after-period.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/137-expand-macro-after-period.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/138-multi-line-comment-in-if-0.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/138-multi-line-comment-in-if-0.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/139-define-without-macro-name.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/139-define-without-macro-name.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/140-null-directive.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/140-null-directive.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/141-pragma-and-__LINE__.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/141-pragma-and-__LINE__.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/142-defined-within-macro.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/142-defined-within-macro.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/143-multiple-else.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/143-multiple-else.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/144-implicit-version.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/144-implicit-version.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/145-version-first.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/145-version-first.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/146-version-first-hash.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/146-version-first-hash.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/147-define-macro-no-space.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/147-define-macro-no-space.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/147-undef-builtin-allowed.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/147-undef-builtin-allowed.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/148-legal-characters.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/148-legal-characters.c.expected U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/149-hex-const-uppercase-prefix.c U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/149-hex-const-uppercase-prefix.c.expected U xenocara/lib/mesa/src/compiler/glsl/tests/array_refcount_test.cpp U xenocara/lib/mesa/src/compiler/glsl/tests/builtin_variable_test.cpp U xenocara/lib/mesa/src/compiler/glsl/tests/general_ir_test.cpp U xenocara/lib/mesa/src/compiler/glsl/tests/list_iterators.cpp U xenocara/lib/mesa/src/compiler/glsl/tests/lower_int64_test.cpp U xenocara/lib/mesa/src/compiler/glsl/tests/lower_jump_cases.py U xenocara/lib/mesa/src/compiler/glsl/tests/lower_precision_test.py U xenocara/lib/mesa/src/compiler/glsl/tests/meson.build U xenocara/lib/mesa/src/compiler/glsl/tests/opt_add_neg_to_sub_test.cpp U xenocara/lib/mesa/src/compiler/glsl/tests/optimization_test.py U xenocara/lib/mesa/src/compiler/glsl/tests/sampler_types_test.cpp U xenocara/lib/mesa/src/compiler/glsl/tests/sexps.py U xenocara/lib/mesa/src/compiler/glsl/tests/standalone_dump-builder.frag U xenocara/lib/mesa/src/compiler/glsl/tests/warnings_test.py U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/000-basic-test.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/000-basic-test.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/001-use-undefined-then-define.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/001-use-undefined-then-define.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/002-loop.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/002-loop.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/003-less.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/003-less.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/004-greater.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/004-greater.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/005-lequal.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/005-lequal.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/006-gequal.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/006-gequal.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/007-test-mod.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/007-test-mod.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/008-mulassign.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/008-mulassign.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/009-div-assign.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/009-div-assign.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/010-add-assign.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/010-add-assign.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/011-sub-assign.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/011-sub-assign.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/012-modassign.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/012-modassign.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/013-lsassign.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/013-lsassign.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/014-rsassign.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/018-bitand.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/014-rsassign.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/015-andassign.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/015-andassign.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/016-orassign.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/016-orassign.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/017-xorassign.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/017-xorassign.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/018-bitand.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/019-array.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/019-array.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/020-array-length.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/020-array-length.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/021-lshift.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/021-lshift.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/022-rshift.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/022-rshift.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/023-switch.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/023-switch.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/024-shaderout.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/024-shaderout.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/025-function-parameters.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/025-function-parameters.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/026-out-function-parameter-shaderout.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/026-out-function-parameter-shaderout.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/027-inout-function-parameter-shaderout.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/027-inout-function-parameter-shaderout.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/028-conditional.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/028-conditional.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/029-fieldselection.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/029-fieldselection.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/030-array-as-function-parameter.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/030-array-as-function-parameter.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/031-__-in-function-name.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/031-__-in-function-name.vert.expected U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/032-__-in-function-name-pragma-disable.vert U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/032-__-in-function-name-pragma-disable.vert.expected U xenocara/lib/mesa/src/compiler/isaspec/decode.c U xenocara/lib/mesa/src/compiler/isaspec/decode.h U xenocara/lib/mesa/src/compiler/isaspec/decode.py U xenocara/lib/mesa/src/compiler/isaspec/encode.py U xenocara/lib/mesa/src/compiler/isaspec/isa.py U xenocara/lib/mesa/src/compiler/isaspec/isaspec.h U xenocara/lib/mesa/src/compiler/isaspec/meson.build U xenocara/lib/mesa/src/compiler/nir/README U xenocara/lib/mesa/src/compiler/nir/meson.build U xenocara/lib/mesa/src/compiler/nir/nir.c U xenocara/lib/mesa/src/compiler/nir/nir.h U xenocara/lib/mesa/src/compiler/nir/nir_algebraic.py U xenocara/lib/mesa/src/compiler/nir/nir_builder.c C xenocara/lib/mesa/src/compiler/nir/nir_builder.h U xenocara/lib/mesa/src/compiler/nir/nir_builder_opcodes_h.py U xenocara/lib/mesa/src/compiler/nir/nir_builtin_builder.c U xenocara/lib/mesa/src/compiler/nir/nir_builtin_builder.h U xenocara/lib/mesa/src/compiler/nir/nir_clone.c U xenocara/lib/mesa/src/compiler/nir/nir_constant_expressions.h U xenocara/lib/mesa/src/compiler/nir/nir_constant_expressions.py U xenocara/lib/mesa/src/compiler/nir/nir_control_flow.c U xenocara/lib/mesa/src/compiler/nir/nir_control_flow.h U xenocara/lib/mesa/src/compiler/nir/nir_control_flow_private.h U xenocara/lib/mesa/src/compiler/nir/nir_conversion_builder.h U xenocara/lib/mesa/src/compiler/nir/nir_deref.c U xenocara/lib/mesa/src/compiler/nir/nir_convert_ycbcr.c U xenocara/lib/mesa/src/compiler/nir/nir_deref.h U xenocara/lib/mesa/src/compiler/nir/nir_divergence_analysis.c U xenocara/lib/mesa/src/compiler/nir/nir_dominance.c U xenocara/lib/mesa/src/compiler/nir/nir_format_convert.h C xenocara/lib/mesa/src/compiler/nir/nir_from_ssa.c U xenocara/lib/mesa/src/compiler/nir/nir_gather_info.c U xenocara/lib/mesa/src/compiler/nir/nir_gather_ssa_types.c U xenocara/lib/mesa/src/compiler/nir/nir_gather_xfb_info.c U xenocara/lib/mesa/src/compiler/nir/nir_group_loads.c U xenocara/lib/mesa/src/compiler/nir/nir_gs_count_vertices.c U xenocara/lib/mesa/src/compiler/nir/nir_inline_functions.c U xenocara/lib/mesa/src/compiler/nir/nir_inline_helpers.h U xenocara/lib/mesa/src/compiler/nir/nir_inline_uniforms.c U xenocara/lib/mesa/src/compiler/nir/nir_instr_set.c U xenocara/lib/mesa/src/compiler/nir/nir_instr_set.h U xenocara/lib/mesa/src/compiler/nir/nir_intrinsics.py U xenocara/lib/mesa/src/compiler/nir/nir_liveness.c U xenocara/lib/mesa/src/compiler/nir/nir_intrinsics_c.py U xenocara/lib/mesa/src/compiler/nir/nir_intrinsics_h.py U xenocara/lib/mesa/src/compiler/nir/nir_intrinsics_indices_h.py U xenocara/lib/mesa/src/compiler/nir/nir_linking_helpers.c U xenocara/lib/mesa/src/compiler/nir/nir_loop_analyze.c U xenocara/lib/mesa/src/compiler/nir/nir_loop_analyze.h U xenocara/lib/mesa/src/compiler/nir/nir_lower_alpha_test.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_alu.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_alu_width.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_amul.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_array_deref_of_vec.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_atomics_to_ssbo.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_bit_size.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_bitmap.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_blend.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_blend.h U xenocara/lib/mesa/src/compiler/nir/nir_lower_io.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_bool_to_bitsize.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_bool_to_float.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_bool_to_int32.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_cl_images.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_clamp_color_outputs.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_clip.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_clip_cull_distance_arrays.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_clip_disable.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_clip_halfz.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_const_arrays_to_uniforms.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_convert_alu_types.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_discard_if.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_discard_or_demote.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_fb_read.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_double_ops.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_drawpixels.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_flatshade.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_flrp.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_fp16_conv.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_fragcolor.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_fragcoord_wtrans.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_frexp.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_global_vars_to_local.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_goto_ifs.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_gs_intrinsics.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_idiv.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_image.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_indirect_derefs.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_tex.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_input_attachments.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_int64.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_int_to_float.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_interpolation.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_io_arrays_to_elements.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_io_to_scalar.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_io_to_temporaries.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_io_to_vector.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_is_helper_invocation.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_load_const_to_scalar.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_locals_to_regs.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_mediump.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_memcpy.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_memory_model.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_multiview.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_non_uniform_access.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_packing.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_passthrough_edgeflags.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_patch_vertices.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_phis_to_scalar.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_pntc_ytransform.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_point_size.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_point_size_mov.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_point_smooth.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_poly_line_smooth.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_printf.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_readonly_images_to_tex.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_regs_to_ssa.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_returns.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_samplers.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_scratch.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_shader_calls.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_single_sampled.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_ssbo.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_subgroups.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_system_values.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_sysvals_to_varyings.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_task_shader.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_tex_shadow.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_texcoord_replace.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_to_source_mods.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_two_sided_color.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_ubo_vec4.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_undef_to_zero.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_uniforms_to_ubo.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_var_copies.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_variable_initializers.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_vars_to_ssa.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_vec3_to_vec4.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_vec_to_movs.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_viewport_transform.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_wpos_center.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_wpos_ytransform.c U xenocara/lib/mesa/src/compiler/nir/nir_lower_wrmasks.c U xenocara/lib/mesa/src/compiler/nir/nir_metadata.c U xenocara/lib/mesa/src/compiler/nir/nir_move_vec_src_uses_to_dest.c U xenocara/lib/mesa/src/compiler/nir/nir_normalize_cubemap_coords.c U xenocara/lib/mesa/src/compiler/nir/nir_opcodes.py U xenocara/lib/mesa/src/compiler/nir/nir_opcodes_c.py U xenocara/lib/mesa/src/compiler/nir/nir_opcodes_h.py U xenocara/lib/mesa/src/compiler/nir/nir_opt_access.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_algebraic.py U xenocara/lib/mesa/src/compiler/nir/nir_opt_barriers.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_combine_stores.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_comparison_pre.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_conditional_discard.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_constant_folding.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_copy_prop_vars.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_copy_propagate.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_cse.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_dce.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_dead_cf.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_dead_write_vars.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_find_array_copies.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_fragdepth.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_gcm.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_idiv_const.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_if.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_intrinsics.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_large_constants.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_load_store_vectorize.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_loop_unroll.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_memcpy.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_move.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_move_discards_to_top.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_non_uniform_access.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_offsets.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_peephole_select.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_phi_precision.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_preamble.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_ray_queries.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_rematerialize_compares.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_remove_phis.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_shrink_stores.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_shrink_vectors.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_sink.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_trivial_continues.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_undef.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_uniform_atomics.c U xenocara/lib/mesa/src/compiler/nir/nir_opt_vectorize.c U xenocara/lib/mesa/src/compiler/nir/nir_passthrough_tcs.c U xenocara/lib/mesa/src/compiler/nir/nir_phi_builder.c U xenocara/lib/mesa/src/compiler/nir/nir_phi_builder.h U xenocara/lib/mesa/src/compiler/nir/nir_print.c U xenocara/lib/mesa/src/compiler/nir/nir_propagate_invariant.c U xenocara/lib/mesa/src/compiler/nir/nir_range_analysis.c U xenocara/lib/mesa/src/compiler/nir/nir_range_analysis.h U xenocara/lib/mesa/src/compiler/nir/nir_remove_dead_variables.c U xenocara/lib/mesa/src/compiler/nir/nir_repair_ssa.c U xenocara/lib/mesa/src/compiler/nir/nir_scale_fdiv.c U xenocara/lib/mesa/src/compiler/nir/nir_schedule.c U xenocara/lib/mesa/src/compiler/nir/nir_schedule.h U xenocara/lib/mesa/src/compiler/nir/nir_search.c U xenocara/lib/mesa/src/compiler/nir/nir_search.h U xenocara/lib/mesa/src/compiler/nir/nir_search_helpers.h U xenocara/lib/mesa/src/compiler/nir/nir_serialize.c U xenocara/lib/mesa/src/compiler/nir/nir_serialize.h U xenocara/lib/mesa/src/compiler/nir/nir_split_64bit_vec3_and_vec4.c U xenocara/lib/mesa/src/compiler/nir/nir_split_per_member_structs.c U xenocara/lib/mesa/src/compiler/nir/nir_split_var_copies.c U xenocara/lib/mesa/src/compiler/nir/nir_split_vars.c U xenocara/lib/mesa/src/compiler/nir/nir_sweep.c U xenocara/lib/mesa/src/compiler/nir/nir_to_lcssa.c U xenocara/lib/mesa/src/compiler/nir/nir_validate.c U xenocara/lib/mesa/src/compiler/nir/nir_vla.h U xenocara/lib/mesa/src/compiler/nir/nir_vulkan.h U xenocara/lib/mesa/src/compiler/nir/nir_worklist.c U xenocara/lib/mesa/src/compiler/nir/nir_worklist.h U xenocara/lib/mesa/src/compiler/nir/nir_xfb_info.h U xenocara/lib/mesa/src/compiler/nir/tests/algebraic_parser_test.py U xenocara/lib/mesa/src/compiler/nir/tests/algebraic_tests.cpp U xenocara/lib/mesa/src/compiler/nir/tests/builder_tests.cpp U xenocara/lib/mesa/src/compiler/nir/tests/comparison_pre_tests.cpp U xenocara/lib/mesa/src/compiler/nir/tests/control_flow_tests.cpp U xenocara/lib/mesa/src/compiler/nir/tests/core_tests.cpp U xenocara/lib/mesa/src/compiler/nir/tests/dce_tests.cpp U xenocara/lib/mesa/src/compiler/nir/tests/load_store_vectorizer_tests.cpp U xenocara/lib/mesa/src/compiler/nir/tests/lower_returns_tests.cpp U xenocara/lib/mesa/src/compiler/nir/tests/negative_equal_tests.cpp U xenocara/lib/mesa/src/compiler/nir/tests/opt_if_tests.cpp U xenocara/lib/mesa/src/compiler/nir/tests/serialize_tests.cpp U xenocara/lib/mesa/src/compiler/nir/tests/ssa_def_bits_used_tests.cpp U xenocara/lib/mesa/src/compiler/nir/tests/vars_tests.cpp U xenocara/lib/mesa/src/compiler/spirv/GLSL.ext.AMD.h U xenocara/lib/mesa/src/compiler/spirv/GLSL.std.450.h U xenocara/lib/mesa/src/compiler/spirv/OpenCL.std.h U xenocara/lib/mesa/src/compiler/spirv/gl_spirv.c U xenocara/lib/mesa/src/compiler/spirv/meson.build U xenocara/lib/mesa/src/compiler/spirv/nir_load_libclc.c U xenocara/lib/mesa/src/compiler/spirv/nir_lower_libclc.c U xenocara/lib/mesa/src/compiler/spirv/nir_spirv.h U xenocara/lib/mesa/src/compiler/spirv/spir-v.xml U xenocara/lib/mesa/src/compiler/spirv/spirv.core.grammar.json U xenocara/lib/mesa/src/compiler/spirv/spirv.h U xenocara/lib/mesa/src/compiler/spirv/spirv2nir.c U xenocara/lib/mesa/src/compiler/spirv/spirv_info.h U xenocara/lib/mesa/src/compiler/spirv/spirv_info_c.py U xenocara/lib/mesa/src/compiler/spirv/spirv_to_nir.c U xenocara/lib/mesa/src/compiler/spirv/vtn_alu.c U xenocara/lib/mesa/src/compiler/spirv/vtn_amd.c U xenocara/lib/mesa/src/compiler/spirv/vtn_cfg.c U xenocara/lib/mesa/src/compiler/spirv/vtn_gather_types_c.py U xenocara/lib/mesa/src/compiler/spirv/vtn_generator_ids_h.py U xenocara/lib/mesa/src/compiler/spirv/vtn_glsl450.c U xenocara/lib/mesa/src/compiler/spirv/vtn_opencl.c U xenocara/lib/mesa/src/compiler/spirv/vtn_private.h U xenocara/lib/mesa/src/compiler/spirv/vtn_subgroup.c U xenocara/lib/mesa/src/compiler/spirv/vtn_variables.c U xenocara/lib/mesa/src/compiler/spirv/tests/avail_vis.cpp U xenocara/lib/mesa/src/compiler/spirv/tests/helpers.h U xenocara/lib/mesa/src/compiler/spirv/tests/volatile.cpp U xenocara/lib/mesa/src/drm-shim/README.md U xenocara/lib/mesa/src/drm-shim/device.c U xenocara/lib/mesa/src/drm-shim/drm_shim.c U xenocara/lib/mesa/src/drm-shim/drm_shim.h U xenocara/lib/mesa/src/drm-shim/meson.build U xenocara/lib/mesa/src/egl/egl-entrypoint-check.py U xenocara/lib/mesa/src/egl/egl-glvnd-symbols.txt U xenocara/lib/mesa/src/egl/egl-symbols.txt U xenocara/lib/mesa/src/egl/meson.build U xenocara/lib/mesa/src/egl/drivers/dri2/egl_dri2.c C xenocara/lib/mesa/src/egl/drivers/dri2/egl_dri2.h U xenocara/lib/mesa/src/egl/drivers/dri2/platform_android.c U xenocara/lib/mesa/src/egl/drivers/dri2/platform_android.h U xenocara/lib/mesa/src/egl/drivers/dri2/platform_android_mapper.cpp U xenocara/lib/mesa/src/egl/drivers/dri2/platform_device.c U xenocara/lib/mesa/src/egl/drivers/dri2/platform_drm.c U xenocara/lib/mesa/src/egl/drivers/dri2/platform_surfaceless.c U xenocara/lib/mesa/src/egl/drivers/dri2/platform_wayland.c C xenocara/lib/mesa/src/egl/drivers/dri2/platform_x11.c U xenocara/lib/mesa/src/egl/drivers/dri2/platform_x11.h U xenocara/lib/mesa/src/egl/drivers/dri2/platform_x11_dri3.c U xenocara/lib/mesa/src/egl/drivers/dri2/platform_x11_dri3.h U xenocara/lib/mesa/src/egl/drivers/haiku/.editorconfig U xenocara/lib/mesa/src/egl/drivers/haiku/egl_haiku.cpp U xenocara/lib/mesa/src/egl/drivers/wgl/egl_wgl.c U xenocara/lib/mesa/src/egl/drivers/wgl/egl_wgl.h U xenocara/lib/mesa/src/egl/generate/egl.xml U xenocara/lib/mesa/src/egl/generate/eglFunctionList.py U xenocara/lib/mesa/src/egl/generate/egl_other.xml U xenocara/lib/mesa/src/egl/generate/gen_egl_dispatch.py U xenocara/lib/mesa/src/egl/main/50_mesa.json U xenocara/lib/mesa/src/egl/main/egl.def.in U xenocara/lib/mesa/src/egl/main/eglapi.c U xenocara/lib/mesa/src/egl/main/eglarray.c U xenocara/lib/mesa/src/egl/main/eglarray.h U xenocara/lib/mesa/src/egl/main/eglconfig.c U xenocara/lib/mesa/src/egl/main/eglconfig.h U xenocara/lib/mesa/src/egl/main/eglconfigdebug.c U xenocara/lib/mesa/src/egl/main/eglconfigdebug.h U xenocara/lib/mesa/src/egl/main/eglcontext.c U xenocara/lib/mesa/src/egl/main/eglcontext.h U xenocara/lib/mesa/src/egl/main/eglcurrent.c U xenocara/lib/mesa/src/egl/main/eglcurrent.h U xenocara/lib/mesa/src/egl/main/egldefines.h U xenocara/lib/mesa/src/egl/main/egldevice.c U xenocara/lib/mesa/src/egl/main/egldevice.h U xenocara/lib/mesa/src/egl/main/egldispatchstubs.c U xenocara/lib/mesa/src/egl/main/egldispatchstubs.h U xenocara/lib/mesa/src/egl/main/egldisplay.c U xenocara/lib/mesa/src/egl/main/egldisplay.h U xenocara/lib/mesa/src/egl/main/egldriver.h U xenocara/lib/mesa/src/egl/main/eglentrypoint.h U xenocara/lib/mesa/src/egl/main/eglglobals.c U xenocara/lib/mesa/src/egl/main/eglglobals.h U xenocara/lib/mesa/src/egl/main/eglglvnd.c U xenocara/lib/mesa/src/egl/main/eglimage.c U xenocara/lib/mesa/src/egl/main/eglimage.h U xenocara/lib/mesa/src/egl/main/egllog.c U xenocara/lib/mesa/src/egl/main/egllog.h U xenocara/lib/mesa/src/egl/main/eglsurface.c U xenocara/lib/mesa/src/egl/main/eglsurface.h U xenocara/lib/mesa/src/egl/main/eglsync.c U xenocara/lib/mesa/src/egl/main/eglsync.h U xenocara/lib/mesa/src/egl/main/egltypedefs.h U xenocara/lib/mesa/src/egl/wayland/.editorconfig U xenocara/lib/mesa/src/egl/wayland/wayland-drm/meson.build U xenocara/lib/mesa/src/egl/wayland/wayland-drm/wayland-drm.c U xenocara/lib/mesa/src/egl/wayland/wayland-drm/wayland-drm.h U xenocara/lib/mesa/src/egl/wayland/wayland-drm/wayland-drm.xml U xenocara/lib/mesa/src/etnaviv/meson.build U xenocara/lib/mesa/src/etnaviv/ci/etnaviv-gc2000-fails.txt U xenocara/lib/mesa/src/etnaviv/ci/etnaviv-gc2000-flakes.txt U xenocara/lib/mesa/src/etnaviv/ci/etnaviv-gc2000-skips.txt U xenocara/lib/mesa/src/etnaviv/ci/etnaviv-gc7000-fails.txt U xenocara/lib/mesa/src/etnaviv/ci/etnaviv-gc7000-flakes.txt U xenocara/lib/mesa/src/etnaviv/ci/gitlab-ci.yml U xenocara/lib/mesa/src/etnaviv/drm/etnaviv_bo.c U xenocara/lib/mesa/src/etnaviv/drm/etnaviv_bo_cache.c U xenocara/lib/mesa/src/etnaviv/drm/etnaviv_cmd_stream.c U xenocara/lib/mesa/src/etnaviv/drm/etnaviv_device.c U xenocara/lib/mesa/src/etnaviv/drm/etnaviv_drmif.h U xenocara/lib/mesa/src/etnaviv/drm/etnaviv_gpu.c U xenocara/lib/mesa/src/etnaviv/drm/etnaviv_perfmon.c U xenocara/lib/mesa/src/etnaviv/drm/etnaviv_pipe.c U xenocara/lib/mesa/src/etnaviv/drm/etnaviv_priv.h U xenocara/lib/mesa/src/etnaviv/drm/meson.build U xenocara/lib/mesa/src/etnaviv/drm/tests/etnaviv_bo_cache_test.c U xenocara/lib/mesa/src/etnaviv/drm/tests/etnaviv_cmd_stream_test.c U xenocara/lib/mesa/src/etnaviv/drm/tests/meson.build U xenocara/lib/mesa/src/etnaviv/drm-shim/README.md U xenocara/lib/mesa/src/etnaviv/drm-shim/etnaviv_noop.c U xenocara/lib/mesa/src/etnaviv/drm-shim/meson.build U xenocara/lib/mesa/src/freedreno/.clang-format U xenocara/lib/mesa/src/freedreno/.dir-locals.el U xenocara/lib/mesa/src/freedreno/.editorconfig U xenocara/lib/mesa/src/freedreno/meson.build U xenocara/lib/mesa/src/freedreno/.gitlab-ci/reference/afuc_test.asm U xenocara/lib/mesa/src/freedreno/.gitlab-ci/reference/afuc_test.fw U xenocara/lib/mesa/src/freedreno/.gitlab-ci/reference/crash.log U xenocara/lib/mesa/src/freedreno/.gitlab-ci/reference/dEQP-GLES2.functional.texture.specification.basic_teximage2d.rgba16f_2d.log U xenocara/lib/mesa/src/freedreno/.gitlab-ci/reference/dEQP-VK.draw.indirect_draw.indexed.indirect_draw_count.triangle_list.log U xenocara/lib/mesa/src/freedreno/.gitlab-ci/reference/es2gears-a320.log U xenocara/lib/mesa/src/freedreno/.gitlab-ci/reference/fd-clouds.log U xenocara/lib/mesa/src/freedreno/.gitlab-ci/reference/glxgears-a420.log U xenocara/lib/mesa/src/freedreno/.gitlab-ci/reference/shadow.log U xenocara/lib/mesa/src/freedreno/.gitlab-ci/traces/afuc_test.asm U xenocara/lib/mesa/src/freedreno/.gitlab-ci/traces/crash.devcore U xenocara/lib/mesa/src/freedreno/.gitlab-ci/traces/dEQP-GLES2.functional.texture.specification.basic_teximage2d.rgba16f_2d.rd.gz U xenocara/lib/mesa/src/freedreno/.gitlab-ci/traces/dEQP-VK.draw.indirect_draw.indexed.indirect_draw_count.triangle_list.rd.gz U xenocara/lib/mesa/src/freedreno/.gitlab-ci/traces/es2gears-a320.rd.gz U xenocara/lib/mesa/src/freedreno/.gitlab-ci/traces/fd-clouds.rd.gz U xenocara/lib/mesa/src/freedreno/.gitlab-ci/traces/glxgears-a420.rd.gz U xenocara/lib/mesa/src/freedreno/.gitlab-ci/traces/shadow.rd.gz U xenocara/lib/mesa/src/freedreno/afuc/README.rst U xenocara/lib/mesa/src/freedreno/afuc/afuc.h U xenocara/lib/mesa/src/freedreno/afuc/asm.c U xenocara/lib/mesa/src/freedreno/afuc/asm.h U xenocara/lib/mesa/src/freedreno/afuc/disasm.c U xenocara/lib/mesa/src/freedreno/afuc/emu-ds.c U xenocara/lib/mesa/src/freedreno/afuc/emu-regs.c U xenocara/lib/mesa/src/freedreno/afuc/emu-ui.c U xenocara/lib/mesa/src/freedreno/afuc/emu.c U xenocara/lib/mesa/src/freedreno/afuc/emu.h U xenocara/lib/mesa/src/freedreno/afuc/lexer.l U xenocara/lib/mesa/src/freedreno/afuc/meson.build U xenocara/lib/mesa/src/freedreno/afuc/parser.y U xenocara/lib/mesa/src/freedreno/afuc/util.c U xenocara/lib/mesa/src/freedreno/afuc/util.h U xenocara/lib/mesa/src/freedreno/ci/deqp-freedreno-a307.toml U xenocara/lib/mesa/src/freedreno/ci/deqp-freedreno-a530.toml U xenocara/lib/mesa/src/freedreno/ci/deqp-freedreno-a618-vk-full.toml U xenocara/lib/mesa/src/freedreno/ci/deqp-freedreno-a618-vk.toml U xenocara/lib/mesa/src/freedreno/ci/deqp-freedreno-a630-vk-asan.toml U xenocara/lib/mesa/src/freedreno/ci/deqp-freedreno-a630-vk-full.toml U xenocara/lib/mesa/src/freedreno/ci/deqp-freedreno-a630-vk.toml U xenocara/lib/mesa/src/freedreno/ci/deqp-freedreno-a630.toml U xenocara/lib/mesa/src/freedreno/ci/freedreno-a307-fails.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a307-flakes.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a307-skips.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a420-fails.txt U xenocara/lib/mesa/src/freedreno/ci/gitlab-ci.yml U xenocara/lib/mesa/src/freedreno/ci/freedreno-a420-flakes.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a420-skips.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a530-fails.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a530-flakes.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a530-skips.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a618-fails.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a618-flakes.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a618-premerge-skips.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a618-skips.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a630-asan-fails.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a630-asan-skips.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a630-bypass-flakes.txt U xenocara/lib/mesa/src/freedreno/ci/traces-freedreno.yml U xenocara/lib/mesa/src/freedreno/ci/freedreno-a630-fails.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a630-flakes.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a630-premerge-skips.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a630-skips.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a630-skqp-gl_rendertests-crashes.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a630-skqp-gl_rendertests-fails.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a630-skqp-gl_rendertests-flakes.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a630-skqp-gles_rendertests-fails.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a630-skqp-gles_rendertests-flakes.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a630-skqp-vk_rendertests-fails.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a630-skqp-vk_rendertests-flakes.txt U xenocara/lib/mesa/src/freedreno/ci/freedreno-a630-skqp_unittests-fails.txt U xenocara/lib/mesa/src/freedreno/ci/restricted-traces-freedreno.yml U xenocara/lib/mesa/src/freedreno/common/README.rst U xenocara/lib/mesa/src/freedreno/common/disasm.h U xenocara/lib/mesa/src/freedreno/common/freedreno_common.h U xenocara/lib/mesa/src/freedreno/common/freedreno_dev_info.c U xenocara/lib/mesa/src/freedreno/common/freedreno_dev_info.h U xenocara/lib/mesa/src/freedreno/common/freedreno_devices.py U xenocara/lib/mesa/src/freedreno/common/freedreno_guardband.h U xenocara/lib/mesa/src/freedreno/common/freedreno_pm4.h U xenocara/lib/mesa/src/freedreno/common/freedreno_uuid.c U xenocara/lib/mesa/src/freedreno/common/freedreno_uuid.h U xenocara/lib/mesa/src/freedreno/common/meson.build U xenocara/lib/mesa/src/freedreno/computerator/README.rst U xenocara/lib/mesa/src/freedreno/computerator/a4xx.c U xenocara/lib/mesa/src/freedreno/computerator/a6xx.c U xenocara/lib/mesa/src/freedreno/computerator/ir3_asm.c U xenocara/lib/mesa/src/freedreno/computerator/ir3_asm.h U xenocara/lib/mesa/src/freedreno/computerator/main.c U xenocara/lib/mesa/src/freedreno/computerator/main.h U xenocara/lib/mesa/src/freedreno/computerator/meson.build U xenocara/lib/mesa/src/freedreno/computerator/examples/branch.asm U xenocara/lib/mesa/src/freedreno/computerator/examples/early_preamble.asm U xenocara/lib/mesa/src/freedreno/computerator/examples/invocationid.asm U xenocara/lib/mesa/src/freedreno/computerator/examples/pvtmem.asm U xenocara/lib/mesa/src/freedreno/computerator/examples/simple.asm U xenocara/lib/mesa/src/freedreno/computerator/examples/stg_ldg_offset.asm U xenocara/lib/mesa/src/freedreno/computerator/examples/test-flut.sh U xenocara/lib/mesa/src/freedreno/computerator/examples/test-opcodes.sh U xenocara/lib/mesa/src/freedreno/computerator/examples/test-regfile.sh U xenocara/lib/mesa/src/freedreno/decode/buffers.c U xenocara/lib/mesa/src/freedreno/decode/buffers.h U xenocara/lib/mesa/src/freedreno/decode/cffdec.c U xenocara/lib/mesa/src/freedreno/decode/cffdec.h U xenocara/lib/mesa/src/freedreno/decode/cffdump.c U xenocara/lib/mesa/src/freedreno/decode/crashdec-hfi.c U xenocara/lib/mesa/src/freedreno/decode/crashdec-mempool.c U xenocara/lib/mesa/src/freedreno/decode/crashdec.c U xenocara/lib/mesa/src/freedreno/decode/crashdec.h U xenocara/lib/mesa/src/freedreno/decode/io.c U xenocara/lib/mesa/src/freedreno/decode/io.h U xenocara/lib/mesa/src/freedreno/decode/meson.build U xenocara/lib/mesa/src/freedreno/decode/pager.c U xenocara/lib/mesa/src/freedreno/decode/pager.h U xenocara/lib/mesa/src/freedreno/decode/pgmdump.c U xenocara/lib/mesa/src/freedreno/decode/pgmdump2.c U xenocara/lib/mesa/src/freedreno/decode/redump.h U xenocara/lib/mesa/src/freedreno/decode/replay.c U xenocara/lib/mesa/src/freedreno/decode/rnnutil.c U xenocara/lib/mesa/src/freedreno/decode/rnnutil.h U xenocara/lib/mesa/src/freedreno/decode/script.c U xenocara/lib/mesa/src/freedreno/decode/script.h U xenocara/lib/mesa/src/freedreno/decode/util.h U xenocara/lib/mesa/src/freedreno/decode/scripts/analyze.lua U xenocara/lib/mesa/src/freedreno/decode/scripts/parse-submits.lua U xenocara/lib/mesa/src/freedreno/decode/scripts/sanity-a6xx.lua U xenocara/lib/mesa/src/freedreno/decode/scripts/test.lua U xenocara/lib/mesa/src/freedreno/decode/scripts/tex3d-layout.lua U xenocara/lib/mesa/src/freedreno/decode/scripts/texturator-to-unit-test-5xx.lua U xenocara/lib/mesa/src/freedreno/decode/scripts/texturator-to-unit-test.lua U xenocara/lib/mesa/src/freedreno/drm/freedreno_bo.c U xenocara/lib/mesa/src/freedreno/drm/freedreno_bo_cache.c U xenocara/lib/mesa/src/freedreno/drm/freedreno_device.c U xenocara/lib/mesa/src/freedreno/drm/freedreno_drmif.h U xenocara/lib/mesa/src/freedreno/drm/freedreno_pipe.c U xenocara/lib/mesa/src/freedreno/drm/freedreno_priv.h U xenocara/lib/mesa/src/freedreno/drm/freedreno_ringbuffer.c U xenocara/lib/mesa/src/freedreno/drm/freedreno_ringbuffer.h U xenocara/lib/mesa/src/freedreno/drm/freedreno_ringbuffer_sp.c U xenocara/lib/mesa/src/freedreno/drm/freedreno_ringbuffer_sp.h U xenocara/lib/mesa/src/freedreno/drm/freedreno_ringbuffer_sp_reloc.h U xenocara/lib/mesa/src/freedreno/drm/meson.build U xenocara/lib/mesa/src/freedreno/drm/msm/msm_bo.c U xenocara/lib/mesa/src/freedreno/drm/msm/msm_device.c U xenocara/lib/mesa/src/freedreno/drm/msm/msm_pipe.c U xenocara/lib/mesa/src/freedreno/drm/msm/msm_priv.h U xenocara/lib/mesa/src/freedreno/drm/msm/msm_ringbuffer.c U xenocara/lib/mesa/src/freedreno/drm/msm/msm_ringbuffer_sp.c U xenocara/lib/mesa/src/freedreno/drm/virtio/msm_proto.h U xenocara/lib/mesa/src/freedreno/drm/virtio/virtio_bo.c U xenocara/lib/mesa/src/freedreno/drm/virtio/virtio_device.c U xenocara/lib/mesa/src/freedreno/drm/virtio/virtio_pipe.c U xenocara/lib/mesa/src/freedreno/drm/virtio/virtio_priv.h U xenocara/lib/mesa/src/freedreno/drm/virtio/virtio_ringbuffer.c U xenocara/lib/mesa/src/freedreno/drm/virtio/virtio_ringbuffer.h U xenocara/lib/mesa/src/freedreno/drm-shim/README.md U xenocara/lib/mesa/src/freedreno/drm-shim/freedreno_noop.c U xenocara/lib/mesa/src/freedreno/drm-shim/meson.build U xenocara/lib/mesa/src/freedreno/ds/fd_pps_driver.cc U xenocara/lib/mesa/src/freedreno/ds/fd_pps_driver.h U xenocara/lib/mesa/src/freedreno/ds/meson.build U xenocara/lib/mesa/src/freedreno/fdl/fd5_layout.c U xenocara/lib/mesa/src/freedreno/fdl/fd5_layout_test.c U xenocara/lib/mesa/src/freedreno/fdl/fd6_format_table.c U xenocara/lib/mesa/src/freedreno/fdl/fd6_format_table.h U xenocara/lib/mesa/src/freedreno/fdl/fd6_layout.c U xenocara/lib/mesa/src/freedreno/fdl/fd6_layout_test.c U xenocara/lib/mesa/src/freedreno/fdl/fd6_view.c U xenocara/lib/mesa/src/freedreno/fdl/fd_layout_test.c U xenocara/lib/mesa/src/freedreno/fdl/fd_layout_test.h U xenocara/lib/mesa/src/freedreno/fdl/freedreno_layout.c U xenocara/lib/mesa/src/freedreno/fdl/freedreno_layout.h U xenocara/lib/mesa/src/freedreno/fdl/meson.build U xenocara/lib/mesa/src/freedreno/ir2/disasm-a2xx.c U xenocara/lib/mesa/src/freedreno/ir2/instr-a2xx.h U xenocara/lib/mesa/src/freedreno/ir2/meson.build U xenocara/lib/mesa/src/freedreno/ir3/.dir-locals.el U xenocara/lib/mesa/src/freedreno/ir3/.editorconfig U xenocara/lib/mesa/src/freedreno/ir3/disasm-a3xx.c U xenocara/lib/mesa/src/freedreno/ir3/instr-a3xx.h U xenocara/lib/mesa/src/freedreno/ir3/ir3.c U xenocara/lib/mesa/src/freedreno/ir3/ir3.h U xenocara/lib/mesa/src/freedreno/ir3/ir3_a4xx.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_a6xx.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_array_to_ssa.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_assembler.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_assembler.h U xenocara/lib/mesa/src/freedreno/ir3/ir3_cf.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_compiler.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_compiler.h U xenocara/lib/mesa/src/freedreno/ir3/ir3_compiler_nir.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_context.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_context.h U xenocara/lib/mesa/src/freedreno/ir3/ir3_cp.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_cse.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_dce.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_delay.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_image.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_disk_cache.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_dominance.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_image.h U xenocara/lib/mesa/src/freedreno/ir3/ir3_legalize.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_legalize_relative.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_lexer.l U xenocara/lib/mesa/src/freedreno/ir3/ir3_liveness.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_lower_parallelcopy.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_lower_spill.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_lower_subgroups.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_merge_regs.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_nir.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_nir.h U xenocara/lib/mesa/src/freedreno/ir3/ir3_nir_analyze_ubo_ranges.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_nir_imul.py U xenocara/lib/mesa/src/freedreno/ir3/ir3_nir_lower_64b.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_nir_lower_io_offsets.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_nir_trig.py U xenocara/lib/mesa/src/freedreno/ir3/ir3_nir_lower_tess.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_nir_lower_load_barycentric_at_offset.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_nir_lower_load_barycentric_at_sample.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_nir_lower_tex_prefetch.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_nir_lower_wide_load_store.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_nir_move_varying_inputs.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_nir_opt_preamble.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_parser.y U xenocara/lib/mesa/src/freedreno/ir3/ir3_postsched.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_print.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_ra.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_ra.h U xenocara/lib/mesa/src/freedreno/ir3/ir3_ra_validate.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_remove_unreachable.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_sched.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_shader.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_shader.h U xenocara/lib/mesa/src/freedreno/ir3/ir3_spill.c U xenocara/lib/mesa/src/freedreno/ir3/ir3_validate.c U xenocara/lib/mesa/src/freedreno/ir3/meson.build U xenocara/lib/mesa/src/freedreno/ir3/tests/delay.c U xenocara/lib/mesa/src/freedreno/ir3/tests/disasm.c U xenocara/lib/mesa/src/freedreno/isa/encode.c U xenocara/lib/mesa/src/freedreno/isa/ir3-cat0.xml U xenocara/lib/mesa/src/freedreno/isa/ir3-cat1.xml U xenocara/lib/mesa/src/freedreno/isa/ir3-cat2.xml U xenocara/lib/mesa/src/freedreno/isa/ir3-cat3.xml U xenocara/lib/mesa/src/freedreno/isa/ir3-cat4.xml U xenocara/lib/mesa/src/freedreno/isa/ir3-cat5.xml U xenocara/lib/mesa/src/freedreno/isa/ir3-cat6.xml U xenocara/lib/mesa/src/freedreno/isa/ir3-cat7.xml U xenocara/lib/mesa/src/freedreno/isa/ir3-common.xml U xenocara/lib/mesa/src/freedreno/isa/ir3-disasm.c U xenocara/lib/mesa/src/freedreno/isa/ir3.xml U xenocara/lib/mesa/src/freedreno/isa/isa.h U xenocara/lib/mesa/src/freedreno/isa/meson.build U xenocara/lib/mesa/src/freedreno/perfcntrs/fd2_perfcntr.c U xenocara/lib/mesa/src/freedreno/perfcntrs/fd5_perfcntr.c U xenocara/lib/mesa/src/freedreno/perfcntrs/fd6_perfcntr.c U xenocara/lib/mesa/src/freedreno/perfcntrs/fdperf.c U xenocara/lib/mesa/src/freedreno/perfcntrs/freedreno_dt.c U xenocara/lib/mesa/src/freedreno/perfcntrs/freedreno_dt.h U xenocara/lib/mesa/src/freedreno/perfcntrs/freedreno_perfcntr.c U xenocara/lib/mesa/src/freedreno/perfcntrs/freedreno_perfcntr.h U xenocara/lib/mesa/src/freedreno/perfcntrs/meson.build U xenocara/lib/mesa/src/freedreno/registers/.gitignore U xenocara/lib/mesa/src/freedreno/registers/adreno.xml U xenocara/lib/mesa/src/freedreno/registers/freedreno_copyright.xml U xenocara/lib/mesa/src/freedreno/registers/gen_header.py U xenocara/lib/mesa/src/freedreno/registers/meson.build U xenocara/lib/mesa/src/freedreno/registers/msm.xml U xenocara/lib/mesa/src/freedreno/registers/rules-ng-ng.txt U xenocara/lib/mesa/src/freedreno/registers/rules-ng.xsd U xenocara/lib/mesa/src/freedreno/registers/text-format.txt U xenocara/lib/mesa/src/freedreno/registers/adreno/a2xx.xml U xenocara/lib/mesa/src/freedreno/registers/adreno/a3xx.xml U xenocara/lib/mesa/src/freedreno/registers/adreno/a4xx.xml U xenocara/lib/mesa/src/freedreno/registers/adreno/a5xx.xml U xenocara/lib/mesa/src/freedreno/registers/adreno/a6xx.xml U xenocara/lib/mesa/src/freedreno/registers/adreno/a6xx_gmu.xml U xenocara/lib/mesa/src/freedreno/registers/adreno/a7xx.xml U xenocara/lib/mesa/src/freedreno/registers/adreno/adreno_common.xml U xenocara/lib/mesa/src/freedreno/registers/adreno/adreno_control_regs.xml U xenocara/lib/mesa/src/freedreno/registers/adreno/adreno_pipe_regs.xml U xenocara/lib/mesa/src/freedreno/registers/adreno/adreno_pm4.xml U xenocara/lib/mesa/src/freedreno/registers/adreno/meson.build U xenocara/lib/mesa/src/freedreno/registers/adreno/ocmem.xml U xenocara/lib/mesa/src/freedreno/registers/dsi/dsi.xml U xenocara/lib/mesa/src/freedreno/registers/dsi/dsi_phy_10nm.xml U xenocara/lib/mesa/src/freedreno/registers/dsi/dsi_phy_14nm.xml U xenocara/lib/mesa/src/freedreno/registers/dsi/dsi_phy_20nm.xml U xenocara/lib/mesa/src/freedreno/registers/dsi/dsi_phy_28nm.xml U xenocara/lib/mesa/src/freedreno/registers/dsi/dsi_phy_28nm_8960.xml U xenocara/lib/mesa/src/freedreno/registers/dsi/dsi_phy_7nm.xml U xenocara/lib/mesa/src/freedreno/registers/dsi/dsi_phy_v2.xml U xenocara/lib/mesa/src/freedreno/registers/dsi/mmss_cc.xml U xenocara/lib/mesa/src/freedreno/registers/dsi/sfpb.xml U xenocara/lib/mesa/src/freedreno/registers/edp/edp.xml U xenocara/lib/mesa/src/freedreno/registers/hdmi/hdmi.xml U xenocara/lib/mesa/src/freedreno/registers/hdmi/qfprom.xml U xenocara/lib/mesa/src/freedreno/registers/mdp/mdp4.xml U xenocara/lib/mesa/src/freedreno/registers/mdp/mdp5.xml U xenocara/lib/mesa/src/freedreno/registers/mdp/mdp_common.xml U xenocara/lib/mesa/src/freedreno/rnn/aprintf.c U xenocara/lib/mesa/src/freedreno/rnn/colors.c U xenocara/lib/mesa/src/freedreno/rnn/colors.h U xenocara/lib/mesa/src/freedreno/rnn/headergen2.c U xenocara/lib/mesa/src/freedreno/rnn/meson.build U xenocara/lib/mesa/src/freedreno/rnn/path.c U xenocara/lib/mesa/src/freedreno/rnn/rnn.c U xenocara/lib/mesa/src/freedreno/rnn/rnn.h U xenocara/lib/mesa/src/freedreno/rnn/rnndec.c U xenocara/lib/mesa/src/freedreno/rnn/rnndec.h U xenocara/lib/mesa/src/freedreno/rnn/util.h U xenocara/lib/mesa/src/freedreno/vulkan/.clang-format U xenocara/lib/mesa/src/freedreno/vulkan/.dir-locals.el U xenocara/lib/mesa/src/freedreno/vulkan/.editorconfig U xenocara/lib/mesa/src/freedreno/vulkan/TODO U xenocara/lib/mesa/src/freedreno/vulkan/meson.build U xenocara/lib/mesa/src/freedreno/vulkan/msm_kgsl.h U xenocara/lib/mesa/src/freedreno/vulkan/tu_android.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_android.h U xenocara/lib/mesa/src/freedreno/vulkan/tu_autotune.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_autotune.h C xenocara/lib/mesa/src/freedreno/vulkan/tu_clear_blit.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_clear_blit.h U xenocara/lib/mesa/src/freedreno/vulkan/tu_cmd_buffer.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_cmd_buffer.h U xenocara/lib/mesa/src/freedreno/vulkan/tu_common.h U xenocara/lib/mesa/src/freedreno/vulkan/tu_cs.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_cs.h U xenocara/lib/mesa/src/freedreno/vulkan/tu_cs_breadcrumbs.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_descriptor_set.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_descriptor_set.h U xenocara/lib/mesa/src/freedreno/vulkan/tu_device.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_device.h U xenocara/lib/mesa/src/freedreno/vulkan/tu_drm.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_drm.h U xenocara/lib/mesa/src/freedreno/vulkan/tu_dynamic_rendering.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_dynamic_rendering.h U xenocara/lib/mesa/src/freedreno/vulkan/tu_formats.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_formats.h U xenocara/lib/mesa/src/freedreno/vulkan/tu_image.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_image.h U xenocara/lib/mesa/src/freedreno/vulkan/tu_kgsl.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_lrz.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_lrz.h U xenocara/lib/mesa/src/freedreno/vulkan/tu_nir_lower_multiview.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_pass.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_pass.h U xenocara/lib/mesa/src/freedreno/vulkan/tu_perfetto.cc U xenocara/lib/mesa/src/freedreno/vulkan/tu_perfetto.h U xenocara/lib/mesa/src/freedreno/vulkan/tu_perfetto_util.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_pipeline.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_pipeline.h U xenocara/lib/mesa/src/freedreno/vulkan/tu_query.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_query.h U xenocara/lib/mesa/src/freedreno/vulkan/tu_shader.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_shader.h U xenocara/lib/mesa/src/freedreno/vulkan/tu_suballoc.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_suballoc.h U xenocara/lib/mesa/src/freedreno/vulkan/tu_tracepoints.py U xenocara/lib/mesa/src/freedreno/vulkan/tu_util.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_util.h U xenocara/lib/mesa/src/freedreno/vulkan/tu_wsi.c U xenocara/lib/mesa/src/freedreno/vulkan/tu_wsi.h U xenocara/lib/mesa/src/gallium/README.portability U xenocara/lib/mesa/src/gallium/meson.build U xenocara/lib/mesa/src/gallium/auxiliary/meson.build U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_cache.c U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_cache.h U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_context.c U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_context.h U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_hash.c U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_hash.h U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_cliptest_tmp.h U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_context.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_context.h U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_decompose_tmp.h U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_fs.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_fs.h U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_gs.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_gs.h U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_gs_tmp.h U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_llvm.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_llvm.h U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_llvm_sample.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe.h U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_aaline.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_aapoint.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_clip.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_cull.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_flatshade.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_private.h U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_offset.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_pstipple.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_stipple.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_twoside.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_unfilled.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_user_cull.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_util.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_validate.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_vbuf.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_wide_line.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_wide_point.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_prim_assembler.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_prim_assembler.h U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_prim_assembler_tmp.h U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt.h U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_decompose.h U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_emit.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_emit.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline_llvm.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_post_vs.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_so_emit.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_util.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_vsplit.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_vsplit_tmp.h U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_so_emit_tmp.h U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_split_tmp.h U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_tess.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_tess.h U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vbuf.h U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vertex.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vertex.h U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs.h U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs_exec.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs_llvm.c U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs_variant.c U xenocara/lib/mesa/src/gallium/auxiliary/driver_ddebug/dd_context.c U xenocara/lib/mesa/src/gallium/auxiliary/driver_ddebug/dd_draw.c U xenocara/lib/mesa/src/gallium/auxiliary/driver_ddebug/dd_pipe.h U xenocara/lib/mesa/src/gallium/auxiliary/driver_ddebug/dd_public.h U xenocara/lib/mesa/src/gallium/auxiliary/driver_ddebug/dd_screen.c U xenocara/lib/mesa/src/gallium/auxiliary/driver_ddebug/dd_util.h U xenocara/lib/mesa/src/gallium/auxiliary/driver_noop/noop_pipe.c U xenocara/lib/mesa/src/gallium/auxiliary/driver_noop/noop_public.h U xenocara/lib/mesa/src/gallium/auxiliary/driver_noop/noop_state.c U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/README U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/enums2names.py U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_context.c U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_context.h U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_dump.c U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_dump.h U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_dump_defines.h U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_dump_state.c U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_dump_state.h U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_public.h U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_screen.c U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_screen.h U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_texture.c U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_texture.h U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/trace.xsl U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/f.cpp U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_assert.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_assert.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_bitarit.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_bitarit.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_const.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_const.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_conv.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_conv.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_coro.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_coro.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_debug.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_flow.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_flow.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_aos.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_aos_array.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_float.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_s3tc.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_soa.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_srgb.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_yuv.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_gather.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_gather.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_init.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_init.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_intr.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_intr.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_ir_common.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_ir_common.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_limits.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_jit_types.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_jit_types.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_logic.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_logic.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_misc.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_nir.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_nir.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_nir_aos.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_nir_soa.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_printf.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_printf.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_quad.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_quad.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_aos.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_aos.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_struct.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_struct.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_swizzle.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_swizzle.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_action.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_action.h U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_aos.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_info.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_type.c U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_type.h U xenocara/lib/mesa/src/gallium/auxiliary/hud/font.c U xenocara/lib/mesa/src/gallium/auxiliary/hud/font.h U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_context.c U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_context.h U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_cpu.c U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_cpufreq.c U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_diskstat.c U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_driver_query.c U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_fps.c U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_nic.c U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_private.h U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_sensors_temp.c U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices.c U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices.h U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices_gen.py U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices_priv.h U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_primconvert.c U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_primconvert.h U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_unfilled_gen.py U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_unfilled_indices.c U xenocara/lib/mesa/src/gallium/auxiliary/nir/nir_draw_helpers.c U xenocara/lib/mesa/src/gallium/auxiliary/nir/nir_draw_helpers.h U xenocara/lib/mesa/src/gallium/auxiliary/nir/nir_helpers.c U xenocara/lib/mesa/src/gallium/auxiliary/nir/nir_helpers.h U xenocara/lib/mesa/src/gallium/auxiliary/nir/nir_to_tgsi.c U xenocara/lib/mesa/src/gallium/auxiliary/nir/nir_to_tgsi.h U xenocara/lib/mesa/src/gallium/auxiliary/nir/nir_to_tgsi_info.c U xenocara/lib/mesa/src/gallium/auxiliary/nir/nir_to_tgsi_info.h U xenocara/lib/mesa/src/gallium/auxiliary/nir/tgsi_to_nir.c U xenocara/lib/mesa/src/gallium/auxiliary/nir/tgsi_to_nir.h U xenocara/lib/mesa/src/gallium/auxiliary/os/os_mman.h U xenocara/lib/mesa/src/gallium/auxiliary/os/os_process.c U xenocara/lib/mesa/src/gallium/auxiliary/os/os_process.h U xenocara/lib/mesa/src/gallium/auxiliary/os/os_thread.h U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/driinfo_gallium.h U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/meson.build U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader.c U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader.h U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_priv.h U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer.h U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.h U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr.h U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_cache.c U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_slab.c U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_cache.c U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_cache.h U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_slab.c U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_slab.h U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_validate.c U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_validate.h U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/ADDING U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/filters.h U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/postprocess.h U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_celshade.c U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_celshade.h U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_colors.c U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_colors.h U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_filters.h U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_init.c U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_mlaa.c U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_mlaa.h U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_mlaa_areamap.h U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_private.h U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_program.c U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_run.c U xenocara/lib/mesa/src/gallium/auxiliary/renderonly/renderonly.c U xenocara/lib/mesa/src/gallium/auxiliary/renderonly/renderonly.h U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_execmem.c U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_execmem.h U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_x86sse.c U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_x86sse.h U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/drm_helper.h U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/drm_helper_public.h U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/inline_debug_helper.h U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/inline_sw_helper.h U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/sw_helper.h U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/sw_helper_public.h U xenocara/lib/mesa/src/gallium/auxiliary/tessellator/p_tessellator.cpp U xenocara/lib/mesa/src/gallium/auxiliary/tessellator/p_tessellator.h U xenocara/lib/mesa/src/gallium/auxiliary/tessellator/tessellator.cpp U xenocara/lib/mesa/src/gallium/auxiliary/tessellator/tessellator.hpp U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_aa_point.c U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_aa_point.h U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_build.c U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_build.h U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_dump.c U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_dump.h U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_dynamic_indexing.c U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_dynamic_indexing.h U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_exec.c U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_exec.h U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_from_mesa.c U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_from_mesa.h U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_info.c U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_info.h U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_info_opcodes.h U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_iterate.c U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_iterate.h U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_lowering.c U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_lowering.h U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_opcode_tmp.h U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_parse.c U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_parse.h U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_point_sprite.c U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_point_sprite.h U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_sanity.c U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_sanity.h U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_scan.c U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_scan.h U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_strings.c U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_strings.h U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_text.c U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_text.h U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_transform.c U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_transform.h U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_two_side.c U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_two_side.h U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_ureg.c U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_ureg.h U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_util.c U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_util.h U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_vpos.c U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_vpos.h U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate.c U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate.h U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate_cache.c U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate_cache.h U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate_generic.c U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate_sse.c U xenocara/lib/mesa/src/gallium/auxiliary/util/dbghelp.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_async_debug.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_async_debug.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_bitcast.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_bitmask.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_bitmask.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blend.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blitter.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blitter.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_box.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cache.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cache.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_compute.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_compute.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_cb.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_flush.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_flush.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_image.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_image.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dirty_flags.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dirty_surfaces.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw_quad.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw_quad.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_driconf.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_driconf.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dual_blend.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dump.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dump_defines.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dump_state.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_file.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_framebuffer.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_framebuffer.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_gen_mipmap.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_gen_mipmap.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_handle_table.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_handle_table.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_helpers.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_helpers.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_index_modify.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_index_modify.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_inlines.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_linear.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_linear.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_live_shader_cache.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_live_shader_cache.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_log.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_log.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pack_color.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim_restart.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim_restart.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pstipple.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pstipple.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pwr8.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_range.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_rect.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_resource.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_resource.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_sampler.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_sampler.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_screen.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_screen.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_simple_shaders.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_simple_shaders.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_split_draw.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_split_draw.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_split_prim.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_sse.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_suballoc.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_suballoc.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surface.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surface.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tests.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tests.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_texture.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_texture.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_threaded_context.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_threaded_context.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_threaded_context_calls.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tile.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tile.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_trace_gallium.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_trace_gallium.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tracepoints.py U xenocara/lib/mesa/src/gallium/auxiliary/util/u_transfer.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_transfer.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_transfer_helper.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_transfer_helper.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_upload_mgr.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_upload_mgr.h C xenocara/lib/mesa/src/gallium/auxiliary/util/u_vbuf.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_vbuf.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_vertex_state_cache.c U xenocara/lib/mesa/src/gallium/auxiliary/util/u_vertex_state_cache.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_video.h U xenocara/lib/mesa/src/gallium/auxiliary/util/u_viewport.h U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_bicubic_filter.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_bicubic_filter.h U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_codec.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_codec.h U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_compositor.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_compositor.h U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_compositor_cs.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_compositor_cs.h U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_compositor_gfx.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_compositor_gfx.h U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_csc.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_csc.h U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_decoder.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_decoder.h U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_defines.h U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_deint_filter.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_deint_filter.h U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_idct.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_idct.h U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mc.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_matrix_filter.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_matrix_filter.h U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mc.h U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_median_filter.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_median_filter.h U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_bitstream.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_bitstream.h U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_decoder.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_decoder.h U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_probs_table.h U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_stubs.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_types.h U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_vertex_buffers.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_vertex_buffers.h U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_video_buffer.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_video_buffer.h U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys.h U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_dri.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_drm.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_dri3.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_dri_vgem.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_win32.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_xlib_swrast.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_zscan.c U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_zscan.h U xenocara/lib/mesa/src/gallium/drivers/asahi/agx_blit.c U xenocara/lib/mesa/src/gallium/drivers/asahi/agx_pipe.c U xenocara/lib/mesa/src/gallium/drivers/asahi/agx_public.h U xenocara/lib/mesa/src/gallium/drivers/asahi/agx_state.c U xenocara/lib/mesa/src/gallium/drivers/asahi/agx_state.h U xenocara/lib/mesa/src/gallium/drivers/asahi/agx_uniforms.c U xenocara/lib/mesa/src/gallium/drivers/asahi/magic.c U xenocara/lib/mesa/src/gallium/drivers/asahi/magic.h U xenocara/lib/mesa/src/gallium/drivers/asahi/meson.build U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_batch.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_batch.h U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_blit.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_blorp.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_blt.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_bufmgr.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_bufmgr.h U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_clear.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_context.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_context.h U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_defines.h U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_disk_cache.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_draw.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_fence.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_fence.h U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_fine_fence.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_fine_fence.h U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_formats.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_genx_macros.h U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_genx_protos.h U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_monitor.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_monitor.h U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_perf.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_perf.h U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_performance_query.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_pipe.h U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_pipe_control.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_program.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_program_cache.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_query.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_resolve.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_resource.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_resource.h U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_screen.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_screen.h U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_state.c U xenocara/lib/mesa/src/gallium/drivers/crocus/crocus_todo.txt U xenocara/lib/mesa/src/gallium/drivers/crocus/driinfo_crocus.h U xenocara/lib/mesa/src/gallium/drivers/crocus/gen4_blorp_exec.h U xenocara/lib/mesa/src/gallium/drivers/crocus/meson.build U xenocara/lib/mesa/src/gallium/drivers/crocus/ci/crocus-g41-fails.txt U xenocara/lib/mesa/src/gallium/drivers/crocus/ci/crocus-g41-flakes.txt U xenocara/lib/mesa/src/gallium/drivers/crocus/ci/crocus-g41-skips.txt U xenocara/lib/mesa/src/gallium/drivers/crocus/ci/crocus-hsw-fails.txt U xenocara/lib/mesa/src/gallium/drivers/crocus/ci/crocus-hsw-flakes.txt U xenocara/lib/mesa/src/gallium/drivers/crocus/ci/crocus-hsw-skips.txt U xenocara/lib/mesa/src/gallium/drivers/crocus/ci/deqp-crocus-g41.toml U xenocara/lib/mesa/src/gallium/drivers/crocus/ci/deqp-crocus-hsw.toml U xenocara/lib/mesa/src/gallium/drivers/crocus/ci/gitlab-ci.yml U xenocara/lib/mesa/src/gallium/drivers/crocus/ci/traces-crocus.yml U xenocara/lib/mesa/src/gallium/drivers/d3d12/.clang-format U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_batch.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_batch.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_blit.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_blit.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_bufmgr.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_bufmgr.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_cmd_signature.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_cmd_signature.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_common.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_compiler.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_compiler.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_compute_transforms.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_compute_transforms.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_context.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_context.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_debug.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_descriptor_pool.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_descriptor_pool.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_draw.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_dxcore_screen.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_dxgi_screen.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_fence.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_fence.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_format.c U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_format.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_gs_variant.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_interop_public.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_lower_image_casts.c U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_lower_point_sprite.c U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_nir_passes.c U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_nir_passes.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_pipeline_state.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_pipeline_state.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_public.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_query.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_query.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_residency.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_residency.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_resource.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_resource.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_resource_state.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_resource_state.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_root_signature.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_root_signature.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_screen.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_screen.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_surface.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_surface.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_tcs_variant.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_util.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_buffer.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_array_of_textures_dpb_manager.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_array_of_textures_dpb_manager.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_buffer.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_dec.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_dec.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_dec_av1.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_dec_av1.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_dec_h264.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_dec_h264.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_dec_hevc.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_dec_hevc.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_dec_references_mgr.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_dec_references_mgr.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_enc.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_dec_vp9.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_dec_vp9.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_dpb_storage_manager.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_enc.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_enc_h264.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_enc_h264.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_enc_hevc.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_enc_hevc.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_encoder_bitstream.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_encoder_bitstream.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_encoder_bitstream_builder.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_encoder_bitstream_builder_h264.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_encoder_nalu_writer_h264.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_encoder_bitstream_builder_h264.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_encoder_bitstream_builder_hevc.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_encoder_bitstream_builder_hevc.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_encoder_nalu_writer_h264.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_encoder_nalu_writer_hevc.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_encoder_nalu_writer_hevc.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_encoder_references_manager.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_encoder_references_manager_h264.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_encoder_references_manager_h264.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_proc.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_encoder_references_manager_hevc.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_encoder_references_manager_hevc.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_proc.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_screen.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_screen.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_texture_array_dpb_manager.cpp U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_texture_array_dpb_manager.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/d3d12_video_types.h U xenocara/lib/mesa/src/gallium/drivers/d3d12/meson.build U xenocara/lib/mesa/src/gallium/drivers/d3d12/ci/d3d12-quick_gl.txt U xenocara/lib/mesa/src/gallium/drivers/d3d12/ci/d3d12-quick_shader.txt U xenocara/lib/mesa/src/gallium/drivers/d3d12/ci/gitlab-ci.yml U xenocara/lib/mesa/src/gallium/drivers/etnaviv/README U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_asm.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_asm.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_blend.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_blend.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_blt.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_blt.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_clear_blit.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_clear_blit.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_compiler.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_compiler.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_compiler_cmdline.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_compiler_nir.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_compiler_nir.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_compiler_nir_emit.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_compiler_nir_liveness.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/meson.build U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_context.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_compiler_nir_ra.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_context.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_debug.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_disasm.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_disasm.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_disk_cache.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_disk_cache.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_emit.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_emit.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_etc2.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_etc2.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_fence.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_fence.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_format.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_format.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_internal.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_nir.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_nir.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_perfmon.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_nir_lower_ubo_to_uniform.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_perfmon.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query_acc.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query_acc.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query_acc_occlusion.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query_acc_perfmon.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query_sw.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query_sw.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_rasterizer.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_rasterizer.h C xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_resource.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_resource.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_rs.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_rs.h C xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_screen.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_screen.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_shader.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_shader.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_state.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_state.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_surface.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_surface.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_texture.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_texture.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_texture_desc.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_texture_desc.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_texture_state.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_texture_state.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_tiling.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_tiling.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_transfer.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_transfer.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_translate.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_uniforms.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_uniforms.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_util.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_zsa.c U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_zsa.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/cmdstream.xml.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/common.xml.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/common_3d.xml.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/isa.xml.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/state.xml.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/state_3d.xml.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/state_blt.xml.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/texdesc_3d.xml.h U xenocara/lib/mesa/src/gallium/drivers/etnaviv/tests/lower_ubo_tests.cpp U xenocara/lib/mesa/src/gallium/drivers/freedreno/.dir-locals.el U xenocara/lib/mesa/src/gallium/drivers/freedreno/.editorconfig U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_autotune.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_autotune.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch_cache.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch_cache.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_blitter.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_blitter.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_context.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_context.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_draw.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_draw.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_fence.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_fence.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/gmemtool.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_gmem.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_gmem.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_perfetto.cc U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_perfetto.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_program.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_program.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_acc.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_acc.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_hw.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_hw.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_sw.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_sw.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_resource.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_resource.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/meson.build U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_screen.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_screen.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_state.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_state.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_surface.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_surface.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_texture.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_texture.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_tracepoints.py U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_util.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_util.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/trace-parser.py U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_blend.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_blend.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_context.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_context.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_draw.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_draw.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_emit.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_emit.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_gmem.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_gmem.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_program.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_program.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_query.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_query.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_rasterizer.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_rasterizer.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_resource.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_resource.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_screen.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_screen.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_texture.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_texture.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_util.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_util.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_zsa.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_zsa.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2_assemble.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2_cp.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2_nir.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2_private.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2_ra.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_blend.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_blend.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_context.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_context.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_draw.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_draw.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_emit.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_emit.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_format.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_format.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_gmem.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_gmem.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_program.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_program.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_query.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_query.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_rasterizer.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_rasterizer.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_resource.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_resource.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_screen.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_screen.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_texture.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_texture.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_zsa.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_zsa.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_blend.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_blend.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_compute.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_compute.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_context.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_context.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_draw.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_draw.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_emit.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_emit.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_format.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_format.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_gmem.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_gmem.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_image.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_image.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_program.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_program.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_query.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_query.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_rasterizer.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_rasterizer.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_resource.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_resource.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_screen.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_screen.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_texture.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_texture.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_zsa.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_zsa.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_blend.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_blend.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_blitter.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_blitter.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_compute.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_compute.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_context.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_context.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_draw.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_draw.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_emit.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_emit.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_format.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_format.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_gmem.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_gmem.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_image.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_image.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_program.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_program.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_query.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_query.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_rasterizer.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_rasterizer.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_resource.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_resource.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_screen.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_screen.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_texture.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_texture.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_zsa.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_zsa.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_blend.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_blend.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_blitter.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_blitter.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_compute.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_compute.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_const.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_const.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_context.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_context.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_draw.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_draw.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_emit.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_emit.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_gmem.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_gmem.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_image.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_image.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_pack.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_program.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_program.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_query.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_query.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_rasterizer.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_rasterizer.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_resource.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_resource.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_screen.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_screen.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_texture.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_texture.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_vsc.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_vsc.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_zsa.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_zsa.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_cache.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_cache.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_cmdline.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_const.h U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_gallium.c U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_gallium.h U xenocara/lib/mesa/src/gallium/drivers/i915/.clang-format U xenocara/lib/mesa/src/gallium/drivers/i915/TODO U xenocara/lib/mesa/src/gallium/drivers/i915/i915_batch.h U xenocara/lib/mesa/src/gallium/drivers/i915/i915_batchbuffer.h U xenocara/lib/mesa/src/gallium/drivers/i915/i915_blit.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_blit.h U xenocara/lib/mesa/src/gallium/drivers/i915/i915_clear.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_context.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_context.h U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug.h U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug_fp.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug_private.h U xenocara/lib/mesa/src/gallium/drivers/i915/i915_flush.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc.h U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc_emit.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc_optimize.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc_translate.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_prim_emit.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_prim_vbuf.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_public.h U xenocara/lib/mesa/src/gallium/drivers/i915/i915_query.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_query.h U xenocara/lib/mesa/src/gallium/drivers/i915/i915_reg.h U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource.h U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource_buffer.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource_texture.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_screen.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_screen.h U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state.h U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_derived.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_dynamic.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_emit.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_fpc.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_immediate.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_inlines.h U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_sampler.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_static.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_surface.c U xenocara/lib/mesa/src/gallium/drivers/i915/i915_surface.h U xenocara/lib/mesa/src/gallium/drivers/i915/i915_winsys.h U xenocara/lib/mesa/src/gallium/drivers/i915/meson.build U xenocara/lib/mesa/src/gallium/drivers/i915/ci/deqp-i915g.toml U xenocara/lib/mesa/src/gallium/drivers/i915/ci/gitlab-ci.yml U xenocara/lib/mesa/src/gallium/drivers/i915/ci/i915-g33-fails.txt U xenocara/lib/mesa/src/gallium/drivers/i915/ci/i915-g33-flakes.txt U xenocara/lib/mesa/src/gallium/drivers/i915/ci/i915-g33-skips.txt U xenocara/lib/mesa/src/gallium/drivers/i915/ci/traces-i915.yml U xenocara/lib/mesa/src/gallium/drivers/iris/driinfo_iris.h U xenocara/lib/mesa/src/gallium/drivers/iris/iris_batch.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_batch.h U xenocara/lib/mesa/src/gallium/drivers/iris/iris_binder.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_binder.h U xenocara/lib/mesa/src/gallium/drivers/iris/iris_blit.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_blorp.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_border_color.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_bufmgr.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_bufmgr.h U xenocara/lib/mesa/src/gallium/drivers/iris/iris_clear.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_context.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_context.h U xenocara/lib/mesa/src/gallium/drivers/iris/iris_defines.h U xenocara/lib/mesa/src/gallium/drivers/iris/iris_disk_cache.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_draw.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_fence.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_fence.h U xenocara/lib/mesa/src/gallium/drivers/iris/iris_fine_fence.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_fine_fence.h U xenocara/lib/mesa/src/gallium/drivers/iris/iris_formats.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_genx_macros.h U xenocara/lib/mesa/src/gallium/drivers/iris/iris_genx_protos.h U xenocara/lib/mesa/src/gallium/drivers/iris/iris_measure.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_measure.h U xenocara/lib/mesa/src/gallium/drivers/iris/iris_monitor.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_monitor.h U xenocara/lib/mesa/src/gallium/drivers/iris/iris_perf.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_perf.h U xenocara/lib/mesa/src/gallium/drivers/iris/iris_performance_query.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_pipe.h U xenocara/lib/mesa/src/gallium/drivers/iris/iris_pipe_control.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_program.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_program_cache.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_query.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_resolve.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_resource.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_resource.h C xenocara/lib/mesa/src/gallium/drivers/iris/iris_screen.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_screen.h U xenocara/lib/mesa/src/gallium/drivers/iris/iris_state.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_utrace.c U xenocara/lib/mesa/src/gallium/drivers/iris/iris_utrace.h U xenocara/lib/mesa/src/gallium/drivers/iris/meson.build U xenocara/lib/mesa/src/gallium/drivers/lima/lima_blit.c U xenocara/lib/mesa/src/gallium/drivers/lima/lima_blit.h U xenocara/lib/mesa/src/gallium/drivers/lima/lima_bo.c U xenocara/lib/mesa/src/gallium/drivers/lima/lima_bo.h U xenocara/lib/mesa/src/gallium/drivers/lima/lima_context.c U xenocara/lib/mesa/src/gallium/drivers/lima/lima_context.h U xenocara/lib/mesa/src/gallium/drivers/lima/lima_disk_cache.c U xenocara/lib/mesa/src/gallium/drivers/lima/lima_disk_cache.h U xenocara/lib/mesa/src/gallium/drivers/lima/lima_draw.c U xenocara/lib/mesa/src/gallium/drivers/lima/lima_fence.c U xenocara/lib/mesa/src/gallium/drivers/lima/lima_fence.h U xenocara/lib/mesa/src/gallium/drivers/lima/lima_format.c U xenocara/lib/mesa/src/gallium/drivers/lima/lima_format.h U xenocara/lib/mesa/src/gallium/drivers/lima/lima_gpu.h U xenocara/lib/mesa/src/gallium/drivers/lima/lima_job.c U xenocara/lib/mesa/src/gallium/drivers/lima/lima_job.h U xenocara/lib/mesa/src/gallium/drivers/lima/lima_parser.c U xenocara/lib/mesa/src/gallium/drivers/lima/lima_parser.h U xenocara/lib/mesa/src/gallium/drivers/lima/lima_program.c U xenocara/lib/mesa/src/gallium/drivers/lima/lima_program.h U xenocara/lib/mesa/src/gallium/drivers/lima/lima_util.c U xenocara/lib/mesa/src/gallium/drivers/lima/lima_query.c U xenocara/lib/mesa/src/gallium/drivers/lima/lima_resource.c U xenocara/lib/mesa/src/gallium/drivers/lima/lima_resource.h U xenocara/lib/mesa/src/gallium/drivers/lima/lima_screen.c U xenocara/lib/mesa/src/gallium/drivers/lima/lima_screen.h U xenocara/lib/mesa/src/gallium/drivers/lima/lima_state.c U xenocara/lib/mesa/src/gallium/drivers/lima/lima_texture.c U xenocara/lib/mesa/src/gallium/drivers/lima/lima_texture.h U xenocara/lib/mesa/src/gallium/drivers/lima/lima_util.h U xenocara/lib/mesa/src/gallium/drivers/lima/meson.build U xenocara/lib/mesa/src/gallium/drivers/lima/ci/gitlab-ci.yml U xenocara/lib/mesa/src/gallium/drivers/lima/ci/lima-fails.txt U xenocara/lib/mesa/src/gallium/drivers/lima/ci/lima-skips.txt U xenocara/lib/mesa/src/gallium/drivers/lima/drm-shim/lima_noop.c U xenocara/lib/mesa/src/gallium/drivers/lima/drm-shim/meson.build U xenocara/lib/mesa/src/gallium/drivers/lima/ir/lima_ir.h U xenocara/lib/mesa/src/gallium/drivers/lima/ir/lima_nir_algebraic.py U xenocara/lib/mesa/src/gallium/drivers/lima/ir/lima_nir_duplicate_consts.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/lima_nir_duplicate_intrinsic.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/lima_nir_lower_txp.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/lima_nir_lower_uniform_to_scalar.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/lima_nir_split_load_input.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/lima_nir_split_loads.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/gp/codegen.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/gp/codegen.h U xenocara/lib/mesa/src/gallium/drivers/lima/ir/gp/disasm.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/gp/gpir.h U xenocara/lib/mesa/src/gallium/drivers/lima/ir/gp/instr.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/gp/lower.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/gp/nir.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/gp/node.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/gp/optimize.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/gp/reduce_scheduler.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/gp/regalloc.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/gp/scheduler.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/pp/codegen.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/pp/codegen.h U xenocara/lib/mesa/src/gallium/drivers/lima/ir/pp/disasm.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/pp/instr.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/pp/liveness.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/pp/lower.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/pp/nir.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/pp/node.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/pp/node_to_instr.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/pp/ppir.h U xenocara/lib/mesa/src/gallium/drivers/lima/ir/pp/regalloc.c U xenocara/lib/mesa/src/gallium/drivers/lima/ir/pp/scheduler.c U xenocara/lib/mesa/src/gallium/drivers/lima/standalone/glsl.cpp U xenocara/lib/mesa/src/gallium/drivers/lima/standalone/glsl.h U xenocara/lib/mesa/src/gallium/drivers/lima/standalone/lima_compiler_cmdline.c U xenocara/lib/mesa/src/gallium/drivers/lima/standalone/lima_disasm.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_alpha.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_alpha.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend_aos.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend_logicop.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_depth.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_depth.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_interp.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_interp.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_clear.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_clear.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_context.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_context.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_cs_tpool.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_cs_tpool.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_debug.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_draw_arrays.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_fence.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_fence.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_flush.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_flush.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_jit.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_jit.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_limits.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_linear.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_linear_fastpath.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_linear_interp.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_linear_priv.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_linear_sampler.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_memory.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_memory.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_perf.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_perf.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_public.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_query.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_query.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_debug.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_linear.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_linear_fallback.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_priv.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_rect.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_tri.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_tri_tmp.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene_queue.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene_queue.h C xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_screen.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_screen.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_analysis.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_context.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_line.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_point.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_rect.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_tri.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_vbuf.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_blend.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_clip.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_cs.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_cs.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_derived.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_fs.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_fs.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_fs_analysis.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_fs_fastpath.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_fs_linear.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_fs_linear_llvm.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_gs.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_rasterizer.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_sampler.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_setup.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_setup.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_so.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_surface.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_tess.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_vertex.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_vs.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_surface.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_surface.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_arit.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_blend.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_conv.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_format.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_main.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_printf.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_tex_sample.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_tex_sample.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_texture.c U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_texture.h U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/meson.build U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/ci/deqp-llvmpipe-asan.toml U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/ci/deqp-llvmpipe.toml U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/ci/gitlab-ci.yml U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/ci/llvmpipe-clover.txt U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/ci/llvmpipe-fails.txt U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/ci/llvmpipe-flakes.txt U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/ci/llvmpipe-rusticl.txt U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/ci/llvmpipe-skips.txt U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/ci/traces-llvmpipe.yml U xenocara/lib/mesa/src/gallium/drivers/nouveau/meson.build U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_buffer.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_buffer.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_compiler.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_context.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_debug.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_fence.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_fence.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_gldefs.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_heap.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_heap.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_mm.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_mm.h C xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_screen.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_screen.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_video.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_video.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video_bsp.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_winsys.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv17_mpeg.xml.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv31_mpeg.xml.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv_m2mf.xml.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv_object.xml.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/ci/deqp-nouveau-gk20a.toml U xenocara/lib/mesa/src/gallium/drivers/nouveau/ci/deqp-nouveau-gm20b.toml U xenocara/lib/mesa/src/gallium/drivers/nouveau/ci/gitlab-ci.yml U xenocara/lib/mesa/src/gallium/drivers/nouveau/ci/nouveau-gf108-fails.txt U xenocara/lib/mesa/src/gallium/drivers/nouveau/ci/nouveau-gf108-skips.txt U xenocara/lib/mesa/src/gallium/drivers/nouveau/ci/nouveau-gk20a-fails.txt U xenocara/lib/mesa/src/gallium/drivers/nouveau/ci/nouveau-gk20a-flakes.txt U xenocara/lib/mesa/src/gallium/drivers/nouveau/ci/nouveau-gk20a-skips.txt U xenocara/lib/mesa/src/gallium/drivers/nouveau/ci/nouveau-gm206-fails.txt U xenocara/lib/mesa/src/gallium/drivers/nouveau/ci/nouveau-gm206-flakes.txt U xenocara/lib/mesa/src/gallium/drivers/nouveau/ci/nouveau-gm206-skips.txt U xenocara/lib/mesa/src/gallium/drivers/nouveau/ci/nouveau-gm20b-fails.txt U xenocara/lib/mesa/src/gallium/drivers/nouveau/ci/nouveau-gm20b-flakes.txt U xenocara/lib/mesa/src/gallium/drivers/nouveau/ci/nouveau-gm20b-skips.txt U xenocara/lib/mesa/src/gallium/drivers/nouveau/ci/nouveau-gt215-fails.txt U xenocara/lib/mesa/src/gallium/drivers/nouveau/ci/nouveau-gt215-skips.txt U xenocara/lib/mesa/src/gallium/drivers/nouveau/ci/nouveau-nv92-fails.txt U xenocara/lib/mesa/src/gallium/drivers/nouveau/ci/nouveau-nv92-flakes.txt U xenocara/lib/mesa/src/gallium/drivers/nouveau/ci/nouveau-nv92-skips.txt U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv01_2d.xml.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30-40_3d.xml.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_clear.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_context.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_context.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_draw.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_format.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_format.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_fragprog.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_fragtex.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_miptree.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_push.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_query.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_resource.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_resource.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_screen.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_screen.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_state.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_state.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_texture.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_state_validate.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_transfer.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_transfer.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_vbo.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_vertprog.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_vertprog.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_winsys.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv40_vertprog.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv40_verttex.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nvfx_fragprog.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nvfx_shader.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nvfx_vertprog.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/g80_defs.xml.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/g80_texture.xml.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_2d.xml.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_3d.xml.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_3ddefs.xml.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_blit.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_compute.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_compute.xml.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_context.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_context.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_formats.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_miptree.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_program.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_program.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_push.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw_sm.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw_metric.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw_metric.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw_sm.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_resource.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_resource.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_screen.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_screen.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_shader_state.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_state.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_state_validate.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_stateobj.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_stateobj_tex.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_surface.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_tex.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_transfer.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_transfer.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_vbo.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_winsys.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv84_video.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv84_video.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv84_video_bsp.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv84_video_vp.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video_bsp.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video_ppp.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video_vp.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/cla0c0qmd.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/clc0c0qmd.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/clc3c0qmd.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/drf.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/gm107_texture.xml.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_3d.xml.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_compute.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_compute.xml.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_context.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_context.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_formats.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_m2mf.xml.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_macros.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_miptree.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_program.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_program.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw_metric.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw_metric.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw_sm.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw_sm.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_sw.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_sw.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_resource.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_resource.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_screen.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_shader_state.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_state.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_state_validate.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_stateobj.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_surface.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_tex.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_transfer.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_vbo.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_vbo_translate.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/qmd.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_bsp.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_ppp.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_vp.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_winsys.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.xml.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_copy.xml.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_p2mf.xml.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/qmda0c0.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/qmdc0c0.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/qmdc3c0.c U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/mme/Makefile U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/mme/com9097.mme U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/mme/com9097.mme.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/mme/com90c0.mme U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/mme/com90c0.mme.h U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/mme/comc597.mme.h U xenocara/lib/mesa/src/gallium/drivers/panfrost/.editorconfig U xenocara/lib/mesa/src/gallium/drivers/panfrost/meson.build U xenocara/lib/mesa/src/gallium/drivers/panfrost/pan_blend_cso.h U xenocara/lib/mesa/src/gallium/drivers/panfrost/pan_blit.c U xenocara/lib/mesa/src/gallium/drivers/panfrost/pan_cmdstream.c U xenocara/lib/mesa/src/gallium/drivers/panfrost/pan_context.c U xenocara/lib/mesa/src/gallium/drivers/panfrost/pan_context.h U xenocara/lib/mesa/src/gallium/drivers/panfrost/pan_disk_cache.c U xenocara/lib/mesa/src/gallium/drivers/panfrost/pan_helpers.c U xenocara/lib/mesa/src/gallium/drivers/panfrost/pan_job.c U xenocara/lib/mesa/src/gallium/drivers/panfrost/pan_job.h U xenocara/lib/mesa/src/gallium/drivers/panfrost/pan_mempool.c U xenocara/lib/mesa/src/gallium/drivers/panfrost/pan_mempool.h U xenocara/lib/mesa/src/gallium/drivers/panfrost/pan_public.h U xenocara/lib/mesa/src/gallium/drivers/panfrost/pan_resource.c U xenocara/lib/mesa/src/gallium/drivers/panfrost/pan_resource.h U xenocara/lib/mesa/src/gallium/drivers/panfrost/pan_screen.c U xenocara/lib/mesa/src/gallium/drivers/panfrost/pan_screen.h U xenocara/lib/mesa/src/gallium/drivers/panfrost/pan_shader.c U xenocara/lib/mesa/src/gallium/drivers/r300/.editorconfig U xenocara/lib/mesa/src/gallium/drivers/r300/meson.build U xenocara/lib/mesa/src/gallium/drivers/r300/r300_blit.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_cb.h U xenocara/lib/mesa/src/gallium/drivers/r300/r300_chipset.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_chipset.h U xenocara/lib/mesa/src/gallium/drivers/r300/r300_context.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_context.h U xenocara/lib/mesa/src/gallium/drivers/r300/r300_cs.h U xenocara/lib/mesa/src/gallium/drivers/r300/r300_debug.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_defines.h U xenocara/lib/mesa/src/gallium/drivers/r300/r300_emit.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_emit.h U xenocara/lib/mesa/src/gallium/drivers/r300/r300_flush.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_fs.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_fs.h U xenocara/lib/mesa/src/gallium/drivers/r300/r300_hyperz.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_public.h U xenocara/lib/mesa/src/gallium/drivers/r300/r300_query.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_reg.h U xenocara/lib/mesa/src/gallium/drivers/r300/r300_render.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_render_stencilref.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_render_translate.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_resource.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen.h U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen_buffer.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen_buffer.h U xenocara/lib/mesa/src/gallium/drivers/r300/r300_shader_semantics.h U xenocara/lib/mesa/src/gallium/drivers/r300/r300_state.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_state_derived.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_state_inlines.h U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture.h U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture_desc.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture_desc.h U xenocara/lib/mesa/src/gallium/drivers/r300/r300_tgsi_to_rc.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_tgsi_to_rc.h U xenocara/lib/mesa/src/gallium/drivers/r300/r300_transfer.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_transfer.h U xenocara/lib/mesa/src/gallium/drivers/r300/r300_vs.c U xenocara/lib/mesa/src/gallium/drivers/r300/r300_vs.h U xenocara/lib/mesa/src/gallium/drivers/r300/r300_vs_draw.c U xenocara/lib/mesa/src/gallium/drivers/r300/ci/r300-r480-fails.txt U xenocara/lib/mesa/src/gallium/drivers/r300/ci/r300-rv515-fails.txt U xenocara/lib/mesa/src/gallium/drivers/r300/ci/r300-rv515-flakes.txt U xenocara/lib/mesa/src/gallium/drivers/r300/ci/r300-rv515-skips.txt U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/memory_pool.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/memory_pool.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog_emit.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog_swizzle.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog_swizzle.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_nir_algebraic.py U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r3xx_fragprog.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r3xx_vertprog.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r3xx_vertprog_dump.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r500_fragprog.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r500_fragprog.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r500_fragprog_emit.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_code.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_code.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler_util.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler_util.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow_deadcode.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow_swizzles.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_branches.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_branches.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_inline_literals.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_list.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_list.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_opcodes.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_opcodes.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_optimize.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_dead_sources.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_regalloc.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_schedule.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_translate.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_alu.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_alu.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_constants.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_pair.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_pair.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_print.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_tex.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_tex.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_regalloc.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_remove_constants.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_remove_constants.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_rename_regs.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_rename_regs.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_swizzle.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_variable.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_variable.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_vert_fc.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/omod_two_writers.test U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/r300_compiler_tests.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/r300_compiler_tests.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/radeon_compiler_optimize_tests.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/radeon_compiler_regalloc_tests.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/radeon_compiler_util_tests.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/rc_test_helpers.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/rc_test_helpers.h U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/regalloc_tex_1d_swizzle.test U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/unit_test.c U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/unit_test.h U xenocara/lib/mesa/src/gallium/drivers/r600/.dir-locals.el U xenocara/lib/mesa/src/gallium/drivers/r600/.editorconfig U xenocara/lib/mesa/src/gallium/drivers/r600/cayman_msaa.c U xenocara/lib/mesa/src/gallium/drivers/r600/compute_memory_pool.c U xenocara/lib/mesa/src/gallium/drivers/r600/compute_memory_pool.h U xenocara/lib/mesa/src/gallium/drivers/r600/eg_asm.c U xenocara/lib/mesa/src/gallium/drivers/r600/eg_debug.c U xenocara/lib/mesa/src/gallium/drivers/r600/eg_sq.h U xenocara/lib/mesa/src/gallium/drivers/r600/egd_tables.py U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_compute.c U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_compute.h U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_compute_internal.h U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_hw_context.c U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_state.c U xenocara/lib/mesa/src/gallium/drivers/r600/evergreend.h U xenocara/lib/mesa/src/gallium/drivers/r600/meson.build U xenocara/lib/mesa/src/gallium/drivers/r600/r600_asm.c U xenocara/lib/mesa/src/gallium/drivers/r600/r600_asm.h U xenocara/lib/mesa/src/gallium/drivers/r600/r600_blit.c U xenocara/lib/mesa/src/gallium/drivers/r600/r600_buffer_common.c U xenocara/lib/mesa/src/gallium/drivers/r600/r600_cs.h U xenocara/lib/mesa/src/gallium/drivers/r600/r600_dump.c U xenocara/lib/mesa/src/gallium/drivers/r600/r600_dump.h U xenocara/lib/mesa/src/gallium/drivers/r600/r600_formats.h U xenocara/lib/mesa/src/gallium/drivers/r600/r600_gpu_load.c U xenocara/lib/mesa/src/gallium/drivers/r600/r600_hw_context.c U xenocara/lib/mesa/src/gallium/drivers/r600/r600_isa.c U xenocara/lib/mesa/src/gallium/drivers/r600/r600_isa.h U xenocara/lib/mesa/src/gallium/drivers/r600/r600_opcodes.h U xenocara/lib/mesa/src/gallium/drivers/r600/r600_perfcounter.c U xenocara/lib/mesa/src/gallium/drivers/r600/r600_pipe.c U xenocara/lib/mesa/src/gallium/drivers/r600/r600_pipe.h U xenocara/lib/mesa/src/gallium/drivers/r600/r600_pipe_common.c U xenocara/lib/mesa/src/gallium/drivers/r600/r600_pipe_common.h U xenocara/lib/mesa/src/gallium/drivers/r600/r600_public.h U xenocara/lib/mesa/src/gallium/drivers/r600/r600_query.c U xenocara/lib/mesa/src/gallium/drivers/r600/r600_query.h U xenocara/lib/mesa/src/gallium/drivers/r600/r600_shader.c U xenocara/lib/mesa/src/gallium/drivers/r600/r600_shader.h U xenocara/lib/mesa/src/gallium/drivers/r600/r600_sq.h U xenocara/lib/mesa/src/gallium/drivers/r600/r600d.h U xenocara/lib/mesa/src/gallium/drivers/r600/r600_state.c U xenocara/lib/mesa/src/gallium/drivers/r600/r600_state_common.c U xenocara/lib/mesa/src/gallium/drivers/r600/r600_streamout.c U xenocara/lib/mesa/src/gallium/drivers/r600/r600_test_dma.c U xenocara/lib/mesa/src/gallium/drivers/r600/r600_texture.c U xenocara/lib/mesa/src/gallium/drivers/r600/r600_uvd.c U xenocara/lib/mesa/src/gallium/drivers/r600/r600_viewport.c U xenocara/lib/mesa/src/gallium/drivers/r600/r600d_common.h U xenocara/lib/mesa/src/gallium/drivers/r600/r700_asm.c U xenocara/lib/mesa/src/gallium/drivers/r600/r700_sq.h U xenocara/lib/mesa/src/gallium/drivers/r600/radeon_uvd.c U xenocara/lib/mesa/src/gallium/drivers/r600/radeon_uvd.h U xenocara/lib/mesa/src/gallium/drivers/r600/radeon_vce.c U xenocara/lib/mesa/src/gallium/drivers/r600/radeon_vce.h U xenocara/lib/mesa/src/gallium/drivers/r600/radeon_video.c U xenocara/lib/mesa/src/gallium/drivers/r600/radeon_video.h U xenocara/lib/mesa/src/gallium/drivers/r600/ci/r600-rv770-fails.txt U xenocara/lib/mesa/src/gallium/drivers/r600/ci/r600-rv770-flakes.txt U xenocara/lib/mesa/src/gallium/drivers/r600/ci/r600-rv770-skips.txt U xenocara/lib/mesa/src/gallium/drivers/r600/ci/r600-turks-fails.txt U xenocara/lib/mesa/src/gallium/drivers/r600/ci/r600-turks-flakes.txt U xenocara/lib/mesa/src/gallium/drivers/r600/ci/r600-turks-skips.txt U xenocara/lib/mesa/src/gallium/drivers/r600/sb/notes.markdown U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc.h U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_builder.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_decoder.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_dump.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_finalize.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_fmt_def.inc U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_parser.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_context.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_core.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_dce_cleanup.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_def_use.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_dump.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_expr.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_expr.h U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_gcm.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_gvn.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_if_conversion.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ir.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ir.h U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_pass.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_liveness.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_pass.h U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_peephole.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_psi_ops.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_public.h U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ra_checker.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ra_coalesce.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ra_init.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_sched.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_sched.h U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_shader.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_shader.h U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ssa_builder.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_valtable.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/.clang-format U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/.editorconfig U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_alu_defines.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_alu_defines.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_alu_readport_validation.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_alu_readport_validation.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_assembler.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_assembler.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_callstack.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_callstack.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_conditionaljumptracker.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_conditionaljumptracker.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_debug.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_debug.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_defines.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_docu.txt U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_instr.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_instr.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_instr_alu.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_instr_alu.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_instr_alugroup.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_instr_alugroup.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_instr_controlflow.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_instr_controlflow.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_instr_export.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_instr_export.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_instr_fetch.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_instr_fetch.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_instr_lds.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_instr_lds.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_instr_mem.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_instr_mem.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_instr_tex.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_instr_tex.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_instrfactory.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_instrfactory.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_liverangeevaluator.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_liverangeevaluator.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_liverangeevaluator_helpers.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_liverangeevaluator_helpers.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_memorypool.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_memorypool.h C xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_nir.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_nir.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_nir_legalize_image_load_store.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_nir_lower_64bit.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_nir_lower_alu.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_nir_lower_alu.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_nir_lower_fs_out_to_vector.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_nir_lower_fs_out_to_vector.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_nir_lower_tess_io.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_nir_lower_tex.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_nir_lower_tex.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_nir_vectorize_vs_inputs.c U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_optimizer.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_optimizer.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_peephole.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_peephole.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_ra.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_ra.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_scheduler.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_scheduler.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_shader.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_shader.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_shader_cs.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_shader_cs.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_shader_fs.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_shader_fs.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_shader_gs.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_shader_gs.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_shader_tess.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_shader_tess.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_shader_vs.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_shader_vs.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_valuefactory.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_valuefactory.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_virtualvalues.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/sfn_virtualvalues.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/tests/meson.build U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/tests/sfn_instr_test.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/tests/sfn_instrfromstring_test.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/tests/sfn_liverange_test.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/tests/sfn_optimizer_test.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/tests/sfn_shaderfromstring_test.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/tests/sfn_test_shaders.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/tests/sfn_test_shaders.h U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/tests/sfn_value_test.cpp U xenocara/lib/mesa/src/gallium/drivers/r600/sfn/tests/sfn_valuefactory_test.cpp U xenocara/lib/mesa/src/gallium/drivers/radeonsi/driinfo_radeonsi.h U xenocara/lib/mesa/src/gallium/drivers/radeonsi/gfx10_query.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/gfx10_shader_ngg.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/meson.build U xenocara/lib/mesa/src/gallium/drivers/radeonsi/pspdecryptionparam.h U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_temporal.h U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_uvd.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_uvd.h U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_uvd_enc.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_uvd_enc.h U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_uvd_enc_1_1.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_vce.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_vce.h U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_vce_40_2_2.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_vce_50.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_vce_52.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_vcn.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_vcn.h U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_vcn_av1_default.h U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_vcn_dec.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_vcn_dec.h U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_vcn_dec_jpeg.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_vcn_enc.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_vcn_enc.h U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_vcn_enc_1_2.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_vcn_enc_2_0.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_vcn_enc_3_0.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_vcn_enc_4_0.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_video.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/radeon_video.h U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_blit.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_buffer.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_build_pm4.h U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_clear.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_compute.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_compute.h U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_cp_dma.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_compute_blit.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_cp_reg_shadowing.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_debug.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_debug_options.h U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_descriptors.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_fence.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_get.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_gfx_cs.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_gpu_load.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_nir_optim.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_perfcounter.c C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pipe.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pipe.h C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pm4.c C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pm4.h U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_public.h U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_query.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_query.h U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_sdma_copy_image.c C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader.h U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_info.c C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_internal.h C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_llvm.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_llvm_gs.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_llvm_ps.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_llvm_resources.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_llvm_tess.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_llvm_vs.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_nir.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shaderlib_nir.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shaderlib_tgsi.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_sqtt.c C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state.h U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_binning.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_draw.cpp U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_msaa.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_shaders.cpp U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_uvd.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_viewport.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_streamout.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_test_dma_perf.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_test_image_copy_region.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_texture.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/ci/gfx10-navi10-fail.csv U xenocara/lib/mesa/src/gallium/drivers/radeonsi/ci/gfx10_3-navi21-fail.csv U xenocara/lib/mesa/src/gallium/drivers/radeonsi/ci/gfx8-polaris11-fail.csv U xenocara/lib/mesa/src/gallium/drivers/radeonsi/ci/gfx9-raven-fail.csv U xenocara/lib/mesa/src/gallium/drivers/radeonsi/ci/gfx9-vega20-fail.csv U xenocara/lib/mesa/src/gallium/drivers/radeonsi/ci/gfx9-vega20-flakes.csv U xenocara/lib/mesa/src/gallium/drivers/radeonsi/ci/radeonsi-flakes.csv U xenocara/lib/mesa/src/gallium/drivers/radeonsi/ci/radeonsi-run-tests.py U xenocara/lib/mesa/src/gallium/drivers/radeonsi/ci/skips.csv U xenocara/lib/mesa/src/gallium/drivers/radeonsi/glsl_tests/HOW_TO_RUN U xenocara/lib/mesa/src/gallium/drivers/radeonsi/glsl_tests/amdgcn_glslc.c U xenocara/lib/mesa/src/gallium/drivers/radeonsi/glsl_tests/bitcount.glsl U xenocara/lib/mesa/src/gallium/drivers/radeonsi/glsl_tests/bitfield_extract.glsl U xenocara/lib/mesa/src/gallium/drivers/radeonsi/glsl_tests/bitfield_insert.glsl U xenocara/lib/mesa/src/gallium/drivers/radeonsi/glsl_tests/div.glsl U xenocara/lib/mesa/src/gallium/drivers/radeonsi/glsl_tests/exp2.glsl U xenocara/lib/mesa/src/gallium/drivers/radeonsi/glsl_tests/fma.glsl U xenocara/lib/mesa/src/gallium/drivers/radeonsi/glsl_tests/fract.glsl U xenocara/lib/mesa/src/gallium/drivers/radeonsi/glsl_tests/frexp.glsl U xenocara/lib/mesa/src/gallium/drivers/radeonsi/glsl_tests/ldexp.glsl U xenocara/lib/mesa/src/gallium/drivers/radeonsi/glsl_tests/lit.cfg U xenocara/lib/mesa/src/gallium/drivers/radeonsi/glsl_tests/log2.glsl U xenocara/lib/mesa/src/gallium/drivers/radeonsi/glsl_tests/meson.build U xenocara/lib/mesa/src/gallium/drivers/radeonsi/glsl_tests/minmax.f32.glsl U xenocara/lib/mesa/src/gallium/drivers/radeonsi/glsl_tests/minmax.f64.glsl U xenocara/lib/mesa/src/gallium/drivers/radeonsi/glsl_tests/minmax.i32.glsl U xenocara/lib/mesa/src/gallium/drivers/radeonsi/glsl_tests/minmax.u32.glsl U xenocara/lib/mesa/src/gallium/drivers/radeonsi/glsl_tests/pack_unpack_half.glsl U xenocara/lib/mesa/src/gallium/drivers/radeonsi/glsl_tests/pow.glsl U xenocara/lib/mesa/src/gallium/drivers/radeonsi/glsl_tests/sqrt.glsl U xenocara/lib/mesa/src/gallium/drivers/softpipe/meson.build U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_buffer.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_buffer.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_clear.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_clear.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_compute.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_context.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_context.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_draw_arrays.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fence.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fence.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_flush.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_flush.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fs.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fs_exec.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_image.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_image.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_limits.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_prim_vbuf.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_prim_vbuf.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_public.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_blend.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_depth_test.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_depth_test_tmp.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_fs.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_pipe.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_pipe.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_query.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_query.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_screen.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_screen.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_setup.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_setup.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_blend.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_clip.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_derived.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_image.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_rasterizer.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_sampler.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_shader.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_so.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_surface.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_vertex.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_surface.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_surface.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_sample.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_sample.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_tile_cache.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_tile_cache.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_texture.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_texture.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tile_cache.c U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tile_cache.h U xenocara/lib/mesa/src/gallium/drivers/softpipe/ci/deqp-softpipe.toml U xenocara/lib/mesa/src/gallium/drivers/softpipe/ci/gitlab-ci.yml U xenocara/lib/mesa/src/gallium/drivers/softpipe/ci/softpipe-asan-fails.txt U xenocara/lib/mesa/src/gallium/drivers/softpipe/ci/softpipe-fails.txt U xenocara/lib/mesa/src/gallium/drivers/softpipe/ci/softpipe-flakes.txt U xenocara/lib/mesa/src/gallium/drivers/softpipe/ci/softpipe-skips.txt U xenocara/lib/mesa/src/gallium/drivers/svga/meson.build U xenocara/lib/mesa/src/gallium/drivers/svga/svga_cmd.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_cmd.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_cmd_vgpu10.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_context.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_context.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_debug.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw_arrays.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw_elements.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw_private.h C xenocara/lib/mesa/src/gallium/drivers/svga/svga_format.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_format.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_hw_reg.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_image_view.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_image_view.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_link.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_link.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_mksstats.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_blend.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_blit.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_clear.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_constants.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_cs.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_depthstencil.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_draw.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_flush.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_fs.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_gs.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_misc.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_query.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_rasterizer.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_sampler.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_streamout.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_ts.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_vertex.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_vs.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_public.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer_upload.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer_upload.h C xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_texture.c C xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_texture.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_sampler_view.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_sampler_view.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen.h C xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen_cache.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen_cache.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_shader.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_shader.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_shader_buffer.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_shader_buffer.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_constants.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_cs.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_framebuffer.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_fs.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_gs.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_need_swtnl.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_rss.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_sampler.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_tgsi_transform.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_ts.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_tss.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_uav.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_vdecl.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_vs.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_streamout.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_surface.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_surface.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_backend.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_draw.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_private.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_state.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_decl_sm30.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_emit.h U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_insn.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_vgpu10.c U xenocara/lib/mesa/src/gallium/drivers/svga/svga_winsys.h U xenocara/lib/mesa/src/gallium/drivers/svga/include/README U xenocara/lib/mesa/src/gallium/drivers/svga/include/VGPU10ShaderTokens.h U xenocara/lib/mesa/src/gallium/drivers/svga/include/includeCheck.h U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_caps.h U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_cmd.h U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_devcaps.h U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_dx.h U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_limits.h U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_reg.h U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_shaderdefs.h U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_surfacedefs.h U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_types.h U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_escape.h U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_overlay.h U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_reg.h U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_types.h U xenocara/lib/mesa/src/gallium/drivers/svga/include/vmware_pack_begin.h U xenocara/lib/mesa/src/gallium/drivers/svga/include/vmware_pack_end.h U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_dump.c U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_dump.h U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_dump.py U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader.h U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_dump.c U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_dump.h U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_op.c U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_op.h U xenocara/lib/mesa/src/gallium/drivers/tegra/meson.build U xenocara/lib/mesa/src/gallium/drivers/tegra/tegra_context.c U xenocara/lib/mesa/src/gallium/drivers/tegra/tegra_context.h U xenocara/lib/mesa/src/gallium/drivers/tegra/tegra_resource.h U xenocara/lib/mesa/src/gallium/drivers/tegra/tegra_screen.c U xenocara/lib/mesa/src/gallium/drivers/tegra/tegra_screen.h U xenocara/lib/mesa/src/gallium/drivers/v3d/.editorconfig U xenocara/lib/mesa/src/gallium/drivers/v3d/driinfo_v3d.h U xenocara/lib/mesa/src/gallium/drivers/v3d/meson.build U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_blit.c U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_bufmgr.c U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_bufmgr.h U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_cl.c U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_cl.h U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_context.c U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_context.h U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_disk_cache.c U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_fence.c U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_format_table.h U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_formats.c U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_job.c U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_program.c U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_query.c U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_query.h U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_query_perfcnt.c U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_query_pipe.c U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_resource.c U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_resource.h U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_screen.c U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_screen.h U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_uniforms.c U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_context.h U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_draw.c U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_emit.c U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_format_table.c U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_job.c U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_rcl.c U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_state.c U xenocara/lib/mesa/src/gallium/drivers/vc4/.dir-locals.el U xenocara/lib/mesa/src/gallium/drivers/vc4/.editorconfig U xenocara/lib/mesa/src/gallium/drivers/vc4/meson.build U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_blit.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_bufmgr.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_bufmgr.h U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl.h U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl_dump.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl_dump.h U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_context.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_context.h U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_draw.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_emit.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_fence.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_formats.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_job.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_nir_lower_blend.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_nir_lower_io.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_nir_lower_txf_ms.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_algebraic.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_coalesce_ff_writes.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_constant_folding.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_copy_propagation.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_dead_code.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_peephole_sf.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_small_immediates.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_vpm.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_program.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir.h U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_emit_uniform_stream_resets.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_live_variables.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_lower_uniforms.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_schedule.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_validate.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu.h U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_defines.h U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_disasm.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_emit.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_schedule.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_validate.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_query.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_register_allocate.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_reorder_uniforms.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_resource.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_resource.h U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_screen.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_screen.h U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_simulator.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_simulator_validate.h U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_state.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_tiling.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_tiling.h U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_tiling_lt.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_tiling_lt_neon.c U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_uniforms.c U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/.dir-locals.el U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/.editorconfig U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/README U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_drv.h U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_gem.c U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_packet.h U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_render_cl.c U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_validate.c U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_validate_shaders.c U xenocara/lib/mesa/src/gallium/drivers/virgl/meson.build U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_buffer.c U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_context.c U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_context.h U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_driinfo.h.in U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_encode.c U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_encode.h U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_public.h U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_query.c U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_resource.c U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_resource.h U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_screen.c U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_screen.h U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_staging_mgr.c U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_staging_mgr.h U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_streamout.c U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_texture.c U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_tgsi.c U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_video.c U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_transfer_queue.c U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_transfer_queue.h U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_video.h U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_winsys.h U xenocara/lib/mesa/src/gallium/drivers/virgl/ci/deqp-virgl-gl.toml U xenocara/lib/mesa/src/gallium/drivers/virgl/ci/deqp-virgl-gles.toml U xenocara/lib/mesa/src/gallium/drivers/virgl/ci/deqp-virpipe-gl.toml U xenocara/lib/mesa/src/gallium/drivers/virgl/ci/gitlab-ci.yml U xenocara/lib/mesa/src/gallium/drivers/virgl/ci/traces-virgl-iris.yml U xenocara/lib/mesa/src/gallium/drivers/virgl/ci/traces-virgl.yml U xenocara/lib/mesa/src/gallium/drivers/virgl/ci/virgl-gl-fails.txt U xenocara/lib/mesa/src/gallium/drivers/virgl/ci/virgl-gl-flakes.txt U xenocara/lib/mesa/src/gallium/drivers/virgl/ci/virgl-gl-skips.txt U xenocara/lib/mesa/src/gallium/drivers/virgl/ci/virgl-gles-fails.txt U xenocara/lib/mesa/src/gallium/drivers/virgl/ci/virgl-gles-flakes.txt U xenocara/lib/mesa/src/gallium/drivers/virgl/ci/virgl-gles-skips.txt U xenocara/lib/mesa/src/gallium/drivers/virgl/ci/virpipe-gl-fails.txt U xenocara/lib/mesa/src/gallium/drivers/virgl/ci/virpipe-gl-flakes.txt U xenocara/lib/mesa/src/gallium/drivers/virgl/ci/virpipe-gl-skips.txt U xenocara/lib/mesa/src/gallium/drivers/virgl/tests/meson.build U xenocara/lib/mesa/src/gallium/drivers/virgl/tests/virgl_staging_mgr_test.cpp U xenocara/lib/mesa/src/gallium/drivers/zink/VP_ZINK_requirements.json U xenocara/lib/mesa/src/gallium/drivers/zink/driinfo_zink.h U xenocara/lib/mesa/src/gallium/drivers/zink/meson.build U xenocara/lib/mesa/src/gallium/drivers/zink/zink_batch.c U xenocara/lib/mesa/src/gallium/drivers/zink/zink_batch.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_blit.c U xenocara/lib/mesa/src/gallium/drivers/zink/zink_bo.c U xenocara/lib/mesa/src/gallium/drivers/zink/zink_bo.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_clear.c U xenocara/lib/mesa/src/gallium/drivers/zink/zink_clear.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_compiler.c U xenocara/lib/mesa/src/gallium/drivers/zink/zink_compiler.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_context.c U xenocara/lib/mesa/src/gallium/drivers/zink/zink_context.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_descriptors.c U xenocara/lib/mesa/src/gallium/drivers/zink/zink_descriptors.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_device_info.py U xenocara/lib/mesa/src/gallium/drivers/zink/zink_draw.cpp U xenocara/lib/mesa/src/gallium/drivers/zink/zink_extensions.py U xenocara/lib/mesa/src/gallium/drivers/zink/zink_fence.c U xenocara/lib/mesa/src/gallium/drivers/zink/zink_fence.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_format.c U xenocara/lib/mesa/src/gallium/drivers/zink/zink_format.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_format_test.c U xenocara/lib/mesa/src/gallium/drivers/zink/zink_framebuffer.c U xenocara/lib/mesa/src/gallium/drivers/zink/zink_framebuffer.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_helpers.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_inlines.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_instance.py U xenocara/lib/mesa/src/gallium/drivers/zink/zink_kopper.c U xenocara/lib/mesa/src/gallium/drivers/zink/zink_kopper.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_lower_cubemap_to_array.c U xenocara/lib/mesa/src/gallium/drivers/zink/zink_pipeline.c U xenocara/lib/mesa/src/gallium/drivers/zink/zink_pipeline.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_program.c U xenocara/lib/mesa/src/gallium/drivers/zink/zink_program.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_program_state.hpp U xenocara/lib/mesa/src/gallium/drivers/zink/zink_public.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_query.c U xenocara/lib/mesa/src/gallium/drivers/zink/zink_query.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_render_pass.c U xenocara/lib/mesa/src/gallium/drivers/zink/zink_render_pass.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_resource.c U xenocara/lib/mesa/src/gallium/drivers/zink/zink_resource.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_screen.c U xenocara/lib/mesa/src/gallium/drivers/zink/zink_screen.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_shader_keys.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_state.c U xenocara/lib/mesa/src/gallium/drivers/zink/zink_state.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_surface.c U xenocara/lib/mesa/src/gallium/drivers/zink/zink_surface.h U xenocara/lib/mesa/src/gallium/drivers/zink/zink_types.h U xenocara/lib/mesa/src/gallium/drivers/zink/ci/deqp-zink-anv-tgl.toml U xenocara/lib/mesa/src/gallium/drivers/zink/ci/deqp-zink-freedreno-a618.toml U xenocara/lib/mesa/src/gallium/drivers/zink/ci/deqp-zink-lvp.toml U xenocara/lib/mesa/src/gallium/drivers/zink/ci/deqp-zink-radv.toml U xenocara/lib/mesa/src/gallium/drivers/zink/ci/gitlab-ci.yml U xenocara/lib/mesa/src/gallium/drivers/zink/ci/zink-amdpro-fails.txt U xenocara/lib/mesa/src/gallium/drivers/zink/ci/zink-anv-icl-fails.txt U xenocara/lib/mesa/src/gallium/drivers/zink/ci/zink-anv-icl-skips.txt U xenocara/lib/mesa/src/gallium/drivers/zink/ci/zink-anv-tgl-fails.txt U xenocara/lib/mesa/src/gallium/drivers/zink/ci/zink-anv-tgl-skips.txt U xenocara/lib/mesa/src/gallium/drivers/zink/ci/zink-freedreno-a618-fails.txt U xenocara/lib/mesa/src/gallium/drivers/zink/ci/zink-freedreno-a618-flakes.txt U xenocara/lib/mesa/src/gallium/drivers/zink/ci/zink-freedreno-a618-skips.txt U xenocara/lib/mesa/src/gallium/drivers/zink/ci/zink-lvp-fails.txt U xenocara/lib/mesa/src/gallium/drivers/zink/ci/zink-lvp-flakes.txt U xenocara/lib/mesa/src/gallium/drivers/zink/ci/zink-lvp-skips.txt U xenocara/lib/mesa/src/gallium/drivers/zink/ci/zink-nv-fails.txt U xenocara/lib/mesa/src/gallium/drivers/zink/ci/zink-nv-flakes.txt U xenocara/lib/mesa/src/gallium/drivers/zink/ci/zink-radv-fails.txt U xenocara/lib/mesa/src/gallium/drivers/zink/ci/zink-radv-flakes.txt U xenocara/lib/mesa/src/gallium/drivers/zink/ci/zink-radv-skips.txt U xenocara/lib/mesa/src/gallium/drivers/zink/ci/zink-tu-a630-fails.txt U xenocara/lib/mesa/src/gallium/drivers/zink/ci/zink-tu-a630-flakes.txt U xenocara/lib/mesa/src/gallium/drivers/zink/ci/zink-tu-a630-skips.txt U xenocara/lib/mesa/src/gallium/drivers/zink/nir_to_spirv/nir_to_spirv.c U xenocara/lib/mesa/src/gallium/drivers/zink/nir_to_spirv/nir_to_spirv.h U xenocara/lib/mesa/src/gallium/drivers/zink/nir_to_spirv/spirv_builder.c U xenocara/lib/mesa/src/gallium/drivers/zink/nir_to_spirv/spirv_builder.h U xenocara/lib/mesa/src/gallium/drivers/zink/nir_to_spirv/zink_nir_algebraic.py U xenocara/lib/mesa/src/gallium/frontends/clover/meson.build U xenocara/lib/mesa/src/gallium/frontends/clover/api/context.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/api/device.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/api/dispatch.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/api/dispatch.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/api/event.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/api/interop.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/api/invalid.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/api/kernel.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/api/memory.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/api/platform.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/api/program.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/api/queue.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/api/sampler.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/api/transfer.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/api/util.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/binary.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/binary.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/compiler.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/context.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/context.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/device.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/device.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/error.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/event.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/event.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/format.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/format.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/kernel.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/kernel.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/memory.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/memory.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/object.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/platform.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/platform.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/printf.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/printf.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/program.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/program.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/property.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/queue.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/queue.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/resource.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/resource.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/sampler.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/sampler.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/timestamp.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/core/timestamp.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/llvm/codegen.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/llvm/compat.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/llvm/invocation.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/llvm/invocation.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/llvm/metadata.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/llvm/util.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/llvm/codegen/bitcode.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/llvm/codegen/common.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/llvm/codegen/native.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/nir/invocation.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/nir/invocation.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/spirv/invocation.cpp U xenocara/lib/mesa/src/gallium/frontends/clover/spirv/invocation.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/util/adaptor.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/util/algebra.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/util/algorithm.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/util/compat.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/util/factor.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/util/functional.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/util/lazy.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/util/pointer.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/util/range.hpp U xenocara/lib/mesa/src/gallium/frontends/clover/util/tuple.hpp U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/Adapter.cpp U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/D3DKMT.cpp U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/Debug.cpp U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/Debug.h U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/Device.cpp U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/Device.h U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/Draw.cpp U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/Draw.h U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/DriverIncludes.h U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/DxgiFns.cpp U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/DxgiFns.h U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/Format.cpp U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/Format.h U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/InputAssembly.cpp U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/InputAssembly.h U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/OutputMerger.cpp U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/OutputMerger.h U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/Query.cpp U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/Query.h U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/README.md U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/Rasterizer.cpp U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/Rasterizer.h U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/Resource.h U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/Resource.cpp U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/Shader.cpp U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/Shader.h U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/ShaderDump.cpp U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/ShaderDump.h U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/ShaderParse.c U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/ShaderParse.h U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/ShaderTGSI.c U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/State.h U xenocara/lib/mesa/src/gallium/frontends/d3d10umd/meson.build U xenocara/lib/mesa/src/gallium/frontends/dri/dri2.c U xenocara/lib/mesa/src/gallium/frontends/dri/dri_context.c U xenocara/lib/mesa/src/gallium/frontends/dri/dri_context.h U xenocara/lib/mesa/src/gallium/frontends/dri/dri_drawable.c U xenocara/lib/mesa/src/gallium/frontends/dri/dri_drawable.h U xenocara/lib/mesa/src/gallium/frontends/dri/dri_helpers.c U xenocara/lib/mesa/src/gallium/frontends/dri/dri_helpers.h U xenocara/lib/mesa/src/gallium/frontends/dri/dri_query_renderer.c U xenocara/lib/mesa/src/gallium/frontends/dri/dri_query_renderer.h U xenocara/lib/mesa/src/gallium/frontends/dri/dri_screen.c U xenocara/lib/mesa/src/gallium/frontends/dri/dri_screen.h U xenocara/lib/mesa/src/gallium/frontends/dri/dri_util.c U xenocara/lib/mesa/src/gallium/frontends/dri/dri_util.h U xenocara/lib/mesa/src/gallium/frontends/dri/drisw.c U xenocara/lib/mesa/src/gallium/frontends/dri/kopper.c U xenocara/lib/mesa/src/gallium/frontends/dri/meson.build U xenocara/lib/mesa/src/gallium/frontends/glx/xlib/glx_api.c U xenocara/lib/mesa/src/gallium/frontends/glx/xlib/glx_getproc.c U xenocara/lib/mesa/src/gallium/frontends/glx/xlib/glx_usefont.c U xenocara/lib/mesa/src/gallium/frontends/glx/xlib/meson.build U xenocara/lib/mesa/src/gallium/frontends/glx/xlib/xm_api.c U xenocara/lib/mesa/src/gallium/frontends/glx/xlib/xm_api.h U xenocara/lib/mesa/src/gallium/frontends/glx/xlib/xm_st.c U xenocara/lib/mesa/src/gallium/frontends/glx/xlib/xm_st.h U xenocara/lib/mesa/src/gallium/frontends/hgl/.editorconfig U xenocara/lib/mesa/src/gallium/frontends/hgl/bitmap_wrapper.cpp U xenocara/lib/mesa/src/gallium/frontends/hgl/bitmap_wrapper.h U xenocara/lib/mesa/src/gallium/frontends/hgl/hgl.c U xenocara/lib/mesa/src/gallium/frontends/hgl/hgl_context.h U xenocara/lib/mesa/src/gallium/frontends/hgl/meson.build U xenocara/lib/mesa/src/gallium/frontends/lavapipe/lvp_cmd_buffer.c U xenocara/lib/mesa/src/gallium/frontends/lavapipe/lvp_conv.h U xenocara/lib/mesa/src/gallium/frontends/lavapipe/lvp_descriptor_set.c U xenocara/lib/mesa/src/gallium/frontends/lavapipe/lvp_device.c U xenocara/lib/mesa/src/gallium/frontends/lavapipe/lvp_execute.c U xenocara/lib/mesa/src/gallium/frontends/lavapipe/lvp_formats.c U xenocara/lib/mesa/src/gallium/frontends/lavapipe/lvp_image.c U xenocara/lib/mesa/src/gallium/frontends/lavapipe/lvp_inline_uniforms.c U xenocara/lib/mesa/src/gallium/frontends/lavapipe/lvp_lower_input_attachments.c U xenocara/lib/mesa/src/gallium/frontends/lavapipe/lvp_lower_vulkan_resource.c U xenocara/lib/mesa/src/gallium/frontends/lavapipe/lvp_lower_vulkan_resource.h U xenocara/lib/mesa/src/gallium/frontends/lavapipe/lvp_pipe_sync.c U xenocara/lib/mesa/src/gallium/frontends/lavapipe/lvp_pipeline.c U xenocara/lib/mesa/src/gallium/frontends/lavapipe/lvp_pipeline_cache.c U xenocara/lib/mesa/src/gallium/frontends/lavapipe/lvp_private.h U xenocara/lib/mesa/src/gallium/frontends/lavapipe/lvp_query.c U xenocara/lib/mesa/src/gallium/frontends/lavapipe/lvp_util.c U xenocara/lib/mesa/src/gallium/frontends/lavapipe/lvp_wsi.c U xenocara/lib/mesa/src/gallium/frontends/lavapipe/lvp_wsi.h U xenocara/lib/mesa/src/gallium/frontends/lavapipe/meson.build U xenocara/lib/mesa/src/gallium/frontends/lavapipe/ci/deqp-lvp.toml U xenocara/lib/mesa/src/gallium/frontends/lavapipe/ci/gitlab-ci.yml U xenocara/lib/mesa/src/gallium/frontends/lavapipe/ci/lvp-asan-fails.txt U xenocara/lib/mesa/src/gallium/frontends/lavapipe/ci/lvp-asan-skips.txt U xenocara/lib/mesa/src/gallium/frontends/lavapipe/ci/lvp-fails.txt U xenocara/lib/mesa/src/gallium/frontends/lavapipe/ci/lvp-flakes.txt U xenocara/lib/mesa/src/gallium/frontends/lavapipe/ci/lvp-skips.txt U xenocara/lib/mesa/src/gallium/frontends/lavapipe/ci/traces-lavapipe.yml U xenocara/lib/mesa/src/gallium/frontends/nine/.editorconfig U xenocara/lib/mesa/src/gallium/frontends/nine/adapter9.c U xenocara/lib/mesa/src/gallium/frontends/nine/adapter9.h U xenocara/lib/mesa/src/gallium/frontends/nine/authenticatedchannel9.c U xenocara/lib/mesa/src/gallium/frontends/nine/authenticatedchannel9.h U xenocara/lib/mesa/src/gallium/frontends/nine/basetexture9.c U xenocara/lib/mesa/src/gallium/frontends/nine/basetexture9.h U xenocara/lib/mesa/src/gallium/frontends/nine/buffer9.c U xenocara/lib/mesa/src/gallium/frontends/nine/buffer9.h U xenocara/lib/mesa/src/gallium/frontends/nine/cryptosession9.c U xenocara/lib/mesa/src/gallium/frontends/nine/cryptosession9.h U xenocara/lib/mesa/src/gallium/frontends/nine/cubetexture9.c U xenocara/lib/mesa/src/gallium/frontends/nine/cubetexture9.h U xenocara/lib/mesa/src/gallium/frontends/nine/device9.c U xenocara/lib/mesa/src/gallium/frontends/nine/device9.h U xenocara/lib/mesa/src/gallium/frontends/nine/device9ex.c U xenocara/lib/mesa/src/gallium/frontends/nine/device9ex.h U xenocara/lib/mesa/src/gallium/frontends/nine/device9video.c U xenocara/lib/mesa/src/gallium/frontends/nine/device9video.h U xenocara/lib/mesa/src/gallium/frontends/nine/guid.c U xenocara/lib/mesa/src/gallium/frontends/nine/guid.h U xenocara/lib/mesa/src/gallium/frontends/nine/indexbuffer9.c U xenocara/lib/mesa/src/gallium/frontends/nine/indexbuffer9.h U xenocara/lib/mesa/src/gallium/frontends/nine/iunknown.c U xenocara/lib/mesa/src/gallium/frontends/nine/iunknown.h U xenocara/lib/mesa/src/gallium/frontends/nine/meson.build U xenocara/lib/mesa/src/gallium/frontends/nine/nine_buffer_upload.c U xenocara/lib/mesa/src/gallium/frontends/nine/nine_buffer_upload.h U xenocara/lib/mesa/src/gallium/frontends/nine/nine_csmt_helper.h U xenocara/lib/mesa/src/gallium/frontends/nine/nine_debug.c U xenocara/lib/mesa/src/gallium/frontends/nine/nine_debug.h U xenocara/lib/mesa/src/gallium/frontends/nine/nine_defines.h U xenocara/lib/mesa/src/gallium/frontends/nine/nine_dump.c U xenocara/lib/mesa/src/gallium/frontends/nine/nine_dump.h U xenocara/lib/mesa/src/gallium/frontends/nine/nine_ff.c U xenocara/lib/mesa/src/gallium/frontends/nine/nine_ff.h U xenocara/lib/mesa/src/gallium/frontends/nine/nine_flags.h U xenocara/lib/mesa/src/gallium/frontends/nine/nine_helpers.c U xenocara/lib/mesa/src/gallium/frontends/nine/nine_helpers.h U xenocara/lib/mesa/src/gallium/frontends/nine/nine_limits.h U xenocara/lib/mesa/src/gallium/frontends/nine/nine_lock.c U xenocara/lib/mesa/src/gallium/frontends/nine/nine_lock.h U xenocara/lib/mesa/src/gallium/frontends/nine/nine_pdata.h U xenocara/lib/mesa/src/gallium/frontends/nine/nine_memory_helper.c U xenocara/lib/mesa/src/gallium/frontends/nine/nine_memory_helper.h U xenocara/lib/mesa/src/gallium/frontends/nine/nine_pipe.c U xenocara/lib/mesa/src/gallium/frontends/nine/nine_pipe.h U xenocara/lib/mesa/src/gallium/frontends/nine/nine_queue.c U xenocara/lib/mesa/src/gallium/frontends/nine/nine_queue.h U xenocara/lib/mesa/src/gallium/frontends/nine/nine_quirk.c U xenocara/lib/mesa/src/gallium/frontends/nine/nine_quirk.h U xenocara/lib/mesa/src/gallium/frontends/nine/nine_shader.c U xenocara/lib/mesa/src/gallium/frontends/nine/nine_shader.h U xenocara/lib/mesa/src/gallium/frontends/nine/nine_state.c U xenocara/lib/mesa/src/gallium/frontends/nine/nine_state.h U xenocara/lib/mesa/src/gallium/frontends/nine/nineexoverlayextension.c U xenocara/lib/mesa/src/gallium/frontends/nine/nineexoverlayextension.h U xenocara/lib/mesa/src/gallium/frontends/nine/pixelshader9.c U xenocara/lib/mesa/src/gallium/frontends/nine/pixelshader9.h U xenocara/lib/mesa/src/gallium/frontends/nine/query9.c U xenocara/lib/mesa/src/gallium/frontends/nine/query9.h U xenocara/lib/mesa/src/gallium/frontends/nine/resource9.c U xenocara/lib/mesa/src/gallium/frontends/nine/resource9.h U xenocara/lib/mesa/src/gallium/frontends/nine/stateblock9.c U xenocara/lib/mesa/src/gallium/frontends/nine/stateblock9.h U xenocara/lib/mesa/src/gallium/frontends/nine/surface9.c U xenocara/lib/mesa/src/gallium/frontends/nine/surface9.h U xenocara/lib/mesa/src/gallium/frontends/nine/swapchain9.c U xenocara/lib/mesa/src/gallium/frontends/nine/swapchain9.h U xenocara/lib/mesa/src/gallium/frontends/nine/swapchain9ex.c U xenocara/lib/mesa/src/gallium/frontends/nine/swapchain9ex.h U xenocara/lib/mesa/src/gallium/frontends/nine/texture9.c U xenocara/lib/mesa/src/gallium/frontends/nine/texture9.h U xenocara/lib/mesa/src/gallium/frontends/nine/threadpool.c U xenocara/lib/mesa/src/gallium/frontends/nine/threadpool.h U xenocara/lib/mesa/src/gallium/frontends/nine/vertexbuffer9.c U xenocara/lib/mesa/src/gallium/frontends/nine/vertexbuffer9.h U xenocara/lib/mesa/src/gallium/frontends/nine/vertexdeclaration9.c U xenocara/lib/mesa/src/gallium/frontends/nine/vertexdeclaration9.h U xenocara/lib/mesa/src/gallium/frontends/nine/vertexshader9.c U xenocara/lib/mesa/src/gallium/frontends/nine/vertexshader9.h U xenocara/lib/mesa/src/gallium/frontends/nine/volume9.c U xenocara/lib/mesa/src/gallium/frontends/nine/volume9.h U xenocara/lib/mesa/src/gallium/frontends/nine/volumetexture9.c U xenocara/lib/mesa/src/gallium/frontends/nine/volumetexture9.h U xenocara/lib/mesa/src/gallium/frontends/omx/meson.build U xenocara/lib/mesa/src/gallium/frontends/omx/vid_dec_common.c U xenocara/lib/mesa/src/gallium/frontends/omx/vid_dec_common.h U xenocara/lib/mesa/src/gallium/frontends/omx/vid_dec_h264_common.c U xenocara/lib/mesa/src/gallium/frontends/omx/vid_dec_h264_common.h U xenocara/lib/mesa/src/gallium/frontends/omx/vid_enc_common.c U xenocara/lib/mesa/src/gallium/frontends/omx/vid_enc_common.h U xenocara/lib/mesa/src/gallium/frontends/omx/vid_omx_common.c U xenocara/lib/mesa/src/gallium/frontends/omx/vid_omx_common.h U xenocara/lib/mesa/src/gallium/frontends/omx/bellagio/entrypoint.c U xenocara/lib/mesa/src/gallium/frontends/omx/bellagio/entrypoint.h U xenocara/lib/mesa/src/gallium/frontends/omx/bellagio/vid_dec.c U xenocara/lib/mesa/src/gallium/frontends/omx/bellagio/vid_dec.h U xenocara/lib/mesa/src/gallium/frontends/omx/bellagio/vid_dec_av1.c U xenocara/lib/mesa/src/gallium/frontends/omx/bellagio/vid_dec_av1.h U xenocara/lib/mesa/src/gallium/frontends/omx/bellagio/vid_dec_h264.c U xenocara/lib/mesa/src/gallium/frontends/omx/bellagio/vid_dec_h265.c U xenocara/lib/mesa/src/gallium/frontends/omx/bellagio/vid_dec_mpeg12.c U xenocara/lib/mesa/src/gallium/frontends/omx/bellagio/vid_enc.c U xenocara/lib/mesa/src/gallium/frontends/omx/bellagio/vid_enc.h U xenocara/lib/mesa/src/gallium/frontends/omx/tizonia/entrypoint.c U xenocara/lib/mesa/src/gallium/frontends/omx/tizonia/entrypoint.h U xenocara/lib/mesa/src/gallium/frontends/omx/tizonia/h264d.c U xenocara/lib/mesa/src/gallium/frontends/omx/tizonia/h264d.h U xenocara/lib/mesa/src/gallium/frontends/omx/tizonia/h264dinport.c U xenocara/lib/mesa/src/gallium/frontends/omx/tizonia/h264dinport.h U xenocara/lib/mesa/src/gallium/frontends/omx/tizonia/h264dinport_decls.h U xenocara/lib/mesa/src/gallium/frontends/omx/tizonia/h264dprc.c U xenocara/lib/mesa/src/gallium/frontends/omx/tizonia/h264dprc.h U xenocara/lib/mesa/src/gallium/frontends/omx/tizonia/h264e.c U xenocara/lib/mesa/src/gallium/frontends/omx/tizonia/h264e.h U xenocara/lib/mesa/src/gallium/frontends/omx/tizonia/h264einport.c U xenocara/lib/mesa/src/gallium/frontends/omx/tizonia/h264einport.h U xenocara/lib/mesa/src/gallium/frontends/omx/tizonia/h264einport_decls.h U xenocara/lib/mesa/src/gallium/frontends/omx/tizonia/h264eoutport.c U xenocara/lib/mesa/src/gallium/frontends/omx/tizonia/h264eoutport.h U xenocara/lib/mesa/src/gallium/frontends/omx/tizonia/h264eoutport_decls.h U xenocara/lib/mesa/src/gallium/frontends/omx/tizonia/h264eprc.c U xenocara/lib/mesa/src/gallium/frontends/omx/tizonia/h264eprc.h U xenocara/lib/mesa/src/gallium/frontends/omx/tizonia/names.h U xenocara/lib/mesa/src/gallium/frontends/osmesa/meson.build U xenocara/lib/mesa/src/gallium/frontends/osmesa/osmesa.c U xenocara/lib/mesa/src/gallium/frontends/rusticl/api.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/core.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/lib.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/meson.build U xenocara/lib/mesa/src/gallium/frontends/rusticl/rusticl_mesa_bindings.h U xenocara/lib/mesa/src/gallium/frontends/rusticl/rusticl_mesa_inline_bindings_wrapper.c U xenocara/lib/mesa/src/gallium/frontends/rusticl/rusticl_mesa_inline_bindings_wrapper.h U xenocara/lib/mesa/src/gallium/frontends/rusticl/rusticl_nir.c U xenocara/lib/mesa/src/gallium/frontends/rusticl/rusticl_nir.h U xenocara/lib/mesa/src/gallium/frontends/rusticl/rusticl_opencl_bindings.h U xenocara/lib/mesa/src/gallium/frontends/rusticl/rusticl_system_bindings.c U xenocara/lib/mesa/src/gallium/frontends/rusticl/rusticl_system_bindings.h U xenocara/lib/mesa/src/gallium/frontends/rusticl/api/context.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/api/device.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/api/event.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/api/icd.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/api/kernel.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/api/memory.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/api/platform.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/api/program.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/api/queue.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/api/types.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/api/util.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/core/context.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/core/device.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/core/event.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/core/format.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/core/kernel.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/core/memory.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/core/program.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/core/queue.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/core/util.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/core/version.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/mesa/compiler.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/mesa/lib.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/mesa/pipe.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/mesa/util.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/mesa/compiler/clc.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/mesa/compiler/nir.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/mesa/compiler/clc/spirv.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/mesa/pipe/context.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/mesa/pipe/device.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/mesa/pipe/fence.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/mesa/pipe/resource.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/mesa/pipe/screen.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/mesa/pipe/transfer.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/mesa/util/disk_cache.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/util/assert.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/util/bitset.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/util/lib.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/util/math.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/util/properties.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/util/ptr.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/util/serialize.rs U xenocara/lib/mesa/src/gallium/frontends/rusticl/util/string.rs U xenocara/lib/mesa/src/gallium/frontends/va/buffer.c U xenocara/lib/mesa/src/gallium/frontends/va/config.c U xenocara/lib/mesa/src/gallium/frontends/va/context.c U xenocara/lib/mesa/src/gallium/frontends/va/display.c U xenocara/lib/mesa/src/gallium/frontends/va/image.c U xenocara/lib/mesa/src/gallium/frontends/va/meson.build U xenocara/lib/mesa/src/gallium/frontends/va/picture.c U xenocara/lib/mesa/src/gallium/frontends/va/picture_av1.c U xenocara/lib/mesa/src/gallium/frontends/va/picture_h264.c U xenocara/lib/mesa/src/gallium/frontends/va/picture_h264_enc.c U xenocara/lib/mesa/src/gallium/frontends/va/picture_hevc.c U xenocara/lib/mesa/src/gallium/frontends/va/picture_hevc_enc.c U xenocara/lib/mesa/src/gallium/frontends/va/picture_mjpeg.c U xenocara/lib/mesa/src/gallium/frontends/va/picture_mpeg12.c U xenocara/lib/mesa/src/gallium/frontends/va/picture_mpeg4.c U xenocara/lib/mesa/src/gallium/frontends/va/picture_vc1.c U xenocara/lib/mesa/src/gallium/frontends/va/picture_vp9.c U xenocara/lib/mesa/src/gallium/frontends/va/postproc.c U xenocara/lib/mesa/src/gallium/frontends/va/subpicture.c U xenocara/lib/mesa/src/gallium/frontends/va/surface.c U xenocara/lib/mesa/src/gallium/frontends/va/va_private.h U xenocara/lib/mesa/src/gallium/frontends/vdpau/bitmap.c U xenocara/lib/mesa/src/gallium/frontends/vdpau/decode.c U xenocara/lib/mesa/src/gallium/frontends/vdpau/device.c U xenocara/lib/mesa/src/gallium/frontends/vdpau/ftab.c U xenocara/lib/mesa/src/gallium/frontends/vdpau/htab.c U xenocara/lib/mesa/src/gallium/frontends/vdpau/meson.build U xenocara/lib/mesa/src/gallium/frontends/vdpau/mixer.c U xenocara/lib/mesa/src/gallium/frontends/vdpau/output.c U xenocara/lib/mesa/src/gallium/frontends/vdpau/preemption.c U xenocara/lib/mesa/src/gallium/frontends/vdpau/presentation.c U xenocara/lib/mesa/src/gallium/frontends/vdpau/query.c U xenocara/lib/mesa/src/gallium/frontends/vdpau/surface.c U xenocara/lib/mesa/src/gallium/frontends/vdpau/vdpau_private.h U xenocara/lib/mesa/src/gallium/frontends/wgl/gldrv.h U xenocara/lib/mesa/src/gallium/frontends/wgl/meson.build U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_context.c U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_context.h U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_device.c U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_device.h U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_ext_context.c U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_ext_context.h U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_ext_extensionsstring.c U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_ext_interop.c U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_ext_interop.h U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_ext_pbuffer.c U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_ext_pixelformat.c U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_ext_rendertexture.c U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_ext_swapinterval.c U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_framebuffer.c U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_framebuffer.h U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_image.c U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_getprocaddress.c U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_image.h U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_nopfuncs.c U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_nopfuncs.h U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_pixelformat.c U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_pixelformat.h U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_st.c U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_st.h U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_tls.c U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_tls.h U xenocara/lib/mesa/src/gallium/frontends/wgl/stw_winsys.h U xenocara/lib/mesa/src/gallium/frontends/xa/.editorconfig U xenocara/lib/mesa/src/gallium/frontends/xa/README U xenocara/lib/mesa/src/gallium/frontends/xa/meson.build U xenocara/lib/mesa/src/gallium/frontends/xa/xa-indent.sh U xenocara/lib/mesa/src/gallium/frontends/xa/xa_composite.c U xenocara/lib/mesa/src/gallium/frontends/xa/xa_composite.h U xenocara/lib/mesa/src/gallium/frontends/xa/xa_context.c U xenocara/lib/mesa/src/gallium/frontends/xa/xa_context.h U xenocara/lib/mesa/src/gallium/frontends/xa/xa_priv.h U xenocara/lib/mesa/src/gallium/frontends/xa/xa_renderer.c U xenocara/lib/mesa/src/gallium/frontends/xa/xa_tgsi.c U xenocara/lib/mesa/src/gallium/frontends/xa/xa_tracker.c U xenocara/lib/mesa/src/gallium/frontends/xa/xa_tracker.h.in U xenocara/lib/mesa/src/gallium/frontends/xa/xa_yuv.c U xenocara/lib/mesa/src/gallium/include/frontend/api.h U xenocara/lib/mesa/src/gallium/include/frontend/drisw_api.h U xenocara/lib/mesa/src/gallium/include/frontend/drm_driver.h U xenocara/lib/mesa/src/gallium/include/frontend/opencl_interop.h U xenocara/lib/mesa/src/gallium/include/frontend/sw_driver.h U xenocara/lib/mesa/src/gallium/include/frontend/sw_winsys.h U xenocara/lib/mesa/src/gallium/include/frontend/vdpau_dmabuf.h U xenocara/lib/mesa/src/gallium/include/frontend/vdpau_funcs.h U xenocara/lib/mesa/src/gallium/include/frontend/vdpau_interop.h U xenocara/lib/mesa/src/gallium/include/frontend/winsys_handle.h U xenocara/lib/mesa/src/gallium/include/frontend/xlibsw_api.h U xenocara/lib/mesa/src/gallium/include/pipe/p_compiler.h U xenocara/lib/mesa/src/gallium/include/pipe/p_config.h U xenocara/lib/mesa/src/gallium/include/pipe/p_context.h U xenocara/lib/mesa/src/gallium/include/pipe/p_defines.h U xenocara/lib/mesa/src/gallium/include/pipe/p_format.h U xenocara/lib/mesa/src/gallium/include/pipe/p_screen.h U xenocara/lib/mesa/src/gallium/include/pipe/p_shader_tokens.h U xenocara/lib/mesa/src/gallium/include/pipe/p_state.h U xenocara/lib/mesa/src/gallium/include/pipe/p_video_codec.h U xenocara/lib/mesa/src/gallium/include/pipe/p_video_enums.h C xenocara/lib/mesa/src/gallium/include/pipe/p_video_state.h U xenocara/lib/mesa/src/gallium/include/winsys/radeon_winsys.h U xenocara/lib/mesa/src/gallium/targets/dri-vdpau.dyn U xenocara/lib/mesa/src/gallium/targets/d3d10sw/README.md U xenocara/lib/mesa/src/gallium/targets/d3d10sw/d3d10_gdi.c U xenocara/lib/mesa/src/gallium/targets/d3d10sw/d3d10_sw.def.in U xenocara/lib/mesa/src/gallium/targets/d3d10sw/meson.build U xenocara/lib/mesa/src/gallium/targets/d3d10sw/tests/tri.cpp U xenocara/lib/mesa/src/gallium/targets/d3d10sw/tests/tri_ps_4_0.h U xenocara/lib/mesa/src/gallium/targets/d3d10sw/tests/tri_vs_4_0.h U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/.editorconfig U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/d3dadapter9.sym U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/description.c U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/drm.c U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/getproc.c U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/meson.build U xenocara/lib/mesa/src/gallium/targets/dri/dri.sym U xenocara/lib/mesa/src/gallium/targets/dri/meson.build U xenocara/lib/mesa/src/gallium/targets/dri/target.c U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/.editorconfig U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/GalliumContext.cpp U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/GalliumContext.h U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.cpp U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.h U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.rdef U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/meson.build U xenocara/lib/mesa/src/gallium/targets/lavapipe/meson.build U xenocara/lib/mesa/src/gallium/targets/lavapipe/target.c U xenocara/lib/mesa/src/gallium/targets/libgl-gdi/meson.build U xenocara/lib/mesa/src/gallium/targets/libgl-gdi/opengl32.def.in U xenocara/lib/mesa/src/gallium/targets/libgl-gdi/stw_wgl.c U xenocara/lib/mesa/src/gallium/targets/libgl-gdi/stw_wgl.h U xenocara/lib/mesa/src/gallium/targets/libgl-gdi/tests/wgl_tests.cpp U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/libgl-xlib.sym U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/meson.build U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/xlib.c U xenocara/lib/mesa/src/gallium/targets/omx/meson.build U xenocara/lib/mesa/src/gallium/targets/omx/omx.sym U xenocara/lib/mesa/src/gallium/targets/omx/target.c U xenocara/lib/mesa/src/gallium/targets/opencl/MesaOpenCL.def.in U xenocara/lib/mesa/src/gallium/targets/opencl/OpenCL.def.in U xenocara/lib/mesa/src/gallium/targets/opencl/mesa.icd.in U xenocara/lib/mesa/src/gallium/targets/opencl/meson.build U xenocara/lib/mesa/src/gallium/targets/opencl/opencl.sym U xenocara/lib/mesa/src/gallium/targets/osmesa/meson.build U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.def.in U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.sym U xenocara/lib/mesa/src/gallium/targets/osmesa/target.c U xenocara/lib/mesa/src/gallium/targets/osmesa/test-render.cpp U xenocara/lib/mesa/src/gallium/targets/pipe-loader/meson.build U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe.sym U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_crocus.c U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_i915.c U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_iris.c U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_kmsro.c U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_msm.c U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_nouveau.c U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_r300.c U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_r600.c U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_radeonsi.c U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_swrast.c U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_vmwgfx.c U xenocara/lib/mesa/src/gallium/targets/rusticl/meson.build U xenocara/lib/mesa/src/gallium/targets/rusticl/rusticl.icd.in U xenocara/lib/mesa/src/gallium/targets/rusticl/target.c U xenocara/lib/mesa/src/gallium/targets/va/meson.build U xenocara/lib/mesa/src/gallium/targets/va/target.c U xenocara/lib/mesa/src/gallium/targets/va/va.sym U xenocara/lib/mesa/src/gallium/targets/va/vaon12.def.in U xenocara/lib/mesa/src/gallium/targets/vdpau/meson.build U xenocara/lib/mesa/src/gallium/targets/vdpau/target.c U xenocara/lib/mesa/src/gallium/targets/vdpau/vdpau.sym U xenocara/lib/mesa/src/gallium/targets/wgl/gallium_wgl.def.in U xenocara/lib/mesa/src/gallium/targets/wgl/meson.build U xenocara/lib/mesa/src/gallium/targets/wgl/wgl.c U xenocara/lib/mesa/src/gallium/targets/xa/meson.build U xenocara/lib/mesa/src/gallium/targets/xa/target.c U xenocara/lib/mesa/src/gallium/targets/xa/xa.sym U xenocara/lib/mesa/src/gallium/tests/meson.build U xenocara/lib/mesa/src/gallium/tests/python/tests/regress/fragment-shader/frag-cmp.sh U xenocara/lib/mesa/src/gallium/tests/trivial/compute.c U xenocara/lib/mesa/src/gallium/tests/trivial/meson.build U xenocara/lib/mesa/src/gallium/tests/trivial/quad-tex.c U xenocara/lib/mesa/src/gallium/tests/trivial/tri.c U xenocara/lib/mesa/src/gallium/tests/unit/meson.build U xenocara/lib/mesa/src/gallium/tests/unit/pipe_barrier_test.c U xenocara/lib/mesa/src/gallium/tests/unit/translate_test.c U xenocara/lib/mesa/src/gallium/tests/unit/u_cache_test.c U xenocara/lib/mesa/src/gallium/tests/unit/u_half_test.c U xenocara/lib/mesa/src/gallium/tests/unit/u_prim_verts_test.c U xenocara/lib/mesa/src/gallium/tools/addr2line.sh U xenocara/lib/mesa/src/gallium/tools/trace/README.txt U xenocara/lib/mesa/src/gallium/tools/trace/TODO.txt U xenocara/lib/mesa/src/gallium/tools/trace/diff_state.py U xenocara/lib/mesa/src/gallium/tools/trace/dump.py U xenocara/lib/mesa/src/gallium/tools/trace/dump_state.py U xenocara/lib/mesa/src/gallium/tools/trace/format.py U xenocara/lib/mesa/src/gallium/tools/trace/model.py U xenocara/lib/mesa/src/gallium/tools/trace/parse.py U xenocara/lib/mesa/src/gallium/tools/trace/pytracediff.py U xenocara/lib/mesa/src/gallium/tools/trace/tracediff.sh U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_bo.c U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_bo.h U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_cs.h U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_surface.c U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.c U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.h U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/meson.build U xenocara/lib/mesa/src/gallium/winsys/asahi/drm/asahi_drm_public.h U xenocara/lib/mesa/src/gallium/winsys/asahi/drm/asahi_drm_winsys.c U xenocara/lib/mesa/src/gallium/winsys/asahi/drm/meson.build U xenocara/lib/mesa/src/gallium/winsys/crocus/drm/crocus_drm_public.h U xenocara/lib/mesa/src/gallium/winsys/crocus/drm/crocus_drm_winsys.c U xenocara/lib/mesa/src/gallium/winsys/crocus/drm/meson.build U xenocara/lib/mesa/src/gallium/winsys/d3d12/wgl/d3d12_wgl_framebuffer.cpp U xenocara/lib/mesa/src/gallium/winsys/d3d12/wgl/d3d12_wgl_public.h U xenocara/lib/mesa/src/gallium/winsys/d3d12/wgl/d3d12_wgl_winsys.c U xenocara/lib/mesa/src/gallium/winsys/d3d12/wgl/meson.build U xenocara/lib/mesa/src/gallium/winsys/etnaviv/drm/etnaviv_drm_public.h U xenocara/lib/mesa/src/gallium/winsys/etnaviv/drm/etnaviv_drm_winsys.c U xenocara/lib/mesa/src/gallium/winsys/etnaviv/drm/meson.build U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/.editorconfig U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/freedreno_drm_public.h U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/freedreno_drm_winsys.c U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/meson.build U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_batchbuffer.c U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_buffer.c U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_fence.c U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_public.h U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_winsys.c U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_winsys.h U xenocara/lib/mesa/src/gallium/winsys/i915/drm/meson.build U xenocara/lib/mesa/src/gallium/winsys/iris/drm/iris_drm_public.h U xenocara/lib/mesa/src/gallium/winsys/iris/drm/iris_drm_winsys.c U xenocara/lib/mesa/src/gallium/winsys/iris/drm/meson.build U xenocara/lib/mesa/src/gallium/winsys/kmsro/drm/kmsro_drm_public.h U xenocara/lib/mesa/src/gallium/winsys/kmsro/drm/kmsro_drm_winsys.c U xenocara/lib/mesa/src/gallium/winsys/kmsro/drm/meson.build U xenocara/lib/mesa/src/gallium/winsys/lima/drm/lima_drm_public.h U xenocara/lib/mesa/src/gallium/winsys/lima/drm/lima_drm_winsys.c U xenocara/lib/mesa/src/gallium/winsys/lima/drm/meson.build U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/.editorconfig U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/meson.build U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/nouveau_drm_public.h U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/nouveau_drm_winsys.c U xenocara/lib/mesa/src/gallium/winsys/panfrost/drm/meson.build U xenocara/lib/mesa/src/gallium/winsys/panfrost/drm/panfrost_drm_public.h U xenocara/lib/mesa/src/gallium/winsys/panfrost/drm/panfrost_drm_winsys.c U xenocara/lib/mesa/src/gallium/winsys/radeon/.dir-locals.el U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/meson.build U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_bo.c U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_bo.h U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_cs.c U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_cs.h U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_surface.c U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_winsys.c U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_winsys.h U xenocara/lib/mesa/src/gallium/winsys/svga/drm/meson.build U xenocara/lib/mesa/src/gallium/winsys/svga/drm/pb_buffer_simple_fenced.c U xenocara/lib/mesa/src/gallium/winsys/svga/drm/svga_drm_public.h U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_buffer.c U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_buffer.h U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_context.c U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_context.h U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_fence.c U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_fence.h U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_msg.c U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_msg.h U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_query.c U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_query.h U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen.c U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen.h U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_dri.c U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_ioctl.c U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_pools.c U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_svga.c U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_shader.c U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_shader.h U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_surface.c U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_surface.h U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmwgfx_drm.h U xenocara/lib/mesa/src/gallium/winsys/sw/dri/dri_sw_winsys.c U xenocara/lib/mesa/src/gallium/winsys/sw/dri/dri_sw_winsys.h U xenocara/lib/mesa/src/gallium/winsys/sw/dri/meson.build U xenocara/lib/mesa/src/gallium/winsys/sw/gdi/gdi_sw_winsys.c U xenocara/lib/mesa/src/gallium/winsys/sw/gdi/gdi_sw_winsys.h U xenocara/lib/mesa/src/gallium/winsys/sw/gdi/meson.build U xenocara/lib/mesa/src/gallium/winsys/sw/hgl/.editorconfig U xenocara/lib/mesa/src/gallium/winsys/sw/hgl/hgl_sw_winsys.cpp U xenocara/lib/mesa/src/gallium/winsys/sw/hgl/hgl_sw_winsys.h U xenocara/lib/mesa/src/gallium/winsys/sw/hgl/meson.build U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/kms_dri_sw_winsys.c U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/kms_dri_sw_winsys.h U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/meson.build U xenocara/lib/mesa/src/gallium/winsys/sw/null/meson.build U xenocara/lib/mesa/src/gallium/winsys/sw/null/null_sw_winsys.c U xenocara/lib/mesa/src/gallium/winsys/sw/null/null_sw_winsys.h U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/meson.build U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/wrapper_sw_winsys.c U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/wrapper_sw_winsys.h U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/meson.build U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/xlib_sw_winsys.c U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/xlib_sw_winsys.h U xenocara/lib/mesa/src/gallium/winsys/tegra/drm/meson.build U xenocara/lib/mesa/src/gallium/winsys/tegra/drm/tegra_drm_public.h U xenocara/lib/mesa/src/gallium/winsys/tegra/drm/tegra_drm_winsys.c U xenocara/lib/mesa/src/gallium/winsys/v3d/drm/meson.build U xenocara/lib/mesa/src/gallium/winsys/v3d/drm/v3d_drm_public.h U xenocara/lib/mesa/src/gallium/winsys/v3d/drm/v3d_drm_winsys.c U xenocara/lib/mesa/src/gallium/winsys/vc4/drm/meson.build U xenocara/lib/mesa/src/gallium/winsys/vc4/drm/vc4_drm_public.h U xenocara/lib/mesa/src/gallium/winsys/vc4/drm/vc4_drm_winsys.c U xenocara/lib/mesa/src/gallium/winsys/virgl/common/meson.build U xenocara/lib/mesa/src/gallium/winsys/virgl/common/virgl_resource_cache.c U xenocara/lib/mesa/src/gallium/winsys/virgl/common/virgl_resource_cache.h U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/meson.build U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/virgl_drm_public.h U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/virgl_drm_winsys.c U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/virgl_drm_winsys.h U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/meson.build U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/virgl_vtest_public.h U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/virgl_vtest_socket.c U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/virgl_vtest_winsys.c U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/virgl_vtest_winsys.h U xenocara/lib/mesa/src/gbm/gbm-symbols.txt U xenocara/lib/mesa/src/gbm/meson.build U xenocara/lib/mesa/src/gbm/backends/dri/gbm_dri.c U xenocara/lib/mesa/src/gbm/backends/dri/gbm_driint.h U xenocara/lib/mesa/src/gbm/main/backend.c U xenocara/lib/mesa/src/gbm/main/backend.h U xenocara/lib/mesa/src/gbm/main/gbm.c U xenocara/lib/mesa/src/gbm/main/gbm.h U xenocara/lib/mesa/src/gbm/main/gbm_abi_check.c U xenocara/lib/mesa/src/gbm/main/gbm_backend_abi.h U xenocara/lib/mesa/src/gbm/main/gbmint.h U xenocara/lib/mesa/src/getopt/.editorconfig U xenocara/lib/mesa/src/getopt/getopt.h U xenocara/lib/mesa/src/getopt/getopt_long.c U xenocara/lib/mesa/src/getopt/meson.build U xenocara/lib/mesa/src/glx/applegl_glx.c U xenocara/lib/mesa/src/glx/clientattrib.c U xenocara/lib/mesa/src/glx/clientinfo.c U xenocara/lib/mesa/src/glx/compsize.c U xenocara/lib/mesa/src/glx/create_context.c U xenocara/lib/mesa/src/glx/dri2.c U xenocara/lib/mesa/src/glx/dri2.h U xenocara/lib/mesa/src/glx/dri2_glx.c U xenocara/lib/mesa/src/glx/dri2_priv.h U xenocara/lib/mesa/src/glx/dri3_glx.c U xenocara/lib/mesa/src/glx/dri3_priv.h U xenocara/lib/mesa/src/glx/dri_common.c U xenocara/lib/mesa/src/glx/dri_common.h U xenocara/lib/mesa/src/glx/dri_common_interop.c U xenocara/lib/mesa/src/glx/dri_common_query_renderer.c U xenocara/lib/mesa/src/glx/drisw_glx.c U xenocara/lib/mesa/src/glx/drisw_priv.h U xenocara/lib/mesa/src/glx/driwindows_glx.c U xenocara/lib/mesa/src/glx/eval.c U xenocara/lib/mesa/src/glx/g_glxglvnddispatchfuncs.c U xenocara/lib/mesa/src/glx/g_glxglvnddispatchindices.h U xenocara/lib/mesa/src/glx/glx_error.c U xenocara/lib/mesa/src/glx/glx_error.h U xenocara/lib/mesa/src/glx/glx_pbuffer.c U xenocara/lib/mesa/src/glx/glx_query.c U xenocara/lib/mesa/src/glx/glxclient.h U xenocara/lib/mesa/src/glx/glxcmds.c U xenocara/lib/mesa/src/glx/glxconfig.c U xenocara/lib/mesa/src/glx/glxconfig.h U xenocara/lib/mesa/src/glx/glxcurrent.c U xenocara/lib/mesa/src/glx/glxext.c U xenocara/lib/mesa/src/glx/glxextensions.c U xenocara/lib/mesa/src/glx/glxextensions.h U xenocara/lib/mesa/src/glx/glxglvnd.c U xenocara/lib/mesa/src/glx/glxglvnd.h U xenocara/lib/mesa/src/glx/glxglvnddispatchfuncs.h U xenocara/lib/mesa/src/glx/glxhash.c U xenocara/lib/mesa/src/glx/glxhash.h U xenocara/lib/mesa/src/glx/indirect_glx.c U xenocara/lib/mesa/src/glx/indirect_init.h U xenocara/lib/mesa/src/glx/indirect_texture_compression.c U xenocara/lib/mesa/src/glx/meson.build U xenocara/lib/mesa/src/glx/indirect_transpose_matrix.c U xenocara/lib/mesa/src/glx/indirect_vertex_array.c U xenocara/lib/mesa/src/glx/indirect_vertex_array.h U xenocara/lib/mesa/src/glx/indirect_vertex_array_priv.h U xenocara/lib/mesa/src/glx/indirect_vertex_program.c U xenocara/lib/mesa/src/glx/indirect_window_pos.c U xenocara/lib/mesa/src/glx/packrender.h U xenocara/lib/mesa/src/glx/packsingle.h U xenocara/lib/mesa/src/glx/pixel.c U xenocara/lib/mesa/src/glx/pixelstore.c U xenocara/lib/mesa/src/glx/query_renderer.c U xenocara/lib/mesa/src/glx/render2.c U xenocara/lib/mesa/src/glx/renderpix.c U xenocara/lib/mesa/src/glx/single2.c U xenocara/lib/mesa/src/glx/singlepix.c U xenocara/lib/mesa/src/glx/vertarr.c U xenocara/lib/mesa/src/glx/xfont.c U xenocara/lib/mesa/src/glx/apple/RELEASE_NOTES U xenocara/lib/mesa/src/glx/apple/TODO U xenocara/lib/mesa/src/glx/apple/apple_cgl.c U xenocara/lib/mesa/src/glx/apple/apple_cgl.h U xenocara/lib/mesa/src/glx/apple/apple_glapi.c U xenocara/lib/mesa/src/glx/apple/apple_glx.c U xenocara/lib/mesa/src/glx/apple/apple_glx.h U xenocara/lib/mesa/src/glx/apple/apple_glx_context.c U xenocara/lib/mesa/src/glx/apple/apple_glx_context.h U xenocara/lib/mesa/src/glx/apple/apple_glx_drawable.c U xenocara/lib/mesa/src/glx/apple/apple_glx_drawable.h U xenocara/lib/mesa/src/glx/apple/apple_glx_log.c U xenocara/lib/mesa/src/glx/apple/apple_glx_log.h U xenocara/lib/mesa/src/glx/apple/apple_glx_pbuffer.c U xenocara/lib/mesa/src/glx/apple/apple_glx_pixmap.c U xenocara/lib/mesa/src/glx/apple/apple_glx_surface.c U xenocara/lib/mesa/src/glx/apple/apple_visual.c U xenocara/lib/mesa/src/glx/apple/apple_visual.h U xenocara/lib/mesa/src/glx/apple/apple_xgl_api.h U xenocara/lib/mesa/src/glx/apple/appledri.c U xenocara/lib/mesa/src/glx/apple/apple_xgl_api_read.c U xenocara/lib/mesa/src/glx/apple/apple_xgl_api_stereo.c U xenocara/lib/mesa/src/glx/apple/apple_xgl_api_viewport.c U xenocara/lib/mesa/src/glx/apple/appledri.h U xenocara/lib/mesa/src/glx/apple/appledristr.h U xenocara/lib/mesa/src/glx/apple/glx_empty.c U xenocara/lib/mesa/src/glx/apple/meson.build U xenocara/lib/mesa/src/glx/tests/clientinfo_unittest.cpp U xenocara/lib/mesa/src/glx/tests/create_context_unittest.cpp U xenocara/lib/mesa/src/glx/tests/dispatch-index-check U xenocara/lib/mesa/src/glx/tests/enum_sizes.cpp U xenocara/lib/mesa/src/glx/tests/fake_glx_screen.cpp U xenocara/lib/mesa/src/glx/tests/fake_glx_screen.h U xenocara/lib/mesa/src/glx/tests/indirect_api.cpp U xenocara/lib/mesa/src/glx/tests/meson.build U xenocara/lib/mesa/src/glx/tests/mock_xdisplay.h U xenocara/lib/mesa/src/glx/tests/query_renderer_implementation_unittest.cpp U xenocara/lib/mesa/src/glx/tests/query_renderer_unittest.cpp U xenocara/lib/mesa/src/glx/windows/meson.build U xenocara/lib/mesa/src/glx/windows/wgl.c U xenocara/lib/mesa/src/glx/windows/wgl.h U xenocara/lib/mesa/src/glx/windows/windows_drawable.c U xenocara/lib/mesa/src/glx/windows/windowsdriconst.h U xenocara/lib/mesa/src/glx/windows/windowsdristr.h U xenocara/lib/mesa/src/glx/windows/windowsgl.c U xenocara/lib/mesa/src/glx/windows/windowsgl.h U xenocara/lib/mesa/src/glx/windows/windowsgl_internal.h U xenocara/lib/mesa/src/glx/windows/xwindowsdri.c U xenocara/lib/mesa/src/glx/windows/xwindowsdri.h U xenocara/lib/mesa/src/gtest/.editorconfig U xenocara/lib/mesa/src/gtest/meson.build U xenocara/lib/mesa/src/gtest/include/mesa-gtest-extras.h U xenocara/lib/mesa/src/gtest/include/gtest/gtest-death-test.h U xenocara/lib/mesa/src/gtest/include/gtest/gtest-matchers.h U xenocara/lib/mesa/src/gtest/include/gtest/gtest-message.h U xenocara/lib/mesa/src/gtest/include/gtest/gtest-param-test.h U xenocara/lib/mesa/src/gtest/include/gtest/gtest-printers.h U xenocara/lib/mesa/src/gtest/include/gtest/gtest-spi.h U xenocara/lib/mesa/src/gtest/include/gtest/gtest-test-part.h U xenocara/lib/mesa/src/gtest/include/gtest/gtest-typed-test.h U xenocara/lib/mesa/src/gtest/include/gtest/gtest.h U xenocara/lib/mesa/src/gtest/include/gtest/gtest_pred_impl.h U xenocara/lib/mesa/src/gtest/include/gtest/gtest_prod.h U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-death-test-internal.h U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-filepath.h U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-internal.h U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-param-util.h U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-port-arch.h U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-port.h U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-string.h U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-type-util.h U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-type-util.h.pump U xenocara/lib/mesa/src/gtest/include/gtest/internal/custom/README.md U xenocara/lib/mesa/src/gtest/include/gtest/internal/custom/gtest-port.h U xenocara/lib/mesa/src/gtest/include/gtest/internal/custom/gtest-printers.h U xenocara/lib/mesa/src/gtest/include/gtest/internal/custom/gtest.h U xenocara/lib/mesa/src/gtest/src/gtest-all.cc U xenocara/lib/mesa/src/gtest/src/gtest-death-test.cc U xenocara/lib/mesa/src/gtest/src/gtest-filepath.cc U xenocara/lib/mesa/src/gtest/src/gtest-internal-inl.h U xenocara/lib/mesa/src/gtest/src/gtest-matchers.cc U xenocara/lib/mesa/src/gtest/src/gtest-port.cc U xenocara/lib/mesa/src/gtest/src/gtest-printers.cc U xenocara/lib/mesa/src/gtest/src/gtest-test-part.cc U xenocara/lib/mesa/src/gtest/src/gtest-typed-test.cc U xenocara/lib/mesa/src/gtest/src/gtest.cc U xenocara/lib/mesa/src/gtest/src/gtest_main.cc U xenocara/lib/mesa/src/hgl/.editorconfig U xenocara/lib/mesa/src/hgl/GLRenderer.cpp U xenocara/lib/mesa/src/hgl/GLRendererRoster.cpp U xenocara/lib/mesa/src/hgl/GLRendererRoster.h U xenocara/lib/mesa/src/hgl/GLView.cpp U xenocara/lib/mesa/src/hgl/meson.build U xenocara/lib/mesa/src/imagination/.clang-format U xenocara/lib/mesa/src/imagination/.dir-locals.el U xenocara/lib/mesa/src/imagination/.editorconfig U xenocara/lib/mesa/src/imagination/meson.build U xenocara/lib/mesa/src/imagination/common/meson.build U xenocara/lib/mesa/src/imagination/common/pvr_debug.c U xenocara/lib/mesa/src/imagination/common/pvr_debug.h U xenocara/lib/mesa/src/imagination/common/pvr_device_info.c U xenocara/lib/mesa/src/imagination/common/pvr_device_info.h U xenocara/lib/mesa/src/imagination/csbgen/gen_pack_header.py U xenocara/lib/mesa/src/imagination/csbgen/meson.build U xenocara/lib/mesa/src/imagination/csbgen/pvr_packet_helpers.h U xenocara/lib/mesa/src/imagination/csbgen/rogue_cdm.xml U xenocara/lib/mesa/src/imagination/csbgen/rogue_cr.xml U xenocara/lib/mesa/src/imagination/csbgen/rogue_hwdefs.h U xenocara/lib/mesa/src/imagination/csbgen/rogue_ipf.xml U xenocara/lib/mesa/src/imagination/csbgen/rogue_lls.xml U xenocara/lib/mesa/src/imagination/csbgen/rogue_pbestate.xml U xenocara/lib/mesa/src/imagination/csbgen/rogue_pds.xml U xenocara/lib/mesa/src/imagination/csbgen/rogue_ppp.xml U xenocara/lib/mesa/src/imagination/csbgen/rogue_texstate.xml U xenocara/lib/mesa/src/imagination/csbgen/rogue_vdm.xml U xenocara/lib/mesa/src/imagination/include/pvr_rogue_fw.h U xenocara/lib/mesa/src/imagination/include/pvr_types.h U xenocara/lib/mesa/src/imagination/include/hwdef/rogue_hw_defs.h U xenocara/lib/mesa/src/imagination/include/hwdef/rogue_hw_utils.h U xenocara/lib/mesa/src/imagination/rogue/meson.build U xenocara/lib/mesa/src/imagination/rogue/rogue.c U xenocara/lib/mesa/src/imagination/rogue/rogue.h U xenocara/lib/mesa/src/imagination/rogue/rogue_build_data.c U xenocara/lib/mesa/src/imagination/rogue/rogue_build_data.h U xenocara/lib/mesa/src/imagination/rogue/rogue_compiler.c U xenocara/lib/mesa/src/imagination/rogue/rogue_compiler.h U xenocara/lib/mesa/src/imagination/rogue/rogue_constreg.c U xenocara/lib/mesa/src/imagination/rogue/rogue_constreg.h U xenocara/lib/mesa/src/imagination/rogue/rogue_dump.c U xenocara/lib/mesa/src/imagination/rogue/rogue_dump.h U xenocara/lib/mesa/src/imagination/rogue/rogue_encode.c U xenocara/lib/mesa/src/imagination/rogue/rogue_encode.h U xenocara/lib/mesa/src/imagination/rogue/rogue_encoders.c U xenocara/lib/mesa/src/imagination/rogue/rogue_encoders.h U xenocara/lib/mesa/src/imagination/rogue/rogue_instr.c U xenocara/lib/mesa/src/imagination/rogue/rogue_instr.h U xenocara/lib/mesa/src/imagination/rogue/rogue_nir.c U xenocara/lib/mesa/src/imagination/rogue/rogue_nir.h U xenocara/lib/mesa/src/imagination/rogue/rogue_nir_helpers.h U xenocara/lib/mesa/src/imagination/rogue/rogue_operand.c U xenocara/lib/mesa/src/imagination/rogue/rogue_operand.h U xenocara/lib/mesa/src/imagination/rogue/rogue_regalloc.c U xenocara/lib/mesa/src/imagination/rogue/rogue_regalloc.h U xenocara/lib/mesa/src/imagination/rogue/rogue_shader.c U xenocara/lib/mesa/src/imagination/rogue/rogue_shader.h U xenocara/lib/mesa/src/imagination/rogue/rogue_util.c U xenocara/lib/mesa/src/imagination/rogue/rogue_util.h U xenocara/lib/mesa/src/imagination/rogue/rogue_validate.c U xenocara/lib/mesa/src/imagination/rogue/rogue_validate.h U xenocara/lib/mesa/src/imagination/rogue/nir/rogue_nir_constreg.c U xenocara/lib/mesa/src/imagination/rogue/nir/rogue_nir_lower_io.c U xenocara/lib/mesa/src/imagination/rogue/nir/rogue_nir_pfo.c U xenocara/lib/mesa/src/imagination/rogue/tools/offline_compiler.c U xenocara/lib/mesa/src/imagination/vulkan/meson.build U xenocara/lib/mesa/src/imagination/vulkan/pvr_blit.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_bo.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_bo.h U xenocara/lib/mesa/src/imagination/vulkan/pvr_cmd_buffer.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_csb.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_csb.h U xenocara/lib/mesa/src/imagination/vulkan/pvr_csb_enum_helpers.h U xenocara/lib/mesa/src/imagination/vulkan/pvr_descriptor_set.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_device.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_formats.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_formats.h U xenocara/lib/mesa/src/imagination/vulkan/pvr_hardcode.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_hardcode.h U xenocara/lib/mesa/src/imagination/vulkan/pvr_hw_pass.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_hw_pass.h U xenocara/lib/mesa/src/imagination/vulkan/pvr_image.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_job_common.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_job_common.h U xenocara/lib/mesa/src/imagination/vulkan/pvr_pass.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_job_compute.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_job_compute.h U xenocara/lib/mesa/src/imagination/vulkan/pvr_job_context.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_job_context.h U xenocara/lib/mesa/src/imagination/vulkan/pvr_job_render.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_job_render.h U xenocara/lib/mesa/src/imagination/vulkan/pvr_job_transfer.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_job_transfer.h U xenocara/lib/mesa/src/imagination/vulkan/pvr_limits.h U xenocara/lib/mesa/src/imagination/vulkan/pvr_pipeline.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_pipeline_cache.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_private.h U xenocara/lib/mesa/src/imagination/vulkan/pvr_query.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_queue.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_shader.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_shader.h U xenocara/lib/mesa/src/imagination/vulkan/pvr_tex_state.c U xenocara/lib/mesa/src/imagination/vulkan/pvr_tex_state.h U xenocara/lib/mesa/src/imagination/vulkan/pvr_wsi.c U xenocara/lib/mesa/src/imagination/vulkan/vk_format.h U xenocara/lib/mesa/src/imagination/vulkan/pds/meson.build U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds.c U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_disasm.c U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_printer.c U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_rogue_pds_defs.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_rogue_pds_disasm.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_rogue_pds_encode.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_xgl_pds.c U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_arrays0.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_arrays1.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_arrays2.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_arrays3.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_arrays_base_instance0.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_arrays_base_instance1.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_arrays_base_instance2.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_arrays_base_instance3.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_arrays_base_instance_drawid0.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_arrays_base_instance_drawid1.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_arrays_base_instance_drawid2.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_arrays_base_instance_drawid3.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_elements0.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_elements1.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_elements2.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_elements3.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_elements_base_instance0.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_elements_base_instance1.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_elements_base_instance2.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_elements_base_instance3.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_elements_base_instance_drawid0.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_elements_base_instance_drawid1.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_elements_base_instance_drawid2.h U xenocara/lib/mesa/src/imagination/vulkan/pds/pvr_pds_programs/pvr_draw_indirect_elements_base_instance_drawid3.h U xenocara/lib/mesa/src/imagination/vulkan/usc/hardcoded_apps/pvr_simple_compute.h U xenocara/lib/mesa/src/imagination/vulkan/usc/programs/pvr_cdm_load_sr.h U xenocara/lib/mesa/src/imagination/vulkan/usc/programs/pvr_end_of_tile.h U xenocara/lib/mesa/src/imagination/vulkan/usc/programs/pvr_nop_usc.h U xenocara/lib/mesa/src/imagination/vulkan/usc/programs/pvr_shader_factory.h U xenocara/lib/mesa/src/imagination/vulkan/usc/programs/pvr_static_shaders.h U xenocara/lib/mesa/src/imagination/vulkan/usc/programs/pvr_transfer_eot.h U xenocara/lib/mesa/src/imagination/vulkan/usc/programs/pvr_usc_fragment_shader.h U xenocara/lib/mesa/src/imagination/vulkan/usc/programs/pvr_vdm_load_sr.h U xenocara/lib/mesa/src/imagination/vulkan/usc/programs/pvr_vdm_store_sr.h U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvr_winsys.c U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvr_winsys.h U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvr_winsys_helper.c U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvr_winsys_helper.h U xenocara/lib/mesa/src/imagination/vulkan/winsys/powervr/pvr_drm.c U xenocara/lib/mesa/src/imagination/vulkan/winsys/powervr/pvr_drm_public.h U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/pvr_srv.c U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/pvr_srv.h U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/pvr_srv_bo.c U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/pvr_srv_bo.h U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/pvr_srv_bridge.c U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/pvr_srv_bridge.h U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/pvr_srv_job_common.c U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/pvr_srv_job_common.h U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/pvr_srv_job_compute.c U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/pvr_srv_job_compute.h U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/pvr_srv_job_null.c U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/pvr_srv_job_null.h U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/pvr_srv_job_render.c U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/pvr_srv_job_render.h U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/pvr_srv_job_transfer.c U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/pvr_srv_job_transfer.h U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/pvr_srv_public.h U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/pvr_srv_sync.c U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/pvr_srv_sync.h U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/fw-api/pvr_rogue_fwif.h U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/fw-api/pvr_rogue_fwif_rf.h U xenocara/lib/mesa/src/imagination/vulkan/winsys/pvrsrvkm/fw-api/pvr_rogue_fwif_shared.h U xenocara/lib/mesa/src/imgui/LICENSE.txt U xenocara/lib/mesa/src/imgui/README U xenocara/lib/mesa/src/imgui/imconfig.h U xenocara/lib/mesa/src/imgui/imgui.cpp U xenocara/lib/mesa/src/imgui/imgui.h U xenocara/lib/mesa/src/imgui/imgui_draw.cpp U xenocara/lib/mesa/src/imgui/imgui_internal.h U xenocara/lib/mesa/src/imgui/imgui_memory_editor.h U xenocara/lib/mesa/src/imgui/imgui_widgets.cpp U xenocara/lib/mesa/src/imgui/imstb_rectpack.h U xenocara/lib/mesa/src/imgui/imstb_textedit.h U xenocara/lib/mesa/src/imgui/imstb_truetype.h U xenocara/lib/mesa/src/imgui/meson.build U xenocara/lib/mesa/src/intel/meson.build U xenocara/lib/mesa/src/intel/blorp/TODO U xenocara/lib/mesa/src/intel/blorp/blorp.c U xenocara/lib/mesa/src/intel/blorp/blorp.h U xenocara/lib/mesa/src/intel/blorp/blorp_blit.c C xenocara/lib/mesa/src/intel/blorp/blorp_clear.c U xenocara/lib/mesa/src/intel/blorp/blorp_genX_exec.h U xenocara/lib/mesa/src/intel/blorp/blorp_nir_builder.h U xenocara/lib/mesa/src/intel/blorp/blorp_priv.h U xenocara/lib/mesa/src/intel/blorp/meson.build U xenocara/lib/mesa/src/intel/ci/anv-skips.txt U xenocara/lib/mesa/src/intel/ci/anv-tgl-fails.txt U xenocara/lib/mesa/src/intel/ci/anv-tgl-skips.txt U xenocara/lib/mesa/src/intel/ci/deqp-anv-tgl-vk.toml U xenocara/lib/mesa/src/intel/ci/deqp-iris-amly.toml U xenocara/lib/mesa/src/intel/ci/deqp-iris-apl.toml U xenocara/lib/mesa/src/intel/ci/deqp-iris-cml.toml U xenocara/lib/mesa/src/intel/ci/deqp-iris-glk.toml U xenocara/lib/mesa/src/intel/ci/deqp-iris-jsl.toml U xenocara/lib/mesa/src/intel/ci/deqp-iris-kbl.toml U xenocara/lib/mesa/src/intel/ci/deqp-iris-whl.toml U xenocara/lib/mesa/src/intel/ci/gitlab-ci.yml U xenocara/lib/mesa/src/intel/ci/intel-tgl-skqp-gl_rendertests.txt U xenocara/lib/mesa/src/intel/ci/intel-tgl-skqp-gles_rendertests.txt U xenocara/lib/mesa/src/intel/ci/iris-amly-fails.txt U xenocara/lib/mesa/src/intel/ci/iris-amly-skips.txt U xenocara/lib/mesa/src/intel/ci/iris-amly-flakes.txt U xenocara/lib/mesa/src/intel/ci/iris-apl-fails.txt U xenocara/lib/mesa/src/intel/ci/iris-apl-flakes.txt U xenocara/lib/mesa/src/intel/ci/iris-cml-fails.txt U xenocara/lib/mesa/src/intel/ci/iris-cml-flakes.txt U xenocara/lib/mesa/src/intel/ci/iris-glk-fails.txt U xenocara/lib/mesa/src/intel/ci/iris-glk-flakes.txt U xenocara/lib/mesa/src/intel/ci/iris-jsl-skips.txt U xenocara/lib/mesa/src/intel/ci/iris-kbl-fails.txt U xenocara/lib/mesa/src/intel/ci/iris-kbl-flakes.txt U xenocara/lib/mesa/src/intel/ci/iris-kbl-skips.txt U xenocara/lib/mesa/src/intel/ci/iris-skips.txt U xenocara/lib/mesa/src/intel/ci/iris-whl-fails.txt U xenocara/lib/mesa/src/intel/ci/iris-whl-flakes.txt U xenocara/lib/mesa/src/intel/ci/traces-iris.yml U xenocara/lib/mesa/src/intel/common/intel_aux_map.c U xenocara/lib/mesa/src/intel/common/intel_aux_map.h U xenocara/lib/mesa/src/intel/common/intel_batch_decoder.c U xenocara/lib/mesa/src/intel/common/intel_batch_decoder_stub.c U xenocara/lib/mesa/src/intel/common/intel_buffer_alloc.h U xenocara/lib/mesa/src/intel/common/intel_clflush.h U xenocara/lib/mesa/src/intel/common/intel_decoder.c U xenocara/lib/mesa/src/intel/common/intel_decoder.h U xenocara/lib/mesa/src/intel/common/intel_defines.h U xenocara/lib/mesa/src/intel/common/intel_disasm.c U xenocara/lib/mesa/src/intel/common/intel_disasm.h U xenocara/lib/mesa/src/intel/common/intel_engine.c U xenocara/lib/mesa/src/intel/common/intel_engine.h U xenocara/lib/mesa/src/intel/common/intel_gem.c U xenocara/lib/mesa/src/intel/common/intel_gem.h U xenocara/lib/mesa/src/intel/common/intel_guardband.h U xenocara/lib/mesa/src/intel/common/intel_l3_config.c U xenocara/lib/mesa/src/intel/common/intel_l3_config.h U xenocara/lib/mesa/src/intel/common/intel_measure.c U xenocara/lib/mesa/src/intel/common/intel_measure.h U xenocara/lib/mesa/src/intel/common/intel_pixel_hash.h U xenocara/lib/mesa/src/intel/common/intel_sample_positions.c U xenocara/lib/mesa/src/intel/common/intel_sample_positions.h U xenocara/lib/mesa/src/intel/common/intel_urb_config.c U xenocara/lib/mesa/src/intel/common/intel_uuid.c U xenocara/lib/mesa/src/intel/common/intel_uuid.h U xenocara/lib/mesa/src/intel/common/meson.build U xenocara/lib/mesa/src/intel/common/mi_builder.h U xenocara/lib/mesa/src/intel/common/tests/gentest.xml U xenocara/lib/mesa/src/intel/common/tests/genxml_test.c U xenocara/lib/mesa/src/intel/common/tests/mi_builder_test.cpp U xenocara/lib/mesa/src/intel/compiler/brw_cfg.cpp U xenocara/lib/mesa/src/intel/compiler/brw_cfg.h U xenocara/lib/mesa/src/intel/compiler/brw_clip.h U xenocara/lib/mesa/src/intel/compiler/brw_clip_line.c U xenocara/lib/mesa/src/intel/compiler/brw_clip_point.c U xenocara/lib/mesa/src/intel/compiler/brw_clip_tri.c U xenocara/lib/mesa/src/intel/compiler/brw_clip_unfilled.c U xenocara/lib/mesa/src/intel/compiler/brw_clip_util.c U xenocara/lib/mesa/src/intel/compiler/brw_compile_clip.c U xenocara/lib/mesa/src/intel/compiler/brw_compile_ff_gs.c U xenocara/lib/mesa/src/intel/compiler/brw_compile_sf.c U xenocara/lib/mesa/src/intel/compiler/brw_compiler.c U xenocara/lib/mesa/src/intel/compiler/brw_compiler.h U xenocara/lib/mesa/src/intel/compiler/brw_dead_control_flow.cpp U xenocara/lib/mesa/src/intel/compiler/brw_dead_control_flow.h U xenocara/lib/mesa/src/intel/compiler/brw_debug_recompile.c U xenocara/lib/mesa/src/intel/compiler/brw_disasm.c U xenocara/lib/mesa/src/intel/compiler/brw_disasm_info.c U xenocara/lib/mesa/src/intel/compiler/brw_disasm_info.h U xenocara/lib/mesa/src/intel/compiler/brw_eu.c U xenocara/lib/mesa/src/intel/compiler/brw_eu.h U xenocara/lib/mesa/src/intel/compiler/brw_eu_compact.c U xenocara/lib/mesa/src/intel/compiler/brw_eu_defines.h U xenocara/lib/mesa/src/intel/compiler/brw_eu_emit.c U xenocara/lib/mesa/src/intel/compiler/brw_eu_util.c U xenocara/lib/mesa/src/intel/compiler/brw_eu_validate.c U xenocara/lib/mesa/src/intel/compiler/brw_fs.cpp U xenocara/lib/mesa/src/intel/compiler/brw_fs.h U xenocara/lib/mesa/src/intel/compiler/brw_fs_bank_conflicts.cpp U xenocara/lib/mesa/src/intel/compiler/brw_fs_builder.h U xenocara/lib/mesa/src/intel/compiler/brw_fs_cmod_propagation.cpp U xenocara/lib/mesa/src/intel/compiler/brw_fs_combine_constants.cpp U xenocara/lib/mesa/src/intel/compiler/brw_fs_copy_propagation.cpp U xenocara/lib/mesa/src/intel/compiler/brw_fs_cse.cpp U xenocara/lib/mesa/src/intel/compiler/brw_fs_dead_code_eliminate.cpp U xenocara/lib/mesa/src/intel/compiler/brw_fs_generator.cpp U xenocara/lib/mesa/src/intel/compiler/brw_fs_live_variables.cpp U xenocara/lib/mesa/src/intel/compiler/brw_fs_live_variables.h U xenocara/lib/mesa/src/intel/compiler/brw_fs_lower_pack.cpp U xenocara/lib/mesa/src/intel/compiler/brw_fs_lower_regioning.cpp C xenocara/lib/mesa/src/intel/compiler/brw_fs_nir.cpp U xenocara/lib/mesa/src/intel/compiler/brw_fs_reg_allocate.cpp U xenocara/lib/mesa/src/intel/compiler/brw_fs_register_coalesce.cpp U xenocara/lib/mesa/src/intel/compiler/brw_fs_saturate_propagation.cpp U xenocara/lib/mesa/src/intel/compiler/brw_fs_scoreboard.cpp U xenocara/lib/mesa/src/intel/compiler/brw_fs_sel_peephole.cpp U xenocara/lib/mesa/src/intel/compiler/brw_fs_thread_payload.cpp U xenocara/lib/mesa/src/intel/compiler/brw_fs_validate.cpp U xenocara/lib/mesa/src/intel/compiler/brw_fs_visitor.cpp U xenocara/lib/mesa/src/intel/compiler/brw_gfx_ver_enum.h U xenocara/lib/mesa/src/intel/compiler/brw_inst.h U xenocara/lib/mesa/src/intel/compiler/brw_interpolation_map.c U xenocara/lib/mesa/src/intel/compiler/brw_ir.h U xenocara/lib/mesa/src/intel/compiler/brw_ir_allocator.h U xenocara/lib/mesa/src/intel/compiler/brw_ir_analysis.h U xenocara/lib/mesa/src/intel/compiler/brw_ir_fs.h U xenocara/lib/mesa/src/intel/compiler/brw_ir_performance.cpp U xenocara/lib/mesa/src/intel/compiler/brw_ir_performance.h U xenocara/lib/mesa/src/intel/compiler/brw_ir_vec4.h U xenocara/lib/mesa/src/intel/compiler/brw_isa_info.h U xenocara/lib/mesa/src/intel/compiler/brw_kernel.c U xenocara/lib/mesa/src/intel/compiler/brw_kernel.h U xenocara/lib/mesa/src/intel/compiler/brw_lower_logical_sends.cpp U xenocara/lib/mesa/src/intel/compiler/brw_mesh.cpp U xenocara/lib/mesa/src/intel/compiler/brw_nir.c U xenocara/lib/mesa/src/intel/compiler/brw_nir.h U xenocara/lib/mesa/src/intel/compiler/brw_nir_analyze_boolean_resolves.c U xenocara/lib/mesa/src/intel/compiler/brw_nir_analyze_ubo_ranges.c U xenocara/lib/mesa/src/intel/compiler/brw_nir_attribute_workarounds.c U xenocara/lib/mesa/src/intel/compiler/brw_nir_rt.c U xenocara/lib/mesa/src/intel/compiler/brw_nir_clamp_image_1d_2d_array_sizes.c U xenocara/lib/mesa/src/intel/compiler/brw_nir_lower_alpha_to_coverage.c U xenocara/lib/mesa/src/intel/compiler/brw_nir_lower_conversions.c U xenocara/lib/mesa/src/intel/compiler/brw_nir_lower_cs_intrinsics.c U xenocara/lib/mesa/src/intel/compiler/brw_nir_lower_intersection_shader.c U xenocara/lib/mesa/src/intel/compiler/brw_nir_lower_mem_access_bit_sizes.c U xenocara/lib/mesa/src/intel/compiler/brw_nir_lower_ray_queries.c U xenocara/lib/mesa/src/intel/compiler/brw_nir_lower_rt_intrinsics.c U xenocara/lib/mesa/src/intel/compiler/brw_nir_lower_scoped_barriers.c U xenocara/lib/mesa/src/intel/compiler/brw_nir_lower_shader_calls.c U xenocara/lib/mesa/src/intel/compiler/brw_nir_lower_shading_rate_output.c U xenocara/lib/mesa/src/intel/compiler/brw_nir_lower_storage_image.c U xenocara/lib/mesa/src/intel/compiler/brw_nir_opt_peephole_ffma.c U xenocara/lib/mesa/src/intel/compiler/brw_nir_rt.h U xenocara/lib/mesa/src/intel/compiler/brw_nir_rt_builder.h U xenocara/lib/mesa/src/intel/compiler/brw_nir_tcs_workarounds.c U xenocara/lib/mesa/src/intel/compiler/brw_nir_trig_workarounds.py U xenocara/lib/mesa/src/intel/compiler/brw_packed_float.c U xenocara/lib/mesa/src/intel/compiler/brw_predicated_break.cpp U xenocara/lib/mesa/src/intel/compiler/brw_prim.h U xenocara/lib/mesa/src/intel/compiler/brw_private.h U xenocara/lib/mesa/src/intel/compiler/brw_reg.h U xenocara/lib/mesa/src/intel/compiler/brw_reg_type.c U xenocara/lib/mesa/src/intel/compiler/brw_reg_type.h U xenocara/lib/mesa/src/intel/compiler/brw_rt.h U xenocara/lib/mesa/src/intel/compiler/brw_schedule_instructions.cpp U xenocara/lib/mesa/src/intel/compiler/brw_shader.cpp U xenocara/lib/mesa/src/intel/compiler/brw_shader.h U xenocara/lib/mesa/src/intel/compiler/brw_simd_selection.c U xenocara/lib/mesa/src/intel/compiler/brw_vec4.cpp U xenocara/lib/mesa/src/intel/compiler/brw_vec4.h U xenocara/lib/mesa/src/intel/compiler/brw_vec4_builder.h U xenocara/lib/mesa/src/intel/compiler/brw_vec4_cmod_propagation.cpp U xenocara/lib/mesa/src/intel/compiler/brw_vec4_copy_propagation.cpp U xenocara/lib/mesa/src/intel/compiler/brw_vec4_cse.cpp U xenocara/lib/mesa/src/intel/compiler/brw_vec4_dead_code_eliminate.cpp U xenocara/lib/mesa/src/intel/compiler/brw_vec4_generator.cpp U xenocara/lib/mesa/src/intel/compiler/brw_vec4_gs_nir.cpp U xenocara/lib/mesa/src/intel/compiler/brw_vec4_gs_visitor.cpp U xenocara/lib/mesa/src/intel/compiler/brw_vec4_gs_visitor.h U xenocara/lib/mesa/src/intel/compiler/brw_vec4_live_variables.cpp U xenocara/lib/mesa/src/intel/compiler/brw_vec4_live_variables.h U xenocara/lib/mesa/src/intel/compiler/brw_vec4_nir.cpp U xenocara/lib/mesa/src/intel/compiler/brw_vec4_reg_allocate.cpp U xenocara/lib/mesa/src/intel/compiler/brw_vec4_surface_builder.cpp U xenocara/lib/mesa/src/intel/compiler/brw_vec4_surface_builder.h U xenocara/lib/mesa/src/intel/compiler/brw_vec4_tcs.cpp U xenocara/lib/mesa/src/intel/compiler/brw_vec4_tcs.h U xenocara/lib/mesa/src/intel/compiler/brw_vec4_tes.cpp U xenocara/lib/mesa/src/intel/compiler/brw_vec4_tes.h U xenocara/lib/mesa/src/intel/compiler/brw_vec4_visitor.cpp U xenocara/lib/mesa/src/intel/compiler/brw_vec4_vs.h U xenocara/lib/mesa/src/intel/compiler/brw_vec4_vs_visitor.cpp U xenocara/lib/mesa/src/intel/compiler/brw_vue_map.c U xenocara/lib/mesa/src/intel/compiler/gfx6_gs_visitor.cpp U xenocara/lib/mesa/src/intel/compiler/gfx6_gs_visitor.h U xenocara/lib/mesa/src/intel/compiler/intel_clc.c U xenocara/lib/mesa/src/intel/compiler/meson.build U xenocara/lib/mesa/src/intel/compiler/test_eu_compact.cpp U xenocara/lib/mesa/src/intel/compiler/test_eu_validate.cpp U xenocara/lib/mesa/src/intel/compiler/test_fs_cmod_propagation.cpp U xenocara/lib/mesa/src/intel/compiler/test_fs_copy_propagation.cpp U xenocara/lib/mesa/src/intel/compiler/test_fs_saturate_propagation.cpp U xenocara/lib/mesa/src/intel/compiler/test_fs_scoreboard.cpp U xenocara/lib/mesa/src/intel/compiler/test_simd_selection.cpp U xenocara/lib/mesa/src/intel/compiler/test_vec4_cmod_propagation.cpp U xenocara/lib/mesa/src/intel/compiler/test_vec4_copy_propagation.cpp U xenocara/lib/mesa/src/intel/compiler/test_vec4_dead_code_eliminate.cpp U xenocara/lib/mesa/src/intel/compiler/test_vec4_register_coalesce.cpp U xenocara/lib/mesa/src/intel/compiler/test_vf_float_conversions.cpp U xenocara/lib/mesa/src/intel/dev/intel_debug.c U xenocara/lib/mesa/src/intel/dev/intel_debug.h U xenocara/lib/mesa/src/intel/dev/intel_dev_info.c U xenocara/lib/mesa/src/intel/dev/intel_device_info.c U xenocara/lib/mesa/src/intel/dev/intel_device_info.h U xenocara/lib/mesa/src/intel/dev/intel_device_info_override_test.c U xenocara/lib/mesa/src/intel/dev/intel_device_info_test.c U xenocara/lib/mesa/src/intel/dev/intel_device_info_test.h U xenocara/lib/mesa/src/intel/dev/intel_hwconfig.c U xenocara/lib/mesa/src/intel/dev/intel_hwconfig.h U xenocara/lib/mesa/src/intel/dev/intel_hwconfig_types.h U xenocara/lib/mesa/src/intel/dev/meson.build U xenocara/lib/mesa/src/intel/ds/.clang-format U xenocara/lib/mesa/src/intel/ds/intel_driver_ds.cc U xenocara/lib/mesa/src/intel/ds/intel_driver_ds.h U xenocara/lib/mesa/src/intel/ds/intel_pps_driver.cc U xenocara/lib/mesa/src/intel/ds/intel_pps_driver.h U xenocara/lib/mesa/src/intel/ds/intel_pps_perf.cc U xenocara/lib/mesa/src/intel/ds/intel_pps_perf.h U xenocara/lib/mesa/src/intel/ds/intel_pps_priv.h U xenocara/lib/mesa/src/intel/ds/intel_tracepoints.py U xenocara/lib/mesa/src/intel/ds/meson.build U xenocara/lib/mesa/src/intel/genxml/README U xenocara/lib/mesa/src/intel/genxml/gen11.xml U xenocara/lib/mesa/src/intel/genxml/gen12.xml U xenocara/lib/mesa/src/intel/genxml/gen125.xml U xenocara/lib/mesa/src/intel/genxml/gen4.xml U xenocara/lib/mesa/src/intel/genxml/gen45.xml U xenocara/lib/mesa/src/intel/genxml/gen5.xml U xenocara/lib/mesa/src/intel/genxml/gen6.xml U xenocara/lib/mesa/src/intel/genxml/gen7.xml U xenocara/lib/mesa/src/intel/genxml/gen75.xml U xenocara/lib/mesa/src/intel/genxml/gen8.xml U xenocara/lib/mesa/src/intel/genxml/gen9.xml U xenocara/lib/mesa/src/intel/genxml/genX_pack.h U xenocara/lib/mesa/src/intel/genxml/gen_bits_header.py U xenocara/lib/mesa/src/intel/genxml/gen_macros.h U xenocara/lib/mesa/src/intel/genxml/gen_pack_header.py U xenocara/lib/mesa/src/intel/genxml/gen_rt.xml U xenocara/lib/mesa/src/intel/genxml/gen_sort_tags.py U xenocara/lib/mesa/src/intel/genxml/gen_zipped_file.py U xenocara/lib/mesa/src/intel/genxml/meson.build U xenocara/lib/mesa/src/intel/genxml/util.py U xenocara/lib/mesa/src/intel/isl/README U xenocara/lib/mesa/src/intel/isl/gen_format_layout.py U xenocara/lib/mesa/src/intel/isl/isl.c U xenocara/lib/mesa/src/intel/isl/isl.h U xenocara/lib/mesa/src/intel/isl/isl_aux_info.c U xenocara/lib/mesa/src/intel/isl/isl_drm.c U xenocara/lib/mesa/src/intel/isl/isl_emit_cpb.c U xenocara/lib/mesa/src/intel/isl/isl_emit_depth_stencil.c U xenocara/lib/mesa/src/intel/isl/isl_format.c U xenocara/lib/mesa/src/intel/isl/isl_format_layout.csv U xenocara/lib/mesa/src/intel/isl/isl_genX_helpers.h U xenocara/lib/mesa/src/intel/isl/isl_genX_priv.h U xenocara/lib/mesa/src/intel/isl/isl_gfx12.c U xenocara/lib/mesa/src/intel/isl/isl_gfx12.h U xenocara/lib/mesa/src/intel/isl/isl_gfx4.c U xenocara/lib/mesa/src/intel/isl/isl_gfx4.h U xenocara/lib/mesa/src/intel/isl/isl_gfx6.c U xenocara/lib/mesa/src/intel/isl/isl_gfx6.h U xenocara/lib/mesa/src/intel/isl/isl_gfx7.c U xenocara/lib/mesa/src/intel/isl/isl_gfx7.h U xenocara/lib/mesa/src/intel/isl/isl_gfx8.c U xenocara/lib/mesa/src/intel/isl/isl_gfx8.h U xenocara/lib/mesa/src/intel/isl/isl_gfx9.c U xenocara/lib/mesa/src/intel/isl/isl_gfx9.h U xenocara/lib/mesa/src/intel/isl/isl_priv.h U xenocara/lib/mesa/src/intel/isl/isl_storage_image.c U xenocara/lib/mesa/src/intel/isl/isl_surface_state.c U xenocara/lib/mesa/src/intel/isl/isl_tiled_memcpy.c U xenocara/lib/mesa/src/intel/isl/isl_tiled_memcpy_normal.c U xenocara/lib/mesa/src/intel/isl/isl_tiled_memcpy_sse41.c U xenocara/lib/mesa/src/intel/isl/meson.build U xenocara/lib/mesa/src/intel/isl/tests/isl_aux_info_test.cpp U xenocara/lib/mesa/src/intel/isl/tests/isl_surf_get_image_offset_test.c U xenocara/lib/mesa/src/intel/nullhw-layer/README U xenocara/lib/mesa/src/intel/nullhw-layer/VkLayer_INTEL_nullhw.json U xenocara/lib/mesa/src/intel/nullhw-layer/intel_nullhw.c U xenocara/lib/mesa/src/intel/nullhw-layer/meson.build U xenocara/lib/mesa/src/intel/perf/gen_perf.py U xenocara/lib/mesa/src/intel/perf/intel_perf.c U xenocara/lib/mesa/src/intel/perf/intel_perf.h U xenocara/lib/mesa/src/intel/perf/intel_perf_mdapi.c U xenocara/lib/mesa/src/intel/perf/intel_perf_mdapi.h U xenocara/lib/mesa/src/intel/perf/intel_perf_private.h U xenocara/lib/mesa/src/intel/perf/intel_perf_query.c U xenocara/lib/mesa/src/intel/perf/intel_perf_query.h U xenocara/lib/mesa/src/intel/perf/intel_perf_regs.h U xenocara/lib/mesa/src/intel/perf/intel_perf_setup.h U xenocara/lib/mesa/src/intel/perf/meson.build U xenocara/lib/mesa/src/intel/perf/oa-adl.xml U xenocara/lib/mesa/src/intel/perf/oa-bdw.xml U xenocara/lib/mesa/src/intel/perf/oa-bxt.xml U xenocara/lib/mesa/src/intel/perf/oa-cflgt2.xml U xenocara/lib/mesa/src/intel/perf/oa-cflgt3.xml U xenocara/lib/mesa/src/intel/perf/oa-chv.xml U xenocara/lib/mesa/src/intel/perf/oa-dg1.xml U xenocara/lib/mesa/src/intel/perf/oa-ehl.xml U xenocara/lib/mesa/src/intel/perf/oa-glk.xml U xenocara/lib/mesa/src/intel/perf/oa-hsw.xml U xenocara/lib/mesa/src/intel/perf/oa-icl.xml U xenocara/lib/mesa/src/intel/perf/oa-kblgt2.xml U xenocara/lib/mesa/src/intel/perf/oa-kblgt3.xml U xenocara/lib/mesa/src/intel/perf/oa-rkl.xml U xenocara/lib/mesa/src/intel/perf/oa-sklgt2.xml U xenocara/lib/mesa/src/intel/perf/oa-sklgt3.xml U xenocara/lib/mesa/src/intel/perf/oa-sklgt4.xml U xenocara/lib/mesa/src/intel/perf/oa-tglgt1.xml U xenocara/lib/mesa/src/intel/perf/oa-tglgt2.xml U xenocara/lib/mesa/src/intel/tools/aub_mem.c U xenocara/lib/mesa/src/intel/tools/aub_mem.h U xenocara/lib/mesa/src/intel/tools/aub_read.c U xenocara/lib/mesa/src/intel/tools/aub_read.h U xenocara/lib/mesa/src/intel/tools/aub_write.c U xenocara/lib/mesa/src/intel/tools/aub_write.h U xenocara/lib/mesa/src/intel/tools/aubinator.c U xenocara/lib/mesa/src/intel/tools/aubinator_error_decode.c U xenocara/lib/mesa/src/intel/tools/aubinator_viewer.cpp U xenocara/lib/mesa/src/intel/tools/aubinator_viewer.h U xenocara/lib/mesa/src/intel/tools/aubinator_viewer_decoder.cpp U xenocara/lib/mesa/src/intel/tools/aubinator_viewer_urb.h U xenocara/lib/mesa/src/intel/tools/error2aub.c U xenocara/lib/mesa/src/intel/tools/gfx10_context.h U xenocara/lib/mesa/src/intel/tools/gfx8_context.h U xenocara/lib/mesa/src/intel/tools/i965_asm.c U xenocara/lib/mesa/src/intel/tools/i965_asm.h U xenocara/lib/mesa/src/intel/tools/i965_disasm.c U xenocara/lib/mesa/src/intel/tools/i965_gram.y U xenocara/lib/mesa/src/intel/tools/i965_lex.l U xenocara/lib/mesa/src/intel/tools/intel_aub.h U xenocara/lib/mesa/src/intel/tools/intel_context.h U xenocara/lib/mesa/src/intel/tools/intel_dump_gpu.c U xenocara/lib/mesa/src/intel/tools/intel_dump_gpu.in U xenocara/lib/mesa/src/intel/tools/intel_noop_drm_shim.c U xenocara/lib/mesa/src/intel/tools/intel_sanitize_gpu.c U xenocara/lib/mesa/src/intel/tools/intel_sanitize_gpu.in U xenocara/lib/mesa/src/intel/tools/intel_stub_gpu.in U xenocara/lib/mesa/src/intel/tools/meson.build U xenocara/lib/mesa/src/intel/tools/imgui/imgui_impl_gtk3.cpp U xenocara/lib/mesa/src/intel/tools/imgui/imgui_impl_gtk3.h U xenocara/lib/mesa/src/intel/tools/imgui/imgui_impl_opengl3.cpp U xenocara/lib/mesa/src/intel/tools/imgui/imgui_impl_opengl3.h U xenocara/lib/mesa/src/intel/tools/imgui/meson.build U xenocara/lib/mesa/src/intel/tools/tests/run-test.py U xenocara/lib/mesa/src/intel/tools/tests/gen11/cr0.asm U xenocara/lib/mesa/src/intel/tools/tests/gen11/cr0.expected U xenocara/lib/mesa/src/intel/tools/tests/gen11/rol.asm U xenocara/lib/mesa/src/intel/tools/tests/gen11/rol.expected U xenocara/lib/mesa/src/intel/tools/tests/gen11/ror.asm U xenocara/lib/mesa/src/intel/tools/tests/gen11/ror.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/add.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/add.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/and.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/and.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/asr.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/asr.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/break.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/break.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/cmp.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/cmp.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/cont.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/cont.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/do.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/do.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/dp2.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/dp2.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/dp3.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/dp3.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/dp4.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/dp4.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/dph.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/dph.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/else.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/else.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/endif.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/endif.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/frc.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/frc.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/if.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/if.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/iff.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/iff.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/jmpi.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/jmpi.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/line.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/line.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/mac.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/mac.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/mach.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/mach.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/mov.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/mov.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/mul.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/mul.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/not.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/not.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/or.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/or.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/rndd.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/rndd.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/sel.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/sel.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/send.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/send.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/shl.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/shl.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/shr.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/shr.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/while.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/while.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4/xor.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4/xor.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/add.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/add.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/and.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/and.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/asr.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/asr.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/break.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/break.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/cmp.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/cmp.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/cont.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/cont.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/do.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/do.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/dp2.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/dp2.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/dp3.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/dp3.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/dp4.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/dp4.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/dph.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/dph.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/else.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/else.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/endif.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/endif.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/frc.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/frc.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/if.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/if.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/iff.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/iff.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/jmpi.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/jmpi.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/mach.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/mach.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/mov.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/mov.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/mul.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/mul.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/not.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/not.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/or.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/or.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/pln.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/pln.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/rndd.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/rndd.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/sel.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/sel.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/send.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/send.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/shl.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/shl.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/shr.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/shr.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/while.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/while.expected U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/xor.asm U xenocara/lib/mesa/src/intel/tools/tests/gen4.5/xor.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/add.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/add.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/and.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/and.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/asr.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/asr.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/break.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/break.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/cmp.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/cmp.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/do.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/do.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/dp3.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/dp3.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/dp4.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/dp4.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/dph.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/dph.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/else.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/else.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/endif.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/endif.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/frc.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/frc.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/if.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/if.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/iff.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/iff.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/jmpi.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/jmpi.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/mach.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/mach.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/mov.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/mov.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/mul.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/mul.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/not.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/not.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/or.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/or.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/pln.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/pln.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/rndd.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/rndd.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/sel.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/sel.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/send.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/send.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/shl.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/shl.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/shr.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/shr.expected U xenocara/lib/mesa/src/intel/tools/tests/gen5/while.asm U xenocara/lib/mesa/src/intel/tools/tests/gen5/while.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/add.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/add.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/and.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/and.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/asr.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/asr.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/break.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/break.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/cmp.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/cmp.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/cont.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/cont.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/dp2.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/dp2.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/dp3.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/dp3.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/dp4.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/dp4.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/dph.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/dph.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/else.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/else.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/endif.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/frc.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/endif.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/frc.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/halt.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/halt.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/if.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/if.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/lrp.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/lrp.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/lzd.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/lzd.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/mach.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/mach.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/mad.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/mad.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/math.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/math.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/mov.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/mov.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/mul.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/mul.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/not.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/not.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/or.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/or.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/pln.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/pln.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/rndd.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/rndd.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/rnde.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/rnde.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/rndz.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/rndz.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/sel.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/sel.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/send.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/send.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/sendc.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/sendc.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/shl.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/shl.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/shr.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/shr.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/while.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/while.expected U xenocara/lib/mesa/src/intel/tools/tests/gen6/xor.asm U xenocara/lib/mesa/src/intel/tools/tests/gen6/xor.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/add.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/add.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/and.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/and.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/asr.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/asr.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/bfe.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/bfe.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/bfi1.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/bfi1.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/bfi2.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/bfi2.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/bfrev.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/bfrev.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/break.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/break.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/cbit.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/cbit.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/cmp.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/cmp.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/dp2.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/dp2.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/dp3.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/dp3.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/dp4.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/dp4.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/dph.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/dph.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/else.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/else.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/endif.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/endif.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/f16to32.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/f16to32.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/f32to16.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/f32to16.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/fbh.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/fbh.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/fbl.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/fbl.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/frc.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/frc.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/halt.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/halt.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/if.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/if.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/lrp.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/lrp.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/lzd.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/lzd.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/mach.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/mach.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/mad.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/mad.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/math.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/math.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/mov.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/mov.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/mul.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/mul.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/not.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/not.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/or.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/or.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/pln.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/pln.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/rndd.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/rndd.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/rnde.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/rnde.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/rndz.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/sel.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/rndz.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/sel.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/send.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/send.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/sendc.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/sendc.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/shl.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/shl.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/shr.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/shr.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/wait.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/wait.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/while.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/while.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7/xor.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7/xor.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/add.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/add.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/and.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/and.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/asr.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/asr.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/bfe.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/bfe.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/bfi1.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/bfi1.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/bfi2.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/bfi2.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/bfrev.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/bfrev.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/break.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/break.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/cbit.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/cbit.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/cmp.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/cmp.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/cont.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/cont.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/dim.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/dim.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/dp2.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/dp2.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/dp3.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/dp3.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/dp4.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/dp4.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/dph.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/dph.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/else.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/else.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/endif.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/endif.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/f16to32.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/f16to32.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/f32to16.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/f32to16.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/fbh.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/fbh.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/fbl.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/fbl.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/frc.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/frc.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/halt.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/halt.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/if.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/if.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/lrp.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/lrp.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/lzd.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/lzd.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/mach.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/mach.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/mad.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/mad.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/math.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/math.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/mov.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/mov.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/mul.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/mul.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/not.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/not.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/or.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/or.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/pln.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/pln.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/rndd.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/rndd.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/rnde.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/rnde.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/rndz.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/rndz.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/sel.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/sel.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/send.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/send.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/sendc.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/sendc.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/shl.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/shl.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/shr.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/shr.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/wait.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/wait.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/while.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/while.expected U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/xor.asm U xenocara/lib/mesa/src/intel/tools/tests/gen7.5/xor.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/add.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/add.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/and.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/and.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/asr.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/asr.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/bfe.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/bfe.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/bfi1.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/bfi1.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/bfi2.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/bfi2.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/bfrev.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/bfrev.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/break.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/break.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/cbit.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/cbit.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/cmp.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/cmp.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/cont.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/cont.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/cr0.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/cr0.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/csel.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/csel.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/else.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/else.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/endif.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/endif.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/fbh.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/fbh.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/fbl.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/fbl.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/frc.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/frc.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/halt.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/halt.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/if.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/if.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/lrp.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/lrp.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/lzd.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/lzd.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/mach.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/mach.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/mad.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/mov.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/mad.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/math.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/math.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/mov.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/mul.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/mul.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/nop.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/nop.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/not.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/not.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/or.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/or.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/pln.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/pln.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/rndd.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/rndd.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/rnde.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/rnde.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/rndz.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/rndz.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/sel.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/sel.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/send.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/shl.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/send.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/sendc.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/sendc.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/shl.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/shr.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/shr.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/wait.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/wait.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/while.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/while.expected U xenocara/lib/mesa/src/intel/tools/tests/gen8/xor.asm U xenocara/lib/mesa/src/intel/tools/tests/gen8/xor.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/add.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/add.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/and.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/and.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/asr.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/asr.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/bfe.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/bfe.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/bfi1.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/bfi1.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/bfi2.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/bfi2.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/bfrev.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/bfrev.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/break.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/break.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/cbit.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/cbit.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/cmp.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/cmp.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/cont.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/cont.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/cr0.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/cr0.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/csel.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/csel.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/else.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/else.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/endif.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/endif.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/fbh.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/fbh.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/fbl.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/fbl.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/frc.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/frc.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/halt.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/halt.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/if.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/if.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/lrp.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/lrp.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/lzd.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/lzd.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/mach.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/mach.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/mad.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/mov.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/mad.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/math.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/math.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/mov.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/mul.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/mul.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/nop.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/nop.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/not.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/not.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/or.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/or.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/pln.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/pln.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/rndd.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/rndd.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/rnde.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/rnde.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/rndz.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/rndz.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/sel.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/sel.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/send.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/shl.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/send.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/sendc.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/sendc.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/sends.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/sends.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/shl.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/shr.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/shr.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/wait.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/wait.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/while.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/while.expected U xenocara/lib/mesa/src/intel/tools/tests/gen9/xor.asm U xenocara/lib/mesa/src/intel/tools/tests/gen9/xor.expected U xenocara/lib/mesa/src/intel/vulkan/TODO U xenocara/lib/mesa/src/intel/vulkan/anv_allocator.c U xenocara/lib/mesa/src/intel/vulkan/anv_android.c U xenocara/lib/mesa/src/intel/vulkan/anv_android.h U xenocara/lib/mesa/src/intel/vulkan/anv_android_stubs.c C xenocara/lib/mesa/src/intel/vulkan/anv_batch_chain.c U xenocara/lib/mesa/src/intel/vulkan/anv_blorp.c U xenocara/lib/mesa/src/intel/vulkan/anv_bo_sync.c U xenocara/lib/mesa/src/intel/vulkan/anv_cmd_buffer.c U xenocara/lib/mesa/src/intel/vulkan/anv_descriptor_set.c C xenocara/lib/mesa/src/intel/vulkan/anv_device.c U xenocara/lib/mesa/src/intel/vulkan/anv_formats.c U xenocara/lib/mesa/src/intel/vulkan/anv_gem.c U xenocara/lib/mesa/src/intel/vulkan/anv_gem_stubs.c U xenocara/lib/mesa/src/intel/vulkan/anv_genX.h C xenocara/lib/mesa/src/intel/vulkan/anv_image.c U xenocara/lib/mesa/src/intel/vulkan/anv_measure.c U xenocara/lib/mesa/src/intel/vulkan/anv_measure.h U xenocara/lib/mesa/src/intel/vulkan/anv_nir.h U xenocara/lib/mesa/src/intel/vulkan/anv_perf.c U xenocara/lib/mesa/src/intel/vulkan/anv_nir_apply_pipeline_layout.c U xenocara/lib/mesa/src/intel/vulkan/anv_nir_add_base_work_group_id.c U xenocara/lib/mesa/src/intel/vulkan/anv_nir_compute_push_layout.c U xenocara/lib/mesa/src/intel/vulkan/anv_nir_lower_multiview.c U xenocara/lib/mesa/src/intel/vulkan/anv_nir_lower_ubo_loads.c U xenocara/lib/mesa/src/intel/vulkan/anv_nir_lower_ycbcr_textures.c U xenocara/lib/mesa/src/intel/vulkan/anv_nir_push_descriptor_analysis.c U xenocara/lib/mesa/src/intel/vulkan/anv_pipeline.c U xenocara/lib/mesa/src/intel/vulkan/anv_pipeline_cache.c C xenocara/lib/mesa/src/intel/vulkan/anv_private.h U xenocara/lib/mesa/src/intel/vulkan/anv_queue.c U xenocara/lib/mesa/src/intel/vulkan/anv_util.c U xenocara/lib/mesa/src/intel/vulkan/anv_utrace.c U xenocara/lib/mesa/src/intel/vulkan/anv_wsi.c U xenocara/lib/mesa/src/intel/vulkan/genX_acceleration_structure.c U xenocara/lib/mesa/src/intel/vulkan/genX_blorp_exec.c C xenocara/lib/mesa/src/intel/vulkan/genX_cmd_buffer.c U xenocara/lib/mesa/src/intel/vulkan/genX_gpu_memcpy.c C xenocara/lib/mesa/src/intel/vulkan/genX_pipeline.c U xenocara/lib/mesa/src/intel/vulkan/genX_query.c U xenocara/lib/mesa/src/intel/vulkan/genX_state.c U xenocara/lib/mesa/src/intel/vulkan/gfx8_cmd_buffer.c U xenocara/lib/mesa/src/intel/vulkan/meson.build U xenocara/lib/mesa/src/intel/vulkan/grl/.gitignore U xenocara/lib/mesa/src/intel/vulkan/grl/genX_grl.h U xenocara/lib/mesa/src/intel/vulkan/grl/genX_grl_dispatch.c U xenocara/lib/mesa/src/intel/vulkan/grl/genX_grl_uuid.cpp U xenocara/lib/mesa/src/intel/vulkan/grl/grl_cl_kernel_gen.py U xenocara/lib/mesa/src/intel/vulkan/grl/grl_metakernel_gen.py U xenocara/lib/mesa/src/intel/vulkan/grl/grl_parser.py U xenocara/lib/mesa/src/intel/vulkan/grl/grl_structs.h U xenocara/lib/mesa/src/intel/vulkan/grl/meson.build U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/AABB.h U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/api_interface.h U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/atomic_update.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/atomic_update.grl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/binned_sah_shared.h U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/build_leaf.grl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/build_primref.grl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/build_refit.grl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/bvh_build_BFS.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/bvh_build_DFS.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/bvh_build_leaf.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/bvh_build_presplit.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/bvh_build_primref.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/bvh_build_primref.h U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/bvh_build_refit.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/bvh_build_refit.h U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/bvh_build_sah_experimental.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/d3d12.h U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/bvh_build_treelet_refit.h U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/bvh_copy.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/bvh_debug.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/bvh_debug.grl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/bvh_postbuild_info.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/bvh_rebraid.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/common.h U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/copy.grl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/grl_api_interface_verify.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/grl_api_interface_verify.grl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/input_dump.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/input_dump.grl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/instance.h U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/intrinsics.h U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/mem_utils.h U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/misc.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/misc.grl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/misc_legacy.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/misc_shared.h U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/presplit.grl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/morton_builder.grl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/morton_msb_radix_bitonic_sort.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/morton_msb_radix_bitonic_sort.h U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/morton_msb_radix_bitonic_sort_shared.h U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/morton_radix_sort.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/morton_radix_sort.h U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/msb_radix_bitonic_sort.grl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/new_sah_builder.grl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/postbuild_info.grl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/qbvh6.h U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/quad.h U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/radix_sort.grl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/rebraid.grl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/shared.h U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/structs.grl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/traversal_shader.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/traversal_shader.grl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/libs/libraries.grl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/libs/lsc_intrinsics.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/libs/lsc_intrinsics.h U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/libs/lsc_intrinsics_fallback.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/morton/morton_common.h U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/morton/phase0.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/morton/phase1.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/morton/phase2.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/morton/post_sort.cl U xenocara/lib/mesa/src/intel/vulkan/grl/gpu/morton/pre_sort.cl U xenocara/lib/mesa/src/intel/vulkan/grl/include/AABB3f.h U xenocara/lib/mesa/src/intel/vulkan/grl/include/GRLGen12.h U xenocara/lib/mesa/src/intel/vulkan/grl/include/GRLIntTypes.h U xenocara/lib/mesa/src/intel/vulkan/grl/include/GRLOCLCompatibility.h U xenocara/lib/mesa/src/intel/vulkan/grl/include/GRLRTASCommon.h U xenocara/lib/mesa/src/intel/vulkan/grl/include/GRLStructs.h U xenocara/lib/mesa/src/intel/vulkan/grl/include/GRLUtilities.h U xenocara/lib/mesa/src/intel/vulkan/grl/include/affinespace.h U xenocara/lib/mesa/src/intel/vulkan/layers/anv_hitman3.c U xenocara/lib/mesa/src/intel/vulkan/tests/block_pool_grow_first.c U xenocara/lib/mesa/src/intel/vulkan/tests/block_pool_no_free.c U xenocara/lib/mesa/src/intel/vulkan/tests/state_pool.c U xenocara/lib/mesa/src/intel/vulkan/tests/state_pool_free_list_only.c U xenocara/lib/mesa/src/intel/vulkan/tests/state_pool_no_free.c U xenocara/lib/mesa/src/intel/vulkan/tests/state_pool_padding.c U xenocara/lib/mesa/src/intel/vulkan/tests/state_pool_test_helper.h U xenocara/lib/mesa/src/intel/vulkan/tests/test_common.h U xenocara/lib/mesa/src/intel/vulkan_hasvk/TODO U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_allocator.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_android.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_android.h U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_android_stubs.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_batch_chain.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_blorp.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_bo_sync.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_cmd_buffer.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_descriptor_set.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_device.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_formats.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_gem.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_gem_stubs.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_genX.h U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_image.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_measure.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_measure.h U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_nir.h U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_perf.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_nir_apply_pipeline_layout.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_nir_add_base_work_group_id.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_nir_compute_push_layout.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_nir_lower_multiview.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_nir_lower_ubo_loads.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_nir_lower_ycbcr_textures.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_pipeline.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_pipeline_cache.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_private.h U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_queue.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_util.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_utrace.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/anv_wsi.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/genX_blorp_exec.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/genX_cmd_buffer.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/genX_gpu_memcpy.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/genX_pipeline.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/genX_query.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/genX_state.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/gfx7_cmd_buffer.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/gfx8_cmd_buffer.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/meson.build U xenocara/lib/mesa/src/intel/vulkan_hasvk/tests/block_pool_grow_first.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/tests/block_pool_no_free.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/tests/state_pool.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/tests/state_pool_free_list_only.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/tests/state_pool_no_free.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/tests/state_pool_padding.c U xenocara/lib/mesa/src/intel/vulkan_hasvk/tests/state_pool_test_helper.h U xenocara/lib/mesa/src/intel/vulkan_hasvk/tests/test_common.h U xenocara/lib/mesa/src/loader/loader.c U xenocara/lib/mesa/src/loader/loader.h C xenocara/lib/mesa/src/loader/loader_dri3_helper.c C xenocara/lib/mesa/src/loader/loader_dri3_helper.h U xenocara/lib/mesa/src/loader/loader_dri_helper.c U xenocara/lib/mesa/src/loader/loader_dri_helper.h U xenocara/lib/mesa/src/loader/meson.build U xenocara/lib/mesa/src/loader/pci_id_driver_map.h U xenocara/lib/mesa/src/mapi/entry.c U xenocara/lib/mesa/src/mapi/entry.h U xenocara/lib/mesa/src/mapi/entry_ppc64le_tls.h U xenocara/lib/mesa/src/mapi/entry_x86-64_tls.h U xenocara/lib/mesa/src/mapi/entry_x86_tls.h U xenocara/lib/mesa/src/mapi/mapi_abi.py U xenocara/lib/mesa/src/mapi/mapi_glapi.c U xenocara/lib/mesa/src/mapi/mapi_tmp.h U xenocara/lib/mesa/src/mapi/meson.build U xenocara/lib/mesa/src/mapi/stub.c U xenocara/lib/mesa/src/mapi/stub.h U xenocara/lib/mesa/src/mapi/table.c U xenocara/lib/mesa/src/mapi/table.h U xenocara/lib/mesa/src/mapi/u_current.c U xenocara/lib/mesa/src/mapi/u_current.h U xenocara/lib/mesa/src/mapi/u_execmem.c U xenocara/lib/mesa/src/mapi/u_execmem.h U xenocara/lib/mesa/src/mapi/es1api/gles1-symbols.txt U xenocara/lib/mesa/src/mapi/es1api/gles1.def.in U xenocara/lib/mesa/src/mapi/es1api/meson.build U xenocara/lib/mesa/src/mapi/es2api/gles2-symbols.txt U xenocara/lib/mesa/src/mapi/es2api/gles2.def.in U xenocara/lib/mesa/src/mapi/es2api/meson.build U xenocara/lib/mesa/src/mapi/glapi/glapi.c U xenocara/lib/mesa/src/mapi/glapi/glapi.h U xenocara/lib/mesa/src/mapi/glapi/glapi_dispatch.c U xenocara/lib/mesa/src/mapi/glapi/glapi_entrypoint.c U xenocara/lib/mesa/src/mapi/glapi/glapi_getproc.c U xenocara/lib/mesa/src/mapi/glapi/glapi_nop.c U xenocara/lib/mesa/src/mapi/glapi/glapi_priv.h U xenocara/lib/mesa/src/mapi/glapi/meson.build U xenocara/lib/mesa/src/mapi/glapi/gen/AMD_depth_clamp_separate.xml U xenocara/lib/mesa/src/mapi/glapi/gen/AMD_draw_buffers_blend.xml U xenocara/lib/mesa/src/mapi/glapi/gen/AMD_gpu_shader_int64.xml U xenocara/lib/mesa/src/mapi/glapi/gen/AMD_performance_monitor.xml U xenocara/lib/mesa/src/mapi/glapi/gen/APPLE_object_purgeable.xml U xenocara/lib/mesa/src/mapi/glapi/gen/APPLE_vertex_array_object.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_ES2_compatibility.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_ES3_compatibility.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_base_instance.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_bindless_texture.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_blend_func_extended.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_clear_buffer_object.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_clear_texture.xml U xenocara/lib/mesa/src/mapi/glapi/gen/GL3x.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_clip_control.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_color_buffer_float.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_compressed_texture_pixel_storage.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_compute_shader.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_compute_variable_group_size.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_copy_buffer.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_copy_image.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_debug_output.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_depth_buffer_float.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_depth_clamp.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_direct_state_access.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_buffers.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_buffers_blend.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_indirect.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_elements_base_vertex.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_instanced.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_framebuffer_no_attachments.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_framebuffer_object.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_get_program_binary.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_get_texture_sub_image.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_gl_spirv.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_gpu_shader5.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_gpu_shader_fp64.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_gpu_shader_int64.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_indirect_parameters.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_instanced_arrays.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_internalformat_query.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_internalformat_query2.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_invalidate_subdata.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_map_buffer_range.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_multi_bind.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_pipeline_statistics_query.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_program_interface_query.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_robustness.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sample_shading.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sampler_objects.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_seamless_cube_map.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_separate_shader_objects.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_atomic_counters.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_image_load_store.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_storage_buffer_object.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sparse_buffer.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_subroutine.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shading_language_include.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sparse_texture.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_spirv_extensions.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sync.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_tessellation_shader.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_barrier.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_buffer_object.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_buffer_range.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_compression_rgtc.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_cube_map_array.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_float.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_gather.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_multisample.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_rg.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_rgb10_a2ui.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_storage.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_storage_multisample.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_view.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_uniform_buffer_object.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_array_object.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_attrib_64bit.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_attrib_binding.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_type_2_10_10_10_rev.xml U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_viewport_array.xml U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_EGL_image_storage.xml U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_direct_state_access.xml U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_draw_buffers2.xml U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_external_objects.xml U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_external_objects_fd.xml U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_external_objects_win32.xml U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_framebuffer_object.xml U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_gpu_shader4.xml U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_multisampled_render_to_texture.xml U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_packed_depth_stencil.xml U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_provoking_vertex.xml U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_separate_shader_objects.xml U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_shader_image_load_store.xml U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_texture_array.xml U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_texture_integer.xml U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_transform_feedback.xml U xenocara/lib/mesa/src/mapi/glapi/gen/GL4x.xml U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_vertex_attrib_64bit.xml U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_window_rectangles.xml U xenocara/lib/mesa/src/mapi/glapi/gen/GREMEDY_string_marker.xml U xenocara/lib/mesa/src/mapi/glapi/gen/INTEL_performance_query.xml U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_context_flush_control.xml U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_debug.xml U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_robustness.xml U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_robustness_es.xml U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_texture_compression_astc.xml U xenocara/lib/mesa/src/mapi/glapi/gen/MESA_tile_raster_order.xml U xenocara/lib/mesa/src/mapi/glapi/gen/NV_alpha_to_coverage_dither_control.xml U xenocara/lib/mesa/src/mapi/glapi/gen/NV_conditional_render.xml U xenocara/lib/mesa/src/mapi/glapi/gen/NV_copy_image.xml U xenocara/lib/mesa/src/mapi/glapi/gen/NV_half_float.xml U xenocara/lib/mesa/src/mapi/glapi/gen/api_save_h.py U xenocara/lib/mesa/src/mapi/glapi/gen/NV_primitive_restart.xml U xenocara/lib/mesa/src/mapi/glapi/gen/NV_texture_barrier.xml U xenocara/lib/mesa/src/mapi/glapi/gen/NV_vdpau_interop.xml U xenocara/lib/mesa/src/mapi/glapi/gen/NV_viewport_swizzle.xml U xenocara/lib/mesa/src/mapi/glapi/gen/OES_EGL_image.xml U xenocara/lib/mesa/src/mapi/glapi/gen/OES_fixed_point.xml U xenocara/lib/mesa/src/mapi/glapi/gen/OES_single_precision.xml U xenocara/lib/mesa/src/mapi/glapi/gen/OES_texture_compression_astc.xml U xenocara/lib/mesa/src/mapi/glapi/gen/api_beginend_init_h.py U xenocara/lib/mesa/src/mapi/glapi/gen/api_exec_decl_h.py U xenocara/lib/mesa/src/mapi/glapi/gen/api_exec_init.py U xenocara/lib/mesa/src/mapi/glapi/gen/api_hw_select_init_h.py U xenocara/lib/mesa/src/mapi/glapi/gen/api_save_init_h.py U xenocara/lib/mesa/src/mapi/glapi/gen/apiexec.py U xenocara/lib/mesa/src/mapi/glapi/gen/es_EXT.xml U xenocara/lib/mesa/src/mapi/glapi/gen/glX_API.xml U xenocara/lib/mesa/src/mapi/glapi/gen/glX_XML.py U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_common.py U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_recv.py U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_send.py U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_size.py U xenocara/lib/mesa/src/mapi/glapi/gen/glX_server_table.py U xenocara/lib/mesa/src/mapi/glapi/gen/gl_API.dtd U xenocara/lib/mesa/src/mapi/glapi/gen/gl_API.xml U xenocara/lib/mesa/src/mapi/glapi/gen/gl_SPARC_asm.py U xenocara/lib/mesa/src/mapi/glapi/gen/gl_XML.py U xenocara/lib/mesa/src/mapi/glapi/gen/gl_and_es_API.xml U xenocara/lib/mesa/src/mapi/glapi/gen/gl_and_glX_API.xml U xenocara/lib/mesa/src/mapi/glapi/gen/gl_apitemp.py U xenocara/lib/mesa/src/mapi/glapi/gen/gl_enums.py U xenocara/lib/mesa/src/mapi/glapi/gen/gl_gentable.py U xenocara/lib/mesa/src/mapi/glapi/gen/gl_marshal.py U xenocara/lib/mesa/src/mapi/glapi/gen/gl_marshal_h.py U xenocara/lib/mesa/src/mapi/glapi/gen/gl_procs.py U xenocara/lib/mesa/src/mapi/glapi/gen/gl_table.py U xenocara/lib/mesa/src/mapi/glapi/gen/gl_unmarshal_table.py U xenocara/lib/mesa/src/mapi/glapi/gen/gl_x86-64_asm.py U xenocara/lib/mesa/src/mapi/glapi/gen/gl_x86_asm.py U xenocara/lib/mesa/src/mapi/glapi/gen/license.py U xenocara/lib/mesa/src/mapi/glapi/gen/marshal_XML.py U xenocara/lib/mesa/src/mapi/glapi/gen/meson.build U xenocara/lib/mesa/src/mapi/glapi/gen/remap_helper.py U xenocara/lib/mesa/src/mapi/glapi/gen/static_data.py U xenocara/lib/mesa/src/mapi/glapi/gen/typeexpr.py U xenocara/lib/mesa/src/mapi/glapi/registry/gl.xml U xenocara/lib/mesa/src/mapi/glapi/tests/check_table.cpp U xenocara/lib/mesa/src/mapi/new/genCommon.py U xenocara/lib/mesa/src/mapi/new/gen_gldispatch_mapi.py U xenocara/lib/mesa/src/mapi/shared-glapi/glapi-symbols.txt U xenocara/lib/mesa/src/mapi/shared-glapi/meson.build U xenocara/lib/mesa/src/mapi/shared-glapi/tests/check_table.cpp U xenocara/lib/mesa/src/mesa/meson.build U xenocara/lib/mesa/src/mesa/main/accum.c U xenocara/lib/mesa/src/mesa/main/accum.h U xenocara/lib/mesa/src/mesa/main/api_arrayelt.c U xenocara/lib/mesa/src/mesa/main/api_arrayelt.h U xenocara/lib/mesa/src/mesa/main/arbprogram.c U xenocara/lib/mesa/src/mesa/main/arrayobj.c U xenocara/lib/mesa/src/mesa/main/arrayobj.h U xenocara/lib/mesa/src/mesa/main/atifragshader.c U xenocara/lib/mesa/src/mesa/main/atifragshader.h U xenocara/lib/mesa/src/mesa/main/attrib.c U xenocara/lib/mesa/src/mesa/main/attrib.h U xenocara/lib/mesa/src/mesa/main/barrier.c U xenocara/lib/mesa/src/mesa/main/bbox.c U xenocara/lib/mesa/src/mesa/main/bbox.h U xenocara/lib/mesa/src/mesa/main/blend.c U xenocara/lib/mesa/src/mesa/main/blend.h U xenocara/lib/mesa/src/mesa/main/blit.c U xenocara/lib/mesa/src/mesa/main/blit.h U xenocara/lib/mesa/src/mesa/main/bufferobj.c U xenocara/lib/mesa/src/mesa/main/bufferobj.h U xenocara/lib/mesa/src/mesa/main/buffers.c U xenocara/lib/mesa/src/mesa/main/buffers.h U xenocara/lib/mesa/src/mesa/main/clear.c U xenocara/lib/mesa/src/mesa/main/clip.c U xenocara/lib/mesa/src/mesa/main/clip.h U xenocara/lib/mesa/src/mesa/main/colormac.h U xenocara/lib/mesa/src/mesa/main/compute.c U xenocara/lib/mesa/src/mesa/main/condrender.c U xenocara/lib/mesa/src/mesa/main/condrender.h U xenocara/lib/mesa/src/mesa/main/config.h U xenocara/lib/mesa/src/mesa/main/conservativeraster.c U xenocara/lib/mesa/src/mesa/main/conservativeraster.h U xenocara/lib/mesa/src/mesa/main/consts_exts.h U xenocara/lib/mesa/src/mesa/main/context.c U xenocara/lib/mesa/src/mesa/main/context.h U xenocara/lib/mesa/src/mesa/main/copyimage.c U xenocara/lib/mesa/src/mesa/main/cpuinfo.c U xenocara/lib/mesa/src/mesa/main/cpuinfo.h U xenocara/lib/mesa/src/mesa/main/dd.h U xenocara/lib/mesa/src/mesa/main/debug.c U xenocara/lib/mesa/src/mesa/main/debug.h U xenocara/lib/mesa/src/mesa/main/debug_output.c U xenocara/lib/mesa/src/mesa/main/debug_output.h U xenocara/lib/mesa/src/mesa/main/depth.c U xenocara/lib/mesa/src/mesa/main/depth.h U xenocara/lib/mesa/src/mesa/main/dlist.c U xenocara/lib/mesa/src/mesa/main/dlist.h U xenocara/lib/mesa/src/mesa/main/draw.c U xenocara/lib/mesa/src/mesa/main/draw.h U xenocara/lib/mesa/src/mesa/main/draw_validate.c U xenocara/lib/mesa/src/mesa/main/draw_validate.h U xenocara/lib/mesa/src/mesa/main/drawpix.c U xenocara/lib/mesa/src/mesa/main/drawtex.c U xenocara/lib/mesa/src/mesa/main/enable.c U xenocara/lib/mesa/src/mesa/main/enable.h U xenocara/lib/mesa/src/mesa/main/enums.h U xenocara/lib/mesa/src/mesa/main/errors.c U xenocara/lib/mesa/src/mesa/main/errors.h U xenocara/lib/mesa/src/mesa/main/es1_conversion.c U xenocara/lib/mesa/src/mesa/main/eval.c U xenocara/lib/mesa/src/mesa/main/eval.h U xenocara/lib/mesa/src/mesa/main/extensions.c U xenocara/lib/mesa/src/mesa/main/extensions.h U xenocara/lib/mesa/src/mesa/main/extensions_table.c U xenocara/lib/mesa/src/mesa/main/extensions_table.h U xenocara/lib/mesa/src/mesa/main/externalobjects.c U xenocara/lib/mesa/src/mesa/main/externalobjects.h U xenocara/lib/mesa/src/mesa/main/fbobject.c U xenocara/lib/mesa/src/mesa/main/fbobject.h U xenocara/lib/mesa/src/mesa/main/feedback.c U xenocara/lib/mesa/src/mesa/main/feedback.h U xenocara/lib/mesa/src/mesa/main/ff_fragment_shader.cpp U xenocara/lib/mesa/src/mesa/main/fog.c U xenocara/lib/mesa/src/mesa/main/ffvertex_prog.c U xenocara/lib/mesa/src/mesa/main/ffvertex_prog.h U xenocara/lib/mesa/src/mesa/main/fog.h U xenocara/lib/mesa/src/mesa/main/format_fallback.py U xenocara/lib/mesa/src/mesa/main/format_info.py U xenocara/lib/mesa/src/mesa/main/format_pack.h U xenocara/lib/mesa/src/mesa/main/format_parser.py U xenocara/lib/mesa/src/mesa/main/format_unpack.h U xenocara/lib/mesa/src/mesa/main/format_utils.c U xenocara/lib/mesa/src/mesa/main/format_utils.h U xenocara/lib/mesa/src/mesa/main/formatquery.c U xenocara/lib/mesa/src/mesa/main/formatquery.h U xenocara/lib/mesa/src/mesa/main/formats.c U xenocara/lib/mesa/src/mesa/main/formats.csv U xenocara/lib/mesa/src/mesa/main/formats.h U xenocara/lib/mesa/src/mesa/main/framebuffer.c U xenocara/lib/mesa/src/mesa/main/framebuffer.h U xenocara/lib/mesa/src/mesa/main/genmipmap.c U xenocara/lib/mesa/src/mesa/main/genmipmap.h C xenocara/lib/mesa/src/mesa/main/get.c U xenocara/lib/mesa/src/mesa/main/get.h U xenocara/lib/mesa/src/mesa/main/get_hash_generator.py C xenocara/lib/mesa/src/mesa/main/get_hash_params.py U xenocara/lib/mesa/src/mesa/main/getstring.c U xenocara/lib/mesa/src/mesa/main/glconfig.h U xenocara/lib/mesa/src/mesa/main/glformats.c U xenocara/lib/mesa/src/mesa/main/glformats.h U xenocara/lib/mesa/src/mesa/main/glheader.h U xenocara/lib/mesa/src/mesa/main/glspirv.c U xenocara/lib/mesa/src/mesa/main/glspirv.h U xenocara/lib/mesa/src/mesa/main/glthread.c U xenocara/lib/mesa/src/mesa/main/glthread.h U xenocara/lib/mesa/src/mesa/main/glthread_bufferobj.c U xenocara/lib/mesa/src/mesa/main/glthread_draw.c U xenocara/lib/mesa/src/mesa/main/glthread_get.c U xenocara/lib/mesa/src/mesa/main/glthread_list.c U xenocara/lib/mesa/src/mesa/main/glthread_marshal.h U xenocara/lib/mesa/src/mesa/main/glthread_shaderobj.c U xenocara/lib/mesa/src/mesa/main/glthread_varray.c U xenocara/lib/mesa/src/mesa/main/hash.c U xenocara/lib/mesa/src/mesa/main/hash.h U xenocara/lib/mesa/src/mesa/main/hint.c U xenocara/lib/mesa/src/mesa/main/hint.h U xenocara/lib/mesa/src/mesa/main/image.c U xenocara/lib/mesa/src/mesa/main/image.h U xenocara/lib/mesa/src/mesa/main/light.c U xenocara/lib/mesa/src/mesa/main/light.h U xenocara/lib/mesa/src/mesa/main/lines.c U xenocara/lib/mesa/src/mesa/main/lines.h U xenocara/lib/mesa/src/mesa/main/macros.h U xenocara/lib/mesa/src/mesa/main/matrix.c U xenocara/lib/mesa/src/mesa/main/matrix.h U xenocara/lib/mesa/src/mesa/main/menums.h U xenocara/lib/mesa/src/mesa/main/mesa_private.h U xenocara/lib/mesa/src/mesa/main/meson.build U xenocara/lib/mesa/src/mesa/main/mipmap.c U xenocara/lib/mesa/src/mesa/main/mipmap.h U xenocara/lib/mesa/src/mesa/main/mtypes.h U xenocara/lib/mesa/src/mesa/main/multisample.c U xenocara/lib/mesa/src/mesa/main/multisample.h U xenocara/lib/mesa/src/mesa/main/objectlabel.c U xenocara/lib/mesa/src/mesa/main/pack.c U xenocara/lib/mesa/src/mesa/main/pack.h U xenocara/lib/mesa/src/mesa/main/pbo.c U xenocara/lib/mesa/src/mesa/main/pbo.h U xenocara/lib/mesa/src/mesa/main/performance_monitor.c U xenocara/lib/mesa/src/mesa/main/performance_monitor.h U xenocara/lib/mesa/src/mesa/main/performance_query.c U xenocara/lib/mesa/src/mesa/main/performance_query.h U xenocara/lib/mesa/src/mesa/main/pipelineobj.c U xenocara/lib/mesa/src/mesa/main/pipelineobj.h U xenocara/lib/mesa/src/mesa/main/pixel.c U xenocara/lib/mesa/src/mesa/main/pixel.h U xenocara/lib/mesa/src/mesa/main/pixelstore.c U xenocara/lib/mesa/src/mesa/main/pixelstore.h U xenocara/lib/mesa/src/mesa/main/pixeltransfer.c U xenocara/lib/mesa/src/mesa/main/pixeltransfer.h U xenocara/lib/mesa/src/mesa/main/points.c U xenocara/lib/mesa/src/mesa/main/points.h U xenocara/lib/mesa/src/mesa/main/polygon.c U xenocara/lib/mesa/src/mesa/main/polygon.h U xenocara/lib/mesa/src/mesa/main/program_binary.c U xenocara/lib/mesa/src/mesa/main/program_binary.h U xenocara/lib/mesa/src/mesa/main/program_resource.c U xenocara/lib/mesa/src/mesa/main/querymatrix.c U xenocara/lib/mesa/src/mesa/main/queryobj.c U xenocara/lib/mesa/src/mesa/main/queryobj.h U xenocara/lib/mesa/src/mesa/main/rastpos.c U xenocara/lib/mesa/src/mesa/main/rastpos.h U xenocara/lib/mesa/src/mesa/main/readpix.c U xenocara/lib/mesa/src/mesa/main/readpix.h U xenocara/lib/mesa/src/mesa/main/remap.c U xenocara/lib/mesa/src/mesa/main/remap.h U xenocara/lib/mesa/src/mesa/main/scissor.c U xenocara/lib/mesa/src/mesa/main/renderbuffer.c U xenocara/lib/mesa/src/mesa/main/renderbuffer.h U xenocara/lib/mesa/src/mesa/main/robustness.c U xenocara/lib/mesa/src/mesa/main/samplerobj.c U xenocara/lib/mesa/src/mesa/main/samplerobj.h U xenocara/lib/mesa/src/mesa/main/scissor.h U xenocara/lib/mesa/src/mesa/main/shader_query.cpp U xenocara/lib/mesa/src/mesa/main/shader_types.h U xenocara/lib/mesa/src/mesa/main/shaderapi.c U xenocara/lib/mesa/src/mesa/main/shaderapi.h U xenocara/lib/mesa/src/mesa/main/shaderimage.c U xenocara/lib/mesa/src/mesa/main/shaderimage.h U xenocara/lib/mesa/src/mesa/main/shaderobj.c U xenocara/lib/mesa/src/mesa/main/shaderobj.h U xenocara/lib/mesa/src/mesa/main/shared.c U xenocara/lib/mesa/src/mesa/main/shared.h U xenocara/lib/mesa/src/mesa/main/spirv_extensions.c U xenocara/lib/mesa/src/mesa/main/spirv_extensions.h U xenocara/lib/mesa/src/mesa/main/sse_minmax.c U xenocara/lib/mesa/src/mesa/main/sse_minmax.h U xenocara/lib/mesa/src/mesa/main/state.c U xenocara/lib/mesa/src/mesa/main/state.h U xenocara/lib/mesa/src/mesa/main/vdpau.c U xenocara/lib/mesa/src/mesa/main/stencil.c U xenocara/lib/mesa/src/mesa/main/stencil.h U xenocara/lib/mesa/src/mesa/main/syncobj.c U xenocara/lib/mesa/src/mesa/main/syncobj.h U xenocara/lib/mesa/src/mesa/main/texcompress.c U xenocara/lib/mesa/src/mesa/main/texcompress.h U xenocara/lib/mesa/src/mesa/main/texcompress_astc.cpp U xenocara/lib/mesa/src/mesa/main/texcompress_astc.h U xenocara/lib/mesa/src/mesa/main/texcompress_bptc.c U xenocara/lib/mesa/src/mesa/main/texcompress_bptc.h U xenocara/lib/mesa/src/mesa/main/texcompress_bptc_tmp.h U xenocara/lib/mesa/src/mesa/main/texcompress_cpal.c U xenocara/lib/mesa/src/mesa/main/texcompress_cpal.h U xenocara/lib/mesa/src/mesa/main/texcompress_etc.c U xenocara/lib/mesa/src/mesa/main/texcompress_etc.h U xenocara/lib/mesa/src/mesa/main/texcompress_etc_tmp.h U xenocara/lib/mesa/src/mesa/main/texcompress_fxt1.c U xenocara/lib/mesa/src/mesa/main/texcompress_fxt1.h U xenocara/lib/mesa/src/mesa/main/texcompress_rgtc.c U xenocara/lib/mesa/src/mesa/main/texcompress_rgtc.h U xenocara/lib/mesa/src/mesa/main/texcompress_s3tc.c U xenocara/lib/mesa/src/mesa/main/texcompress_s3tc.h U xenocara/lib/mesa/src/mesa/main/texcompress_s3tc_tmp.h U xenocara/lib/mesa/src/mesa/main/texenv.c U xenocara/lib/mesa/src/mesa/main/texenvprogram.h U xenocara/lib/mesa/src/mesa/main/texgen.c U xenocara/lib/mesa/src/mesa/main/texgetimage.c U xenocara/lib/mesa/src/mesa/main/texgetimage.h U xenocara/lib/mesa/src/mesa/main/teximage.c U xenocara/lib/mesa/src/mesa/main/teximage.h U xenocara/lib/mesa/src/mesa/main/texobj.c U xenocara/lib/mesa/src/mesa/main/texobj.h U xenocara/lib/mesa/src/mesa/main/texparam.c U xenocara/lib/mesa/src/mesa/main/texparam.h U xenocara/lib/mesa/src/mesa/main/texstate.c U xenocara/lib/mesa/src/mesa/main/texstate.h U xenocara/lib/mesa/src/mesa/main/texstorage.c U xenocara/lib/mesa/src/mesa/main/texstorage.h U xenocara/lib/mesa/src/mesa/main/texstore.c U xenocara/lib/mesa/src/mesa/main/texstore.h U xenocara/lib/mesa/src/mesa/main/texturebindless.c U xenocara/lib/mesa/src/mesa/main/texturebindless.h U xenocara/lib/mesa/src/mesa/main/textureview.c U xenocara/lib/mesa/src/mesa/main/textureview.h U xenocara/lib/mesa/src/mesa/main/transformfeedback.c U xenocara/lib/mesa/src/mesa/main/transformfeedback.h U xenocara/lib/mesa/src/mesa/main/uniform_query.cpp U xenocara/lib/mesa/src/mesa/main/uniforms.c U xenocara/lib/mesa/src/mesa/main/uniforms.h U xenocara/lib/mesa/src/mesa/main/varray.c U xenocara/lib/mesa/src/mesa/main/varray.h U xenocara/lib/mesa/src/mesa/main/version.c U xenocara/lib/mesa/src/mesa/main/version.h U xenocara/lib/mesa/src/mesa/main/viewport.c U xenocara/lib/mesa/src/mesa/main/viewport.h U xenocara/lib/mesa/src/mesa/main/tests/enum_strings.cpp U xenocara/lib/mesa/src/mesa/main/tests/mesa_extensions.cpp U xenocara/lib/mesa/src/mesa/main/tests/mesa_formats.cpp U xenocara/lib/mesa/src/mesa/main/tests/meson.build U xenocara/lib/mesa/src/mesa/main/tests/program_state_string.cpp U xenocara/lib/mesa/src/mesa/main/tests/stubs.cpp U xenocara/lib/mesa/src/mesa/math/m_debug.h U xenocara/lib/mesa/src/mesa/math/m_debug_clip.c U xenocara/lib/mesa/src/mesa/math/m_debug_norm.c U xenocara/lib/mesa/src/mesa/math/m_debug_util.h U xenocara/lib/mesa/src/mesa/math/m_debug_xform.c U xenocara/lib/mesa/src/mesa/math/m_eval.c U xenocara/lib/mesa/src/mesa/math/m_eval.h U xenocara/lib/mesa/src/mesa/math/m_matrix.c U xenocara/lib/mesa/src/mesa/math/m_matrix.h U xenocara/lib/mesa/src/mesa/math/m_vector.c U xenocara/lib/mesa/src/mesa/math/m_vector.h U xenocara/lib/mesa/src/mesa/math/m_vector_asm.h U xenocara/lib/mesa/src/mesa/math/m_xform.h U xenocara/lib/mesa/src/mesa/program/arbprogparse.c U xenocara/lib/mesa/src/mesa/program/arbprogparse.h U xenocara/lib/mesa/src/mesa/program/dummy_errors.c U xenocara/lib/mesa/src/mesa/program/link_program.cpp U xenocara/lib/mesa/src/mesa/program/link_program.h U xenocara/lib/mesa/src/mesa/program/meson.build U xenocara/lib/mesa/src/mesa/program/prog_cache.c U xenocara/lib/mesa/src/mesa/program/prog_cache.h U xenocara/lib/mesa/src/mesa/program/prog_instruction.c U xenocara/lib/mesa/src/mesa/program/prog_instruction.h U xenocara/lib/mesa/src/mesa/program/prog_parameter.c U xenocara/lib/mesa/src/mesa/program/prog_parameter.h U xenocara/lib/mesa/src/mesa/program/prog_parameter_layout.c U xenocara/lib/mesa/src/mesa/program/prog_parameter_layout.h U xenocara/lib/mesa/src/mesa/program/prog_print.c U xenocara/lib/mesa/src/mesa/program/prog_print.h U xenocara/lib/mesa/src/mesa/program/prog_statevars.c U xenocara/lib/mesa/src/mesa/program/prog_statevars.h U xenocara/lib/mesa/src/mesa/program/prog_to_nir.c U xenocara/lib/mesa/src/mesa/program/prog_to_nir.h U xenocara/lib/mesa/src/mesa/program/program.c U xenocara/lib/mesa/src/mesa/program/program.h U xenocara/lib/mesa/src/mesa/program/program_lexer.l U xenocara/lib/mesa/src/mesa/program/program_parse.y U xenocara/lib/mesa/src/mesa/program/program_parse_extra.c U xenocara/lib/mesa/src/mesa/program/program_parser.h U xenocara/lib/mesa/src/mesa/program/programopt.c U xenocara/lib/mesa/src/mesa/program/programopt.h U xenocara/lib/mesa/src/mesa/program/symbol_table.c U xenocara/lib/mesa/src/mesa/program/symbol_table.h U xenocara/lib/mesa/src/mesa/state_tracker/st_atifs_to_nir.c U xenocara/lib/mesa/src/mesa/state_tracker/st_atifs_to_nir.h U xenocara/lib/mesa/src/mesa/state_tracker/st_atom.c U xenocara/lib/mesa/src/mesa/state_tracker/st_atom.h U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_array.cpp U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_atomicbuf.c U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_blend.c U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_clip.c U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_constbuf.c U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_constbuf.h U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_depth.c U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_framebuffer.c U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_image.c U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_list.h U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_msaa.c U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_pixeltransfer.c U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_rasterizer.c U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_sampler.c U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_scissor.c U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_shader.c U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_stipple.c U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_storagebuf.c U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_tess.c U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_texture.c U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_viewport.c U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_bitmap.c U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_bitmap.h U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_clear.c U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_clear.h U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_copyimage.c U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_copyimage.h U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawpixels.c U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawpixels.h U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawtex.c U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawtex.h U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_eglimage.c U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_eglimage.h U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_feedback.c U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_feedback.h U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_flush.c U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_flush.h U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_rasterpos.c U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_rasterpos.h U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_readpixels.c U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_readpixels.h U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texture.c U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texture.h C xenocara/lib/mesa/src/mesa/state_tracker/st_context.c U xenocara/lib/mesa/src/mesa/state_tracker/st_context.h U xenocara/lib/mesa/src/mesa/state_tracker/st_copytex.c U xenocara/lib/mesa/src/mesa/state_tracker/st_copytex.h U xenocara/lib/mesa/src/mesa/state_tracker/st_debug.c U xenocara/lib/mesa/src/mesa/state_tracker/st_debug.h U xenocara/lib/mesa/src/mesa/state_tracker/st_draw.c U xenocara/lib/mesa/src/mesa/state_tracker/st_draw.h U xenocara/lib/mesa/src/mesa/state_tracker/st_draw_feedback.c U xenocara/lib/mesa/src/mesa/state_tracker/st_draw_hw_select.c C xenocara/lib/mesa/src/mesa/state_tracker/st_extensions.c U xenocara/lib/mesa/src/mesa/state_tracker/st_extensions.h U xenocara/lib/mesa/src/mesa/state_tracker/st_format.c U xenocara/lib/mesa/src/mesa/state_tracker/st_format.h U xenocara/lib/mesa/src/mesa/state_tracker/st_gen_mipmap.c U xenocara/lib/mesa/src/mesa/state_tracker/st_gen_mipmap.h U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_ir.cpp U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_ir.h U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_nir.cpp U xenocara/lib/mesa/src/mesa/state_tracker/st_interop.c U xenocara/lib/mesa/src/mesa/state_tracker/st_interop.h C xenocara/lib/mesa/src/mesa/state_tracker/st_manager.c U xenocara/lib/mesa/src/mesa/state_tracker/st_manager.h U xenocara/lib/mesa/src/mesa/state_tracker/st_nir.h U xenocara/lib/mesa/src/mesa/state_tracker/st_nir_builtins.c U xenocara/lib/mesa/src/mesa/state_tracker/st_nir_lower_builtin.c U xenocara/lib/mesa/src/mesa/state_tracker/st_nir_lower_tex_src_plane.c U xenocara/lib/mesa/src/mesa/state_tracker/st_pbo.c U xenocara/lib/mesa/src/mesa/state_tracker/st_pbo.h U xenocara/lib/mesa/src/mesa/state_tracker/st_pbo_compute.c U xenocara/lib/mesa/src/mesa/state_tracker/st_program.c U xenocara/lib/mesa/src/mesa/state_tracker/st_program.h U xenocara/lib/mesa/src/mesa/state_tracker/st_sampler_view.c U xenocara/lib/mesa/src/mesa/state_tracker/st_sampler_view.h U xenocara/lib/mesa/src/mesa/state_tracker/st_scissor.c U xenocara/lib/mesa/src/mesa/state_tracker/st_scissor.h U xenocara/lib/mesa/src/mesa/state_tracker/st_shader_cache.c U xenocara/lib/mesa/src/mesa/state_tracker/st_shader_cache.h U xenocara/lib/mesa/src/mesa/state_tracker/st_texture.c U xenocara/lib/mesa/src/mesa/state_tracker/st_texture.h U xenocara/lib/mesa/src/mesa/state_tracker/st_util.h U xenocara/lib/mesa/src/mesa/state_tracker/st_vdpau.c U xenocara/lib/mesa/src/mesa/state_tracker/st_vdpau.h U xenocara/lib/mesa/src/mesa/state_tracker/tests/meson.build U xenocara/lib/mesa/src/mesa/state_tracker/tests/st_format.c U xenocara/lib/mesa/src/mesa/vbo/vbo.h U xenocara/lib/mesa/src/mesa/vbo/vbo_attrib.h U xenocara/lib/mesa/src/mesa/vbo/vbo_attrib_tmp.h U xenocara/lib/mesa/src/mesa/vbo/vbo_context.c U xenocara/lib/mesa/src/mesa/vbo/vbo_exec.c U xenocara/lib/mesa/src/mesa/vbo/vbo_exec.h U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_api.c U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_draw.c U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_eval.c U xenocara/lib/mesa/src/mesa/vbo/vbo_minmax_index.c U xenocara/lib/mesa/src/mesa/vbo/vbo_noop.c U xenocara/lib/mesa/src/mesa/vbo/vbo_private.h U xenocara/lib/mesa/src/mesa/vbo/vbo_save.c U xenocara/lib/mesa/src/mesa/vbo/vbo_save.h U xenocara/lib/mesa/src/mesa/vbo/vbo_save_api.c U xenocara/lib/mesa/src/mesa/vbo/vbo_save_draw.c U xenocara/lib/mesa/src/mesa/vbo/vbo_save_loopback.c U xenocara/lib/mesa/src/mesa/vbo/vbo_util.h U xenocara/lib/mesa/src/mesa/x86/assyntax.h U xenocara/lib/mesa/src/mesa/x86/common_x86.c U xenocara/lib/mesa/src/mesa/x86/common_x86_asm.S U xenocara/lib/mesa/src/mesa/x86/common_x86_asm.h U xenocara/lib/mesa/src/mesa/x86/common_x86_features.h U xenocara/lib/mesa/src/mesa/x86/read_rgba_span_x86.S U xenocara/lib/mesa/src/microsoft/meson.build U xenocara/lib/mesa/src/microsoft/ci/deqp-dozen.toml U xenocara/lib/mesa/src/microsoft/ci/gitlab-ci.yml U xenocara/lib/mesa/src/microsoft/ci/spirv2dxil_reference.txt U xenocara/lib/mesa/src/microsoft/ci/warp-fails.txt U xenocara/lib/mesa/src/microsoft/ci/warp-flakes.txt U xenocara/lib/mesa/src/microsoft/ci/warp-skips.txt U xenocara/lib/mesa/src/microsoft/clc/clc_compiler.c U xenocara/lib/mesa/src/microsoft/clc/clc_compiler.h U xenocara/lib/mesa/src/microsoft/clc/clc_compiler_test.cpp U xenocara/lib/mesa/src/microsoft/clc/clc_nir.c U xenocara/lib/mesa/src/microsoft/clc/clc_nir.h U xenocara/lib/mesa/src/microsoft/clc/clon12compiler.def U xenocara/lib/mesa/src/microsoft/clc/compute_test.cpp U xenocara/lib/mesa/src/microsoft/clc/compute_test.h U xenocara/lib/mesa/src/microsoft/clc/meson.build U xenocara/lib/mesa/src/microsoft/compiler/dxcapi.h U xenocara/lib/mesa/src/microsoft/compiler/dxil_buffer.c U xenocara/lib/mesa/src/microsoft/compiler/dxil_buffer.h U xenocara/lib/mesa/src/microsoft/compiler/dxil_buffer_test.c U xenocara/lib/mesa/src/microsoft/compiler/dxil_container.c U xenocara/lib/mesa/src/microsoft/compiler/dxil_container.h U xenocara/lib/mesa/src/microsoft/compiler/dxil_dump.c U xenocara/lib/mesa/src/microsoft/compiler/dxil_dump.h U xenocara/lib/mesa/src/microsoft/compiler/dxil_dump_decls.h U xenocara/lib/mesa/src/microsoft/compiler/dxil_enums.c U xenocara/lib/mesa/src/microsoft/compiler/dxil_enums.h U xenocara/lib/mesa/src/microsoft/compiler/dxil_function.c U xenocara/lib/mesa/src/microsoft/compiler/dxil_function.h U xenocara/lib/mesa/src/microsoft/compiler/dxil_internal.h U xenocara/lib/mesa/src/microsoft/compiler/dxil_module.c U xenocara/lib/mesa/src/microsoft/compiler/dxil_module.h U xenocara/lib/mesa/src/microsoft/compiler/dxil_nir.c U xenocara/lib/mesa/src/microsoft/compiler/dxil_nir.h U xenocara/lib/mesa/src/microsoft/compiler/dxil_nir_algebraic.py U xenocara/lib/mesa/src/microsoft/compiler/dxil_nir_tess.c U xenocara/lib/mesa/src/microsoft/compiler/dxil_nir_lower_int_cubemaps.c U xenocara/lib/mesa/src/microsoft/compiler/dxil_nir_lower_int_cubemaps.h U xenocara/lib/mesa/src/microsoft/compiler/dxil_nir_lower_int_samplers.c U xenocara/lib/mesa/src/microsoft/compiler/dxil_nir_lower_int_samplers.h U xenocara/lib/mesa/src/microsoft/compiler/dxil_nir_lower_vs_vertex_conversion.c U xenocara/lib/mesa/src/microsoft/compiler/dxil_signature.c U xenocara/lib/mesa/src/microsoft/compiler/dxil_signature.h U xenocara/lib/mesa/src/microsoft/compiler/dxil_validator.cpp U xenocara/lib/mesa/src/microsoft/compiler/dxil_validator.h U xenocara/lib/mesa/src/microsoft/compiler/dxil_versions.h U xenocara/lib/mesa/src/microsoft/compiler/meson.build U xenocara/lib/mesa/src/microsoft/compiler/nir_to_dxil.c U xenocara/lib/mesa/src/microsoft/compiler/nir_to_dxil.h U xenocara/lib/mesa/src/microsoft/spirv_to_dxil/dxil_spirv_nir.c U xenocara/lib/mesa/src/microsoft/spirv_to_dxil/dxil_spirv_nir.h U xenocara/lib/mesa/src/microsoft/spirv_to_dxil/dxil_validation.cpp U xenocara/lib/mesa/src/microsoft/spirv_to_dxil/dxil_validation.h U xenocara/lib/mesa/src/microsoft/spirv_to_dxil/meson.build U xenocara/lib/mesa/src/microsoft/spirv_to_dxil/spirv2dxil.c U xenocara/lib/mesa/src/microsoft/spirv_to_dxil/spirv_to_dxil.c U xenocara/lib/mesa/src/microsoft/spirv_to_dxil/spirv_to_dxil.def U xenocara/lib/mesa/src/microsoft/spirv_to_dxil/spirv_to_dxil.h U xenocara/lib/mesa/src/microsoft/vulkan/dzn_abi_helper.h U xenocara/lib/mesa/src/microsoft/vulkan/dzn_cmd_buffer.c U xenocara/lib/mesa/src/microsoft/vulkan/dzn_descriptor_set.c U xenocara/lib/mesa/src/microsoft/vulkan/dzn_device.c U xenocara/lib/mesa/src/microsoft/vulkan/dzn_dxcore.cpp U xenocara/lib/mesa/src/microsoft/vulkan/dzn_dxgi.c U xenocara/lib/mesa/src/microsoft/vulkan/dzn_dxgi.h U xenocara/lib/mesa/src/microsoft/vulkan/dzn_image.c U xenocara/lib/mesa/src/microsoft/vulkan/dzn_meta.c U xenocara/lib/mesa/src/microsoft/vulkan/dzn_nir.c U xenocara/lib/mesa/src/microsoft/vulkan/dzn_nir.h U xenocara/lib/mesa/src/microsoft/vulkan/dzn_physical_device_enum.h U xenocara/lib/mesa/src/microsoft/vulkan/dzn_pipeline.c U xenocara/lib/mesa/src/microsoft/vulkan/dzn_private.h U xenocara/lib/mesa/src/microsoft/vulkan/dzn_query.c U xenocara/lib/mesa/src/microsoft/vulkan/dzn_sync.c U xenocara/lib/mesa/src/microsoft/vulkan/dzn_util.c U xenocara/lib/mesa/src/microsoft/vulkan/dzn_wsi.c U xenocara/lib/mesa/src/microsoft/vulkan/meson.build U xenocara/lib/mesa/src/nouveau/meson.build U xenocara/lib/mesa/src/nouveau/codegen/meson.build U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir.h U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_bb.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_build_util.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_build_util.h U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_driver.h U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_emit_gk110.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_emit_gm107.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_emit_gv100.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_emit_gv100.h U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_emit_nv50.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_emit_nvc0.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_from_common.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_from_common.h U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_from_nir.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_from_tgsi.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_graph.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_graph.h U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_inlines.h U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_lowering_gm107.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_lowering_gm107.h U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_lowering_gv100.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_lowering_gv100.h U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_lowering_helper.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_lowering_helper.h U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_lowering_nv50.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_lowering_nvc0.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_lowering_nvc0.h U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_peephole.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_print.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_ra.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_sched_gm107.h U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_serialize.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_ssa.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_target.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_target.h U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_target_gm107.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_target_gm107.h U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_target_gv100.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_target_gv100.h U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_target_nv50.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_target_nv50.h U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_target_nvc0.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_target_nvc0.h U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_util.cpp U xenocara/lib/mesa/src/nouveau/codegen/nv50_ir_util.h U xenocara/lib/mesa/src/nouveau/codegen/lib/Makefile U xenocara/lib/mesa/src/nouveau/codegen/lib/gf100.asm U xenocara/lib/mesa/src/nouveau/codegen/lib/gf100.asm.h U xenocara/lib/mesa/src/nouveau/codegen/lib/gk104.asm U xenocara/lib/mesa/src/nouveau/codegen/lib/gk104.asm.h U xenocara/lib/mesa/src/nouveau/codegen/lib/gk110.asm U xenocara/lib/mesa/src/nouveau/codegen/lib/gk110.asm.h U xenocara/lib/mesa/src/nouveau/codegen/lib/gm107.asm U xenocara/lib/mesa/src/nouveau/codegen/lib/gm107.asm.h U xenocara/lib/mesa/src/nouveau/drm-shim/README.md U xenocara/lib/mesa/src/nouveau/drm-shim/meson.build U xenocara/lib/mesa/src/nouveau/drm-shim/nouveau_noop.c U xenocara/lib/mesa/src/panfrost/meson.build U xenocara/lib/mesa/src/panfrost/bifrost/ISA.xml U xenocara/lib/mesa/src/panfrost/bifrost/Notes.txt U xenocara/lib/mesa/src/panfrost/bifrost/README.md U xenocara/lib/mesa/src/panfrost/bifrost/bi_builder.h.py U xenocara/lib/mesa/src/panfrost/bifrost/bi_helper_invocations.c U xenocara/lib/mesa/src/panfrost/bifrost/bi_layout.c U xenocara/lib/mesa/src/panfrost/bifrost/bi_liveness.c U xenocara/lib/mesa/src/panfrost/bifrost/bi_lower_divergent_indirects.c U xenocara/lib/mesa/src/panfrost/bifrost/bi_lower_swizzle.c U xenocara/lib/mesa/src/panfrost/bifrost/bi_opcodes.c.py U xenocara/lib/mesa/src/panfrost/bifrost/bi_opcodes.h.py U xenocara/lib/mesa/src/panfrost/bifrost/bi_opt_constant_fold.c U xenocara/lib/mesa/src/panfrost/bifrost/bi_opt_copy_prop.c U xenocara/lib/mesa/src/panfrost/bifrost/bi_opt_cse.c U xenocara/lib/mesa/src/panfrost/bifrost/bi_opt_dce.c U xenocara/lib/mesa/src/panfrost/bifrost/bi_opt_dual_tex.c U xenocara/lib/mesa/src/panfrost/bifrost/bi_opt_message_preload.c U xenocara/lib/mesa/src/panfrost/bifrost/bi_opt_mod_props.c U xenocara/lib/mesa/src/panfrost/bifrost/bi_ra.c U xenocara/lib/mesa/src/panfrost/bifrost/bi_opt_push_ubo.c U xenocara/lib/mesa/src/panfrost/bifrost/bi_pack.c U xenocara/lib/mesa/src/panfrost/bifrost/bi_packer.c.py U xenocara/lib/mesa/src/panfrost/bifrost/bi_pressure_schedule.c U xenocara/lib/mesa/src/panfrost/bifrost/bi_print.c U xenocara/lib/mesa/src/panfrost/bifrost/bi_print_common.c U xenocara/lib/mesa/src/panfrost/bifrost/bi_print_common.h U xenocara/lib/mesa/src/panfrost/bifrost/bi_printer.c.py U xenocara/lib/mesa/src/panfrost/bifrost/bi_quirks.h U xenocara/lib/mesa/src/panfrost/bifrost/bi_schedule.c U xenocara/lib/mesa/src/panfrost/bifrost/bi_scoreboard.c U xenocara/lib/mesa/src/panfrost/bifrost/bi_test.h U xenocara/lib/mesa/src/panfrost/bifrost/bi_validate.c U xenocara/lib/mesa/src/panfrost/bifrost/bifrost.h U xenocara/lib/mesa/src/panfrost/bifrost/bifrost_compile.c U xenocara/lib/mesa/src/panfrost/bifrost/bifrost_compile.h U xenocara/lib/mesa/src/panfrost/bifrost/bifrost_isa.py U xenocara/lib/mesa/src/panfrost/bifrost/bifrost_nir.h U xenocara/lib/mesa/src/panfrost/bifrost/bifrost_nir_algebraic.py U xenocara/lib/mesa/src/panfrost/bifrost/bir.c U xenocara/lib/mesa/src/panfrost/bifrost/cmdline.c U xenocara/lib/mesa/src/panfrost/bifrost/compiler.h U xenocara/lib/mesa/src/panfrost/bifrost/disassemble.c U xenocara/lib/mesa/src/panfrost/bifrost/disassemble.h U xenocara/lib/mesa/src/panfrost/bifrost/gen_disasm.py U xenocara/lib/mesa/src/panfrost/bifrost/meson.build U xenocara/lib/mesa/src/panfrost/bifrost/nodearray.h U xenocara/lib/mesa/src/panfrost/bifrost/test/test-constant-fold.cpp U xenocara/lib/mesa/src/panfrost/bifrost/test/test-dual-texture.cpp U xenocara/lib/mesa/src/panfrost/bifrost/test/test-lower-swizzle.cpp U xenocara/lib/mesa/src/panfrost/bifrost/test/test-message-preload.cpp U xenocara/lib/mesa/src/panfrost/bifrost/test/test-optimizer.cpp U xenocara/lib/mesa/src/panfrost/bifrost/test/test-pack-formats.cpp U xenocara/lib/mesa/src/panfrost/bifrost/test/test-packing.cpp U xenocara/lib/mesa/src/panfrost/bifrost/test/test-scheduler-predicates.cpp U xenocara/lib/mesa/src/panfrost/bifrost/valhall/ISA.xml U xenocara/lib/mesa/src/panfrost/bifrost/valhall/asm.py U xenocara/lib/mesa/src/panfrost/bifrost/valhall/disasm.py U xenocara/lib/mesa/src/panfrost/bifrost/valhall/disassemble.h U xenocara/lib/mesa/src/panfrost/bifrost/valhall/meson.build U xenocara/lib/mesa/src/panfrost/bifrost/valhall/test-assembly.py U xenocara/lib/mesa/src/panfrost/bifrost/valhall/va_compiler.h U xenocara/lib/mesa/src/panfrost/bifrost/valhall/va_insert_flow.c U xenocara/lib/mesa/src/panfrost/bifrost/valhall/va_lower_constants.c U xenocara/lib/mesa/src/panfrost/bifrost/valhall/va_lower_isel.c U xenocara/lib/mesa/src/panfrost/bifrost/valhall/va_lower_split_64bit.c U xenocara/lib/mesa/src/panfrost/bifrost/valhall/va_mark_last.c U xenocara/lib/mesa/src/panfrost/bifrost/valhall/va_merge_flow.c U xenocara/lib/mesa/src/panfrost/bifrost/valhall/va_optimize.c U xenocara/lib/mesa/src/panfrost/bifrost/valhall/va_pack.c U xenocara/lib/mesa/src/panfrost/bifrost/valhall/va_perf.c U xenocara/lib/mesa/src/panfrost/bifrost/valhall/va_validate.c U xenocara/lib/mesa/src/panfrost/bifrost/valhall/valhall.c.py U xenocara/lib/mesa/src/panfrost/bifrost/valhall/valhall.h U xenocara/lib/mesa/src/panfrost/bifrost/valhall/valhall.py U xenocara/lib/mesa/src/panfrost/bifrost/valhall/valhall_enums.h.py U xenocara/lib/mesa/src/panfrost/bifrost/valhall/test/assembler-cases.txt U xenocara/lib/mesa/src/panfrost/bifrost/valhall/test/negative-cases.txt U xenocara/lib/mesa/src/panfrost/bifrost/valhall/test/test-add-imm.cpp U xenocara/lib/mesa/src/panfrost/bifrost/valhall/test/test-disassembler.c U xenocara/lib/mesa/src/panfrost/bifrost/valhall/test/test-insert-flow.cpp U xenocara/lib/mesa/src/panfrost/bifrost/valhall/test/test-lower-constants.cpp U xenocara/lib/mesa/src/panfrost/bifrost/valhall/test/test-lower-isel.cpp U xenocara/lib/mesa/src/panfrost/bifrost/valhall/test/test-mark-last.cpp U xenocara/lib/mesa/src/panfrost/bifrost/valhall/test/test-merge-flow.cpp U xenocara/lib/mesa/src/panfrost/bifrost/valhall/test/test-packing.cpp U xenocara/lib/mesa/src/panfrost/bifrost/valhall/test/test-validate-fau.cpp U xenocara/lib/mesa/src/panfrost/ci/deqp-panfrost-g52-vk.toml U xenocara/lib/mesa/src/panfrost/ci/deqp-panfrost-g52.toml U xenocara/lib/mesa/src/panfrost/ci/deqp-panfrost-g72.toml U xenocara/lib/mesa/src/panfrost/ci/deqp-panfrost-t720.toml U xenocara/lib/mesa/src/panfrost/ci/deqp-panfrost-t760.toml U xenocara/lib/mesa/src/panfrost/ci/deqp-panfrost-t860.toml U xenocara/lib/mesa/src/panfrost/ci/gitlab-ci.yml U xenocara/lib/mesa/src/panfrost/ci/panfrost-g52-fails.txt U xenocara/lib/mesa/src/panfrost/ci/panfrost-g52-flakes.txt U xenocara/lib/mesa/src/panfrost/ci/panfrost-g52-skips.txt U xenocara/lib/mesa/src/panfrost/ci/panfrost-g72-fails.txt U xenocara/lib/mesa/src/panfrost/ci/panfrost-g72-flakes.txt U xenocara/lib/mesa/src/panfrost/ci/panfrost-t720-fails.txt U xenocara/lib/mesa/src/panfrost/ci/panfrost-t720-flakes.txt U xenocara/lib/mesa/src/panfrost/ci/traces-panfrost.yml U xenocara/lib/mesa/src/panfrost/ci/panfrost-t720-skips.txt U xenocara/lib/mesa/src/panfrost/ci/panfrost-t760-fails.txt U xenocara/lib/mesa/src/panfrost/ci/panfrost-t760-flakes.txt U xenocara/lib/mesa/src/panfrost/ci/panfrost-t820-fails.txt U xenocara/lib/mesa/src/panfrost/ci/panfrost-t860-fails.txt U xenocara/lib/mesa/src/panfrost/ci/panfrost-t860-flakes.txt U xenocara/lib/mesa/src/panfrost/ci/panfrost-t860-skips.txt U xenocara/lib/mesa/src/panfrost/drm-shim/meson.build U xenocara/lib/mesa/src/panfrost/drm-shim/panfrost_noop.c U xenocara/lib/mesa/src/panfrost/ds/.clang-format U xenocara/lib/mesa/src/panfrost/ds/meson.build U xenocara/lib/mesa/src/panfrost/ds/pan_pps_driver.cc U xenocara/lib/mesa/src/panfrost/ds/pan_pps_driver.h U xenocara/lib/mesa/src/panfrost/ds/pan_pps_perf.cc U xenocara/lib/mesa/src/panfrost/ds/pan_pps_perf.h U xenocara/lib/mesa/src/panfrost/include/panfrost-job.h U xenocara/lib/mesa/src/panfrost/lib/.gitignore U xenocara/lib/mesa/src/panfrost/lib/meson.build U xenocara/lib/mesa/src/panfrost/lib/pan_afbc.c U xenocara/lib/mesa/src/panfrost/lib/pan_attributes.c U xenocara/lib/mesa/src/panfrost/lib/pan_blend.c U xenocara/lib/mesa/src/panfrost/lib/pan_blend.h U xenocara/lib/mesa/src/panfrost/lib/pan_blitter.c U xenocara/lib/mesa/src/panfrost/lib/pan_blitter.h U xenocara/lib/mesa/src/panfrost/lib/pan_bo.c U xenocara/lib/mesa/src/panfrost/lib/pan_bo.h U xenocara/lib/mesa/src/panfrost/lib/pan_clear.c U xenocara/lib/mesa/src/panfrost/lib/pan_cs.c U xenocara/lib/mesa/src/panfrost/lib/pan_cs.h U xenocara/lib/mesa/src/panfrost/lib/pan_device.h U xenocara/lib/mesa/src/panfrost/lib/pan_earlyzs.c U xenocara/lib/mesa/src/panfrost/lib/pan_earlyzs.h U xenocara/lib/mesa/src/panfrost/lib/pan_encoder.h U xenocara/lib/mesa/src/panfrost/lib/pan_format.c U xenocara/lib/mesa/src/panfrost/lib/pan_format.h U xenocara/lib/mesa/src/panfrost/lib/pan_indirect_dispatch.c U xenocara/lib/mesa/src/panfrost/lib/pan_pool.h U xenocara/lib/mesa/src/panfrost/lib/pan_indirect_dispatch.h U xenocara/lib/mesa/src/panfrost/lib/pan_indirect_draw.c U xenocara/lib/mesa/src/panfrost/lib/pan_indirect_draw.h U xenocara/lib/mesa/src/panfrost/lib/pan_layout.c U xenocara/lib/mesa/src/panfrost/lib/pan_props.c U xenocara/lib/mesa/src/panfrost/lib/pan_samples.c U xenocara/lib/mesa/src/panfrost/lib/pan_scoreboard.h U xenocara/lib/mesa/src/panfrost/lib/pan_scratch.c U xenocara/lib/mesa/src/panfrost/lib/pan_shader.c U xenocara/lib/mesa/src/panfrost/lib/pan_shader.h U xenocara/lib/mesa/src/panfrost/lib/pan_texture.c U xenocara/lib/mesa/src/panfrost/lib/pan_texture.h U xenocara/lib/mesa/src/panfrost/lib/pan_tiler.c U xenocara/lib/mesa/src/panfrost/lib/pan_util.c U xenocara/lib/mesa/src/panfrost/lib/pan_util.h U xenocara/lib/mesa/src/panfrost/lib/wrap.h U xenocara/lib/mesa/src/panfrost/lib/genxml/common.xml U xenocara/lib/mesa/src/panfrost/lib/genxml/decode.c U xenocara/lib/mesa/src/panfrost/lib/genxml/decode.h U xenocara/lib/mesa/src/panfrost/lib/genxml/decode_common.c U xenocara/lib/mesa/src/panfrost/lib/genxml/gen_macros.h U xenocara/lib/mesa/src/panfrost/lib/genxml/gen_pack.py U xenocara/lib/mesa/src/panfrost/lib/genxml/meson.build U xenocara/lib/mesa/src/panfrost/lib/genxml/v4.xml U xenocara/lib/mesa/src/panfrost/lib/genxml/v5.xml U xenocara/lib/mesa/src/panfrost/lib/genxml/v6.xml U xenocara/lib/mesa/src/panfrost/lib/genxml/v7.xml U xenocara/lib/mesa/src/panfrost/lib/genxml/v9.xml U xenocara/lib/mesa/src/panfrost/lib/tests/test-blend.c U xenocara/lib/mesa/src/panfrost/lib/tests/test-clear.c U xenocara/lib/mesa/src/panfrost/lib/tests/test-earlyzs.cpp U xenocara/lib/mesa/src/panfrost/lib/tests/test-layout.cpp U xenocara/lib/mesa/src/panfrost/midgard/compiler.h U xenocara/lib/mesa/src/panfrost/midgard/disassemble.c U xenocara/lib/mesa/src/panfrost/midgard/disassemble.h U xenocara/lib/mesa/src/panfrost/midgard/helpers.h U xenocara/lib/mesa/src/panfrost/midgard/meson.build U xenocara/lib/mesa/src/panfrost/midgard/midgard.h U xenocara/lib/mesa/src/panfrost/midgard/midgard_address.c U xenocara/lib/mesa/src/panfrost/midgard/midgard_compile.c U xenocara/lib/mesa/src/panfrost/midgard/midgard_compile.h U xenocara/lib/mesa/src/panfrost/midgard/midgard_derivatives.c U xenocara/lib/mesa/src/panfrost/midgard/midgard_emit.c U xenocara/lib/mesa/src/panfrost/midgard/midgard_errata_lod.c U xenocara/lib/mesa/src/panfrost/midgard/midgard_helper_invocations.c U xenocara/lib/mesa/src/panfrost/midgard/midgard_liveness.c U xenocara/lib/mesa/src/panfrost/midgard/midgard_nir.h U xenocara/lib/mesa/src/panfrost/midgard/midgard_nir_algebraic.py U xenocara/lib/mesa/src/panfrost/midgard/midgard_nir_lower_helper_writes.c U xenocara/lib/mesa/src/panfrost/midgard/mir.c U xenocara/lib/mesa/src/panfrost/midgard/midgard_nir_lower_image_bitsize.c U xenocara/lib/mesa/src/panfrost/midgard/midgard_ops.c U xenocara/lib/mesa/src/panfrost/midgard/midgard_ops.h U xenocara/lib/mesa/src/panfrost/midgard/midgard_opt_copy_prop.c U xenocara/lib/mesa/src/panfrost/midgard/midgard_opt_dce.c U xenocara/lib/mesa/src/panfrost/midgard/midgard_opt_perspective.c U xenocara/lib/mesa/src/panfrost/midgard/midgard_print.c U xenocara/lib/mesa/src/panfrost/midgard/midgard_print_constant.c U xenocara/lib/mesa/src/panfrost/midgard/midgard_quirks.h U xenocara/lib/mesa/src/panfrost/midgard/midgard_ra.c U xenocara/lib/mesa/src/panfrost/midgard/midgard_ra_pipeline.c U xenocara/lib/mesa/src/panfrost/midgard/midgard_schedule.c U xenocara/lib/mesa/src/panfrost/midgard/mir_promote_uniforms.c U xenocara/lib/mesa/src/panfrost/midgard/mir_squeeze.c U xenocara/lib/mesa/src/panfrost/midgard/nir_fuse_io_16.c U xenocara/lib/mesa/src/panfrost/perf/G31.xml U xenocara/lib/mesa/src/panfrost/perf/G51.xml U xenocara/lib/mesa/src/panfrost/perf/G52.xml U xenocara/lib/mesa/src/panfrost/perf/G57.xml U xenocara/lib/mesa/src/panfrost/perf/G68.xml U xenocara/lib/mesa/src/panfrost/perf/G71.xml U xenocara/lib/mesa/src/panfrost/perf/G72.xml U xenocara/lib/mesa/src/panfrost/perf/G76.xml U xenocara/lib/mesa/src/panfrost/perf/G77.xml U xenocara/lib/mesa/src/panfrost/perf/G78.xml U xenocara/lib/mesa/src/panfrost/perf/T72x.xml U xenocara/lib/mesa/src/panfrost/perf/T76x.xml U xenocara/lib/mesa/src/panfrost/perf/T82x.xml U xenocara/lib/mesa/src/panfrost/perf/T83x.xml U xenocara/lib/mesa/src/panfrost/perf/T86x.xml U xenocara/lib/mesa/src/panfrost/perf/T88x.xml U xenocara/lib/mesa/src/panfrost/perf/meson.build U xenocara/lib/mesa/src/panfrost/perf/pan_gen_perf.py U xenocara/lib/mesa/src/panfrost/perf/pan_perf.c U xenocara/lib/mesa/src/panfrost/perf/pan_perf.h U xenocara/lib/mesa/src/panfrost/perf/quick.c U xenocara/lib/mesa/src/panfrost/shared/meson.build U xenocara/lib/mesa/src/panfrost/shared/pan_minmax_cache.c U xenocara/lib/mesa/src/panfrost/shared/pan_minmax_cache.h U xenocara/lib/mesa/src/panfrost/shared/pan_tiling.c U xenocara/lib/mesa/src/panfrost/shared/pan_tiling.h U xenocara/lib/mesa/src/panfrost/shared/test/test-tiling.cpp U xenocara/lib/mesa/src/panfrost/tools/meson.build U xenocara/lib/mesa/src/panfrost/tools/panfrostdump.c U xenocara/lib/mesa/src/panfrost/util/lcra.c U xenocara/lib/mesa/src/panfrost/util/lcra.h U xenocara/lib/mesa/src/panfrost/util/meson.build U xenocara/lib/mesa/src/panfrost/util/nir_mod_helpers.c U xenocara/lib/mesa/src/panfrost/util/pan_collect_varyings.c U xenocara/lib/mesa/src/panfrost/util/pan_ir.c U xenocara/lib/mesa/src/panfrost/util/pan_ir.h U xenocara/lib/mesa/src/panfrost/util/pan_liveness.c U xenocara/lib/mesa/src/panfrost/util/pan_lower_64bit_intrin.c U xenocara/lib/mesa/src/panfrost/util/pan_lower_framebuffer.c U xenocara/lib/mesa/src/panfrost/util/pan_lower_framebuffer.h U xenocara/lib/mesa/src/panfrost/util/pan_lower_helper_invocation.c U xenocara/lib/mesa/src/panfrost/util/pan_lower_sample_position.c U xenocara/lib/mesa/src/panfrost/util/pan_lower_store_component.c U xenocara/lib/mesa/src/panfrost/util/pan_lower_writeout.c U xenocara/lib/mesa/src/panfrost/util/pan_lower_xfb.c U xenocara/lib/mesa/src/panfrost/util/pan_sysval.c U xenocara/lib/mesa/src/panfrost/vulkan/meson.build U xenocara/lib/mesa/src/panfrost/vulkan/panvk_cmd_buffer.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_cs.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_cs.h U xenocara/lib/mesa/src/panfrost/vulkan/panvk_descriptor_set.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_device.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_formats.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_image.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_mempool.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_mempool.h U xenocara/lib/mesa/src/panfrost/vulkan/panvk_pass.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_pipeline.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_pipeline_cache.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_private.h U xenocara/lib/mesa/src/panfrost/vulkan/panvk_query.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_shader.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_util.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_vX_cmd_buffer.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_vX_cs.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_vX_cmd_buffer.h U xenocara/lib/mesa/src/panfrost/vulkan/panvk_vX_cs.h U xenocara/lib/mesa/src/panfrost/vulkan/panvk_vX_descriptor_set.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_vX_device.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_vX_device.h U xenocara/lib/mesa/src/panfrost/vulkan/panvk_vX_image.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_vX_meta.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_vX_meta.h U xenocara/lib/mesa/src/panfrost/vulkan/panvk_vX_meta_blit.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_vX_meta_clear.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_vX_meta_copy.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_vX_nir_lower_descriptors.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_vX_pipeline.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_vX_shader.c U xenocara/lib/mesa/src/panfrost/vulkan/panvk_varyings.h U xenocara/lib/mesa/src/panfrost/vulkan/panvk_wsi.c U xenocara/lib/mesa/src/tool/meson.build U xenocara/lib/mesa/src/tool/dlclose-skip/dlclose-skip.c U xenocara/lib/mesa/src/tool/dlclose-skip/meson.build U xenocara/lib/mesa/src/tool/pps/.clang-format U xenocara/lib/mesa/src/tool/pps/meson.build U xenocara/lib/mesa/src/tool/pps/pps.cc U xenocara/lib/mesa/src/tool/pps/pps.h U xenocara/lib/mesa/src/tool/pps/pps_algorithm.h U xenocara/lib/mesa/src/tool/pps/pps_config.cc U xenocara/lib/mesa/src/tool/pps/pps_counter.cc U xenocara/lib/mesa/src/tool/pps/pps_counter.h U xenocara/lib/mesa/src/tool/pps/pps_datasource.cc U xenocara/lib/mesa/src/tool/pps/pps_datasource.h U xenocara/lib/mesa/src/tool/pps/pps_device.cc U xenocara/lib/mesa/src/tool/pps/pps_device.h U xenocara/lib/mesa/src/tool/pps/pps_driver.cc U xenocara/lib/mesa/src/tool/pps/pps_driver.h U xenocara/lib/mesa/src/tool/pps/pps_producer.cc U xenocara/lib/mesa/src/tool/pps/cfg/cpu.cfg U xenocara/lib/mesa/src/tool/pps/cfg/gpu.cfg U xenocara/lib/mesa/src/tool/pps/cfg/intel.cfg U xenocara/lib/mesa/src/tool/pps/cfg/system.cfg U xenocara/lib/mesa/src/util/00-mesa-defaults.conf U xenocara/lib/mesa/src/util/anon_file.c U xenocara/lib/mesa/src/util/anon_file.h U xenocara/lib/mesa/src/util/bigmath.h U xenocara/lib/mesa/src/util/bitpack_helpers.h U xenocara/lib/mesa/src/util/bitscan.c U xenocara/lib/mesa/src/util/bitscan.h U xenocara/lib/mesa/src/util/bitset.h U xenocara/lib/mesa/src/util/blob.c U xenocara/lib/mesa/src/util/blob.h U xenocara/lib/mesa/src/util/build_id.c U xenocara/lib/mesa/src/util/build_id.h U xenocara/lib/mesa/src/util/cnd_monotonic.h U xenocara/lib/mesa/src/util/compiler.h U xenocara/lib/mesa/src/util/compress.c U xenocara/lib/mesa/src/util/compress.h U xenocara/lib/mesa/src/util/crc32.c U xenocara/lib/mesa/src/util/crc32.h U xenocara/lib/mesa/src/util/dag.c U xenocara/lib/mesa/src/util/dag.h U xenocara/lib/mesa/src/util/detect_os.h U xenocara/lib/mesa/src/util/disk_cache.c U xenocara/lib/mesa/src/util/disk_cache.h U xenocara/lib/mesa/src/util/double.c U xenocara/lib/mesa/src/util/disk_cache_os.c U xenocara/lib/mesa/src/util/disk_cache_os.h U xenocara/lib/mesa/src/util/double.h U xenocara/lib/mesa/src/util/driconf.h U xenocara/lib/mesa/src/util/driconf_static.py U xenocara/lib/mesa/src/util/enum_operators.h U xenocara/lib/mesa/src/util/fast_idiv_by_const.c U xenocara/lib/mesa/src/util/fast_idiv_by_const.h U xenocara/lib/mesa/src/util/fast_urem_by_const.h U xenocara/lib/mesa/src/util/format_r11g11b10f.h U xenocara/lib/mesa/src/util/format_rgb9e5.h U xenocara/lib/mesa/src/util/format_srgb.h U xenocara/lib/mesa/src/util/format_srgb.py U xenocara/lib/mesa/src/util/fossilize_db.c U xenocara/lib/mesa/src/util/fossilize_db.h U xenocara/lib/mesa/src/util/futex.c U xenocara/lib/mesa/src/util/futex.h U xenocara/lib/mesa/src/util/glsl2spirv.py U xenocara/lib/mesa/src/util/half_float.c U xenocara/lib/mesa/src/util/half_float.h C xenocara/lib/mesa/src/util/hash_table.c U xenocara/lib/mesa/src/util/hash_table.h U xenocara/lib/mesa/src/util/libsync.h U xenocara/lib/mesa/src/util/list.h U xenocara/lib/mesa/src/util/log.c U xenocara/lib/mesa/src/util/log.h U xenocara/lib/mesa/src/util/macros.h U xenocara/lib/mesa/src/util/memstream.c U xenocara/lib/mesa/src/util/memstream.h U xenocara/lib/mesa/src/util/mesa-sha1.c U xenocara/lib/mesa/src/util/mesa-sha1.h U xenocara/lib/mesa/src/util/mesa_cache_db.c U xenocara/lib/mesa/src/util/mesa_cache_db.h U xenocara/lib/mesa/src/util/meson.build U xenocara/lib/mesa/src/util/os_file.c U xenocara/lib/mesa/src/util/os_file.h U xenocara/lib/mesa/src/util/os_memory.h U xenocara/lib/mesa/src/util/os_memory_aligned.h U xenocara/lib/mesa/src/util/os_memory_debug.h U xenocara/lib/mesa/src/util/os_memory_fd.c U xenocara/lib/mesa/src/util/os_memory_fd.h U xenocara/lib/mesa/src/util/os_memory_stdc.h U xenocara/lib/mesa/src/util/os_misc.c U xenocara/lib/mesa/src/util/rgtc.c U xenocara/lib/mesa/src/util/os_misc.h U xenocara/lib/mesa/src/util/os_socket.c U xenocara/lib/mesa/src/util/os_socket.h U xenocara/lib/mesa/src/util/os_time.c U xenocara/lib/mesa/src/util/os_time.h U xenocara/lib/mesa/src/util/ptralloc.h U xenocara/lib/mesa/src/util/ralloc.c U xenocara/lib/mesa/src/util/ralloc.h U xenocara/lib/mesa/src/util/rand_xor.c U xenocara/lib/mesa/src/util/rand_xor.h U xenocara/lib/mesa/src/util/rb_tree.c U xenocara/lib/mesa/src/util/rb_tree.h U xenocara/lib/mesa/src/util/reallocarray.h U xenocara/lib/mesa/src/util/register_allocate.c U xenocara/lib/mesa/src/util/register_allocate.h U xenocara/lib/mesa/src/util/register_allocate_internal.h U xenocara/lib/mesa/src/util/rgtc.h U xenocara/lib/mesa/src/util/rounding.h U xenocara/lib/mesa/src/util/rwlock.c U xenocara/lib/mesa/src/util/rwlock.h U xenocara/lib/mesa/src/util/set.c U xenocara/lib/mesa/src/util/set.h U xenocara/lib/mesa/src/util/simple_mtx.c U xenocara/lib/mesa/src/util/slab.c U xenocara/lib/mesa/src/util/simple_mtx.h U xenocara/lib/mesa/src/util/slab.h U xenocara/lib/mesa/src/util/softfloat.c U xenocara/lib/mesa/src/util/softfloat.h U xenocara/lib/mesa/src/util/sparse_array.c U xenocara/lib/mesa/src/util/sparse_array.h U xenocara/lib/mesa/src/util/streaming-load-memcpy.c U xenocara/lib/mesa/src/util/streaming-load-memcpy.h U xenocara/lib/mesa/src/util/string_buffer.c U xenocara/lib/mesa/src/util/string_buffer.h U xenocara/lib/mesa/src/util/strndup.h U xenocara/lib/mesa/src/util/strtod.c U xenocara/lib/mesa/src/util/strtod.h U xenocara/lib/mesa/src/util/texcompress_rgtc_tmp.h U xenocara/lib/mesa/src/util/timespec.h U xenocara/lib/mesa/src/util/u_atomic.c U xenocara/lib/mesa/src/util/u_atomic.h U xenocara/lib/mesa/src/util/u_call_once.c U xenocara/lib/mesa/src/util/u_call_once.h U xenocara/lib/mesa/src/util/u_dl.c U xenocara/lib/mesa/src/util/u_cpu_detect.c U xenocara/lib/mesa/src/util/u_cpu_detect.h U xenocara/lib/mesa/src/util/u_debug.c U xenocara/lib/mesa/src/util/u_debug.h U xenocara/lib/mesa/src/util/u_debug_describe.c U xenocara/lib/mesa/src/util/u_debug_describe.h U xenocara/lib/mesa/src/util/u_debug_memory.c U xenocara/lib/mesa/src/util/u_debug_refcnt.c U xenocara/lib/mesa/src/util/u_debug_refcnt.h U xenocara/lib/mesa/src/util/u_debug_stack.c U xenocara/lib/mesa/src/util/u_debug_stack.h U xenocara/lib/mesa/src/util/u_debug_stack_android.cpp U xenocara/lib/mesa/src/util/u_debug_symbol.c U xenocara/lib/mesa/src/util/u_debug_symbol.h U xenocara/lib/mesa/src/util/u_dl.h U xenocara/lib/mesa/src/util/u_drm.h U xenocara/lib/mesa/src/util/u_dynarray.h U xenocara/lib/mesa/src/util/u_endian.h U xenocara/lib/mesa/src/util/u_fifo.h U xenocara/lib/mesa/src/util/u_hash_table.c U xenocara/lib/mesa/src/util/u_hash_table.h U xenocara/lib/mesa/src/util/u_idalloc.c U xenocara/lib/mesa/src/util/u_idalloc.h U xenocara/lib/mesa/src/util/u_math.c U xenocara/lib/mesa/src/util/u_math.h U xenocara/lib/mesa/src/util/u_memory.h U xenocara/lib/mesa/src/util/u_memset.h U xenocara/lib/mesa/src/util/u_mm.c U xenocara/lib/mesa/src/util/u_mm.h U xenocara/lib/mesa/src/util/u_pointer.h U xenocara/lib/mesa/src/util/u_printf.c U xenocara/lib/mesa/src/util/u_printf.h U xenocara/lib/mesa/src/util/u_process.c U xenocara/lib/mesa/src/util/u_process.h U xenocara/lib/mesa/src/util/u_qsort.cpp U xenocara/lib/mesa/src/util/u_qsort.h U xenocara/lib/mesa/src/util/u_queue.c U xenocara/lib/mesa/src/util/u_queue.h U xenocara/lib/mesa/src/util/u_string.h U xenocara/lib/mesa/src/util/u_thread.c U xenocara/lib/mesa/src/util/u_thread.h U xenocara/lib/mesa/src/util/u_vector.c U xenocara/lib/mesa/src/util/u_vector.h U xenocara/lib/mesa/src/util/u_worklist.c U xenocara/lib/mesa/src/util/u_worklist.h U xenocara/lib/mesa/src/util/vl_rbsp.h U xenocara/lib/mesa/src/util/vl_vlc.h U xenocara/lib/mesa/src/util/vma.c U xenocara/lib/mesa/src/util/vma.h U xenocara/lib/mesa/src/util/xmlconfig.c U xenocara/lib/mesa/src/util/xmlconfig.h U xenocara/lib/mesa/src/util/xxd.py U xenocara/lib/mesa/src/util/xxhash.h U xenocara/lib/mesa/src/util/format/format_utils.h U xenocara/lib/mesa/src/util/format/meson.build U xenocara/lib/mesa/src/util/format/u_format.c U xenocara/lib/mesa/src/util/format/u_format.csv U xenocara/lib/mesa/src/util/format/u_format.h U xenocara/lib/mesa/src/util/format/u_format_bptc.c U xenocara/lib/mesa/src/util/format/u_format_bptc.h U xenocara/lib/mesa/src/util/format/u_format_etc.c U xenocara/lib/mesa/src/util/format/u_format_etc.h U xenocara/lib/mesa/src/util/format/u_format_fxt1.c U xenocara/lib/mesa/src/util/format/u_format_fxt1.h U xenocara/lib/mesa/src/util/format/u_format_latc.c U xenocara/lib/mesa/src/util/format/u_format_latc.h U xenocara/lib/mesa/src/util/format/u_format_other.c U xenocara/lib/mesa/src/util/format/u_format_other.h U xenocara/lib/mesa/src/util/format/u_format_pack.py U xenocara/lib/mesa/src/util/format/u_format_parse.py U xenocara/lib/mesa/src/util/format/u_format_rgtc.c U xenocara/lib/mesa/src/util/format/u_format_rgtc.h U xenocara/lib/mesa/src/util/format/u_format_s3tc.c U xenocara/lib/mesa/src/util/format/u_format_s3tc.h U xenocara/lib/mesa/src/util/format/u_format_table.py U xenocara/lib/mesa/src/util/format/u_format_tests.c U xenocara/lib/mesa/src/util/format/u_format_tests.h U xenocara/lib/mesa/src/util/format/u_format_unpack_neon.c U xenocara/lib/mesa/src/util/format/u_format_yuv.c U xenocara/lib/mesa/src/util/format/u_format_yuv.h U xenocara/lib/mesa/src/util/format/u_format_zs.c U xenocara/lib/mesa/src/util/format/u_format_zs.h U xenocara/lib/mesa/src/util/perf/cpu_trace.h U xenocara/lib/mesa/src/util/perf/u_perfetto.cc U xenocara/lib/mesa/src/util/perf/u_perfetto.h U xenocara/lib/mesa/src/util/perf/u_trace.c U xenocara/lib/mesa/src/util/perf/u_trace.h U xenocara/lib/mesa/src/util/perf/u_trace.py U xenocara/lib/mesa/src/util/perf/u_trace_priv.h U xenocara/lib/mesa/src/util/sha1/README U xenocara/lib/mesa/src/util/sha1/sha1.c U xenocara/lib/mesa/src/util/sha1/sha1.h U xenocara/lib/mesa/src/util/tests/bitset_test.cpp U xenocara/lib/mesa/src/util/tests/blob_test.cpp U xenocara/lib/mesa/src/util/tests/cache_test.cpp U xenocara/lib/mesa/src/util/tests/dag_test.cpp U xenocara/lib/mesa/src/util/tests/fast_idiv_by_const_test.cpp U xenocara/lib/mesa/src/util/tests/fast_urem_by_const_test.cpp U xenocara/lib/mesa/src/util/tests/half_float_test.cpp U xenocara/lib/mesa/src/util/tests/int_min_max.cpp U xenocara/lib/mesa/src/util/tests/mesa-sha1_test.cpp U xenocara/lib/mesa/src/util/tests/process_test.c U xenocara/lib/mesa/src/util/tests/rb_tree_test.cpp U xenocara/lib/mesa/src/util/tests/register_allocate_test.cpp U xenocara/lib/mesa/src/util/tests/roundeven_test.cpp U xenocara/lib/mesa/src/util/tests/set_test.cpp U xenocara/lib/mesa/src/util/tests/sparse_array_test.cpp U xenocara/lib/mesa/src/util/tests/string_buffer_test.cpp U xenocara/lib/mesa/src/util/tests/vector_test.cpp U xenocara/lib/mesa/src/util/tests/timespec_test.cpp U xenocara/lib/mesa/src/util/tests/u_atomic_test.cpp U xenocara/lib/mesa/src/util/tests/u_call_once_test.cpp U xenocara/lib/mesa/src/util/tests/u_debug_stack_test.cpp U xenocara/lib/mesa/src/util/tests/u_debug_test.cpp U xenocara/lib/mesa/src/util/tests/u_printf_test.cpp U xenocara/lib/mesa/src/util/tests/u_qsort_test.cpp U xenocara/lib/mesa/src/util/tests/xmlconfig.cpp U xenocara/lib/mesa/src/util/tests/drirc_configdir/00-test.conf U xenocara/lib/mesa/src/util/tests/drirc_configdir/01-unused U xenocara/lib/mesa/src/util/tests/drirc_home/.drirc U xenocara/lib/mesa/src/util/tests/format/meson.build U xenocara/lib/mesa/src/util/tests/format/srgb.c U xenocara/lib/mesa/src/util/tests/format/u_format_compatible_test.c U xenocara/lib/mesa/src/util/tests/format/u_format_test.c U xenocara/lib/mesa/src/util/tests/hash_table/clear.c U xenocara/lib/mesa/src/util/tests/hash_table/collision.c U xenocara/lib/mesa/src/util/tests/hash_table/delete_and_lookup.c U xenocara/lib/mesa/src/util/tests/hash_table/delete_management.c U xenocara/lib/mesa/src/util/tests/hash_table/destroy_callback.c U xenocara/lib/mesa/src/util/tests/hash_table/insert_and_lookup.c U xenocara/lib/mesa/src/util/tests/hash_table/insert_many.c U xenocara/lib/mesa/src/util/tests/hash_table/meson.build U xenocara/lib/mesa/src/util/tests/hash_table/null_destroy.c U xenocara/lib/mesa/src/util/tests/hash_table/random_entry.c U xenocara/lib/mesa/src/util/tests/hash_table/remove_key.c U xenocara/lib/mesa/src/util/tests/hash_table/remove_null.c U xenocara/lib/mesa/src/util/tests/hash_table/replacement.c U xenocara/lib/mesa/src/util/tests/vma/meson.build U xenocara/lib/mesa/src/util/tests/vma/vma_random_test.cpp U xenocara/lib/mesa/src/virtio/meson.build U xenocara/lib/mesa/src/virtio/ci/deqp-venus.toml U xenocara/lib/mesa/src/virtio/ci/gitlab-ci.yml U xenocara/lib/mesa/src/virtio/ci/venus-fails.txt U xenocara/lib/mesa/src/virtio/ci/venus-flakes.txt U xenocara/lib/mesa/src/virtio/ci/venus-skips.txt U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_buffer.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_buffer_view.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_command_buffer.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_command_pool.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_cs.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_defines.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_descriptor_pool.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_descriptor_set.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_descriptor_set_layout.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_descriptor_update_template.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_device.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_device_memory.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_event.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_fence.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_framebuffer.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_handles.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_image.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_image_view.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_info.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_instance.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_pipeline.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_pipeline_cache.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_query_pool.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_pipeline_layout.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_private_data_slot.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_queue.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_render_pass.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_sampler.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_sampler_ycbcr_conversion.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_semaphore.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_shader_module.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_structs.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_transport.h U xenocara/lib/mesa/src/virtio/venus-protocol/vn_protocol_driver_types.h U xenocara/lib/mesa/src/virtio/virtio-gpu/drm_hw.h U xenocara/lib/mesa/src/virtio/virtio-gpu/venus_hw.h U xenocara/lib/mesa/src/virtio/virtio-gpu/virgl_hw.h U xenocara/lib/mesa/src/virtio/virtio-gpu/virgl_protocol.h U xenocara/lib/mesa/src/virtio/virtio-gpu/virglrenderer_hw.h U xenocara/lib/mesa/src/virtio/vtest/vtest_protocol.h U xenocara/lib/mesa/src/virtio/vulkan/.clang-format U xenocara/lib/mesa/src/virtio/vulkan/meson.build U xenocara/lib/mesa/src/virtio/vulkan/vn_android.c U xenocara/lib/mesa/src/virtio/vulkan/vn_android.h U xenocara/lib/mesa/src/virtio/vulkan/vn_buffer.c U xenocara/lib/mesa/src/virtio/vulkan/vn_buffer.h U xenocara/lib/mesa/src/virtio/vulkan/vn_command_buffer.c U xenocara/lib/mesa/src/virtio/vulkan/vn_command_buffer.h U xenocara/lib/mesa/src/virtio/vulkan/vn_common.c U xenocara/lib/mesa/src/virtio/vulkan/vn_common.h U xenocara/lib/mesa/src/virtio/vulkan/vn_cs.c U xenocara/lib/mesa/src/virtio/vulkan/vn_cs.h U xenocara/lib/mesa/src/virtio/vulkan/vn_descriptor_set.c U xenocara/lib/mesa/src/virtio/vulkan/vn_descriptor_set.h U xenocara/lib/mesa/src/virtio/vulkan/vn_device.c U xenocara/lib/mesa/src/virtio/vulkan/vn_device.h U xenocara/lib/mesa/src/virtio/vulkan/vn_device_memory.c U xenocara/lib/mesa/src/virtio/vulkan/vn_device_memory.h U xenocara/lib/mesa/src/virtio/vulkan/vn_feedback.c U xenocara/lib/mesa/src/virtio/vulkan/vn_feedback.h U xenocara/lib/mesa/src/virtio/vulkan/vn_icd.c U xenocara/lib/mesa/src/virtio/vulkan/vn_icd.h U xenocara/lib/mesa/src/virtio/vulkan/vn_image.c U xenocara/lib/mesa/src/virtio/vulkan/vn_image.h U xenocara/lib/mesa/src/virtio/vulkan/vn_instance.c U xenocara/lib/mesa/src/virtio/vulkan/vn_instance.h U xenocara/lib/mesa/src/virtio/vulkan/vn_physical_device.c U xenocara/lib/mesa/src/virtio/vulkan/vn_physical_device.h U xenocara/lib/mesa/src/virtio/vulkan/vn_pipeline.c U xenocara/lib/mesa/src/virtio/vulkan/vn_pipeline.h U xenocara/lib/mesa/src/virtio/vulkan/vn_query_pool.c U xenocara/lib/mesa/src/virtio/vulkan/vn_query_pool.h U xenocara/lib/mesa/src/virtio/vulkan/vn_queue.c U xenocara/lib/mesa/src/virtio/vulkan/vn_queue.h U xenocara/lib/mesa/src/virtio/vulkan/vn_render_pass.c U xenocara/lib/mesa/src/virtio/vulkan/vn_render_pass.h U xenocara/lib/mesa/src/virtio/vulkan/vn_renderer.h U xenocara/lib/mesa/src/virtio/vulkan/vn_renderer_internal.c U xenocara/lib/mesa/src/virtio/vulkan/vn_renderer_internal.h U xenocara/lib/mesa/src/virtio/vulkan/vn_renderer_util.c U xenocara/lib/mesa/src/virtio/vulkan/vn_renderer_util.h U xenocara/lib/mesa/src/virtio/vulkan/vn_renderer_virtgpu.c U xenocara/lib/mesa/src/virtio/vulkan/vn_renderer_vtest.c U xenocara/lib/mesa/src/virtio/vulkan/vn_ring.c U xenocara/lib/mesa/src/virtio/vulkan/vn_ring.h U xenocara/lib/mesa/src/virtio/vulkan/vn_wsi.c U xenocara/lib/mesa/src/virtio/vulkan/vn_wsi.h U xenocara/lib/mesa/src/vulkan/meson.build U xenocara/lib/mesa/src/vulkan/vulkan-icd-symbols.txt U xenocara/lib/mesa/src/vulkan/vulkan_api.def.in U xenocara/lib/mesa/src/vulkan/device-select-layer/VkLayer_MESA_device_select.json U xenocara/lib/mesa/src/vulkan/device-select-layer/device_select.h U xenocara/lib/mesa/src/vulkan/device-select-layer/device_select_layer.c U xenocara/lib/mesa/src/vulkan/device-select-layer/device_select_wayland.c U xenocara/lib/mesa/src/vulkan/device-select-layer/device_select_x11.c U xenocara/lib/mesa/src/vulkan/device-select-layer/meson.build U xenocara/lib/mesa/src/vulkan/overlay-layer/README.rst U xenocara/lib/mesa/src/vulkan/overlay-layer/TODO U xenocara/lib/mesa/src/vulkan/overlay-layer/VkLayer_MESA_overlay.json U xenocara/lib/mesa/src/vulkan/overlay-layer/mesa-overlay-control.py U xenocara/lib/mesa/src/vulkan/overlay-layer/meson.build U xenocara/lib/mesa/src/vulkan/overlay-layer/overlay.cpp U xenocara/lib/mesa/src/vulkan/overlay-layer/overlay.frag U xenocara/lib/mesa/src/vulkan/overlay-layer/overlay.vert U xenocara/lib/mesa/src/vulkan/overlay-layer/overlay_params.c U xenocara/lib/mesa/src/vulkan/overlay-layer/overlay_params.h U xenocara/lib/mesa/src/vulkan/registry/update-aliases.py U xenocara/lib/mesa/src/vulkan/registry/vk.xml U xenocara/lib/mesa/src/vulkan/runtime/meson.build U xenocara/lib/mesa/src/vulkan/runtime/vk_android.c U xenocara/lib/mesa/src/vulkan/runtime/vk_buffer.c U xenocara/lib/mesa/src/vulkan/runtime/vk_buffer.h U xenocara/lib/mesa/src/vulkan/runtime/vk_cmd_copy.c U xenocara/lib/mesa/src/vulkan/runtime/vk_cmd_enqueue.c U xenocara/lib/mesa/src/vulkan/runtime/vk_command_buffer.c U xenocara/lib/mesa/src/vulkan/runtime/vk_command_buffer.h U xenocara/lib/mesa/src/vulkan/runtime/vk_command_pool.c U xenocara/lib/mesa/src/vulkan/runtime/vk_command_pool.h U xenocara/lib/mesa/src/vulkan/runtime/vk_debug_report.c U xenocara/lib/mesa/src/vulkan/runtime/vk_debug_report.h U xenocara/lib/mesa/src/vulkan/runtime/vk_debug_utils.c U xenocara/lib/mesa/src/vulkan/runtime/vk_debug_utils.h U xenocara/lib/mesa/src/vulkan/runtime/vk_deferred_operation.c U xenocara/lib/mesa/src/vulkan/runtime/vk_deferred_operation.h U xenocara/lib/mesa/src/vulkan/runtime/vk_descriptor_set_layout.c U xenocara/lib/mesa/src/vulkan/runtime/vk_descriptors.c U xenocara/lib/mesa/src/vulkan/runtime/vk_descriptor_set_layout.h U xenocara/lib/mesa/src/vulkan/runtime/vk_descriptor_update_template.c U xenocara/lib/mesa/src/vulkan/runtime/vk_descriptor_update_template.h U xenocara/lib/mesa/src/vulkan/runtime/vk_descriptors.h U xenocara/lib/mesa/src/vulkan/runtime/vk_device.c U xenocara/lib/mesa/src/vulkan/runtime/vk_device.h U xenocara/lib/mesa/src/vulkan/runtime/vk_drm_syncobj.c U xenocara/lib/mesa/src/vulkan/runtime/vk_drm_syncobj.h U xenocara/lib/mesa/src/vulkan/runtime/vk_fence.c U xenocara/lib/mesa/src/vulkan/runtime/vk_fence.h U xenocara/lib/mesa/src/vulkan/runtime/vk_framebuffer.c U xenocara/lib/mesa/src/vulkan/runtime/vk_framebuffer.h U xenocara/lib/mesa/src/vulkan/runtime/vk_graphics_state.c U xenocara/lib/mesa/src/vulkan/runtime/vk_graphics_state.h U xenocara/lib/mesa/src/vulkan/runtime/vk_image.c U xenocara/lib/mesa/src/vulkan/runtime/vk_image.h U xenocara/lib/mesa/src/vulkan/runtime/vk_instance.c U xenocara/lib/mesa/src/vulkan/runtime/vk_instance.h U xenocara/lib/mesa/src/vulkan/runtime/vk_limits.h U xenocara/lib/mesa/src/vulkan/runtime/vk_log.c U xenocara/lib/mesa/src/vulkan/runtime/vk_log.h U xenocara/lib/mesa/src/vulkan/runtime/vk_nir.c U xenocara/lib/mesa/src/vulkan/runtime/vk_nir.h U xenocara/lib/mesa/src/vulkan/runtime/vk_object.c U xenocara/lib/mesa/src/vulkan/runtime/vk_object.h U xenocara/lib/mesa/src/vulkan/runtime/vk_physical_device.c U xenocara/lib/mesa/src/vulkan/runtime/vk_physical_device.h U xenocara/lib/mesa/src/vulkan/runtime/vk_physical_device_features.py U xenocara/lib/mesa/src/vulkan/runtime/vk_pipeline.c U xenocara/lib/mesa/src/vulkan/runtime/vk_pipeline.h U xenocara/lib/mesa/src/vulkan/runtime/vk_pipeline_cache.c U xenocara/lib/mesa/src/vulkan/runtime/vk_pipeline_cache.h U xenocara/lib/mesa/src/vulkan/runtime/vk_pipeline_layout.c U xenocara/lib/mesa/src/vulkan/runtime/vk_pipeline_layout.h U xenocara/lib/mesa/src/vulkan/runtime/vk_queue.c U xenocara/lib/mesa/src/vulkan/runtime/vk_queue.h U xenocara/lib/mesa/src/vulkan/runtime/vk_render_pass.c U xenocara/lib/mesa/src/vulkan/runtime/vk_render_pass.h U xenocara/lib/mesa/src/vulkan/runtime/vk_sampler.c U xenocara/lib/mesa/src/vulkan/runtime/vk_sampler.h U xenocara/lib/mesa/src/vulkan/runtime/vk_semaphore.c U xenocara/lib/mesa/src/vulkan/runtime/vk_semaphore.h U xenocara/lib/mesa/src/vulkan/runtime/vk_shader_module.c U xenocara/lib/mesa/src/vulkan/runtime/vk_shader_module.h U xenocara/lib/mesa/src/vulkan/runtime/vk_standard_sample_locations.c U xenocara/lib/mesa/src/vulkan/runtime/vk_standard_sample_locations.h U xenocara/lib/mesa/src/vulkan/runtime/vk_sync.c U xenocara/lib/mesa/src/vulkan/runtime/vk_sync.h U xenocara/lib/mesa/src/vulkan/runtime/vk_sync_binary.c U xenocara/lib/mesa/src/vulkan/runtime/vk_sync_binary.h U xenocara/lib/mesa/src/vulkan/runtime/vk_sync_dummy.c U xenocara/lib/mesa/src/vulkan/runtime/vk_sync_dummy.h U xenocara/lib/mesa/src/vulkan/runtime/vk_sync_timeline.c U xenocara/lib/mesa/src/vulkan/runtime/vk_sync_timeline.h U xenocara/lib/mesa/src/vulkan/runtime/vk_synchronization2.c U xenocara/lib/mesa/src/vulkan/util/gen_enum_to_str.py U xenocara/lib/mesa/src/vulkan/util/meson.build U xenocara/lib/mesa/src/vulkan/util/vk_alloc.c U xenocara/lib/mesa/src/vulkan/util/vk_alloc.h U xenocara/lib/mesa/src/vulkan/util/vk_cmd_queue_gen.py U xenocara/lib/mesa/src/vulkan/util/vk_dispatch_table_gen.py U xenocara/lib/mesa/src/vulkan/util/vk_dispatch_trampolines_gen.py U xenocara/lib/mesa/src/vulkan/util/vk_entrypoints.py U xenocara/lib/mesa/src/vulkan/util/vk_entrypoints_gen.py U xenocara/lib/mesa/src/vulkan/util/vk_extensions.py U xenocara/lib/mesa/src/vulkan/util/vk_extensions_gen.py U xenocara/lib/mesa/src/vulkan/util/vk_format.c U xenocara/lib/mesa/src/vulkan/util/vk_format.h U xenocara/lib/mesa/src/vulkan/util/vk_icd_gen.py U xenocara/lib/mesa/src/vulkan/util/vk_util.c U xenocara/lib/mesa/src/vulkan/util/vk_util.h U xenocara/lib/mesa/src/vulkan/wsi/meson.build U xenocara/lib/mesa/src/vulkan/wsi/wsi_common.c U xenocara/lib/mesa/src/vulkan/wsi/wsi_common.h U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_display.c U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_display.h U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_drm.c U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_drm.h U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_private.h U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_queue.h U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_wayland.c U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_win32.c C xenocara/lib/mesa/src/vulkan/wsi/wsi_common_x11.c U xenocara/lib/mesa/subprojects/.gitignore U xenocara/lib/mesa/subprojects/DirectX-Headers.wrap U xenocara/lib/mesa/subprojects/expat.wrap U xenocara/lib/mesa/subprojects/perfetto.wrap U xenocara/lib/mesa/subprojects/zlib.wrap 64 conflicts created by this import. Use the following command to help the merge: cvs checkout -jmesa:yesterday -jmesa xenocara/lib/mesa CVSROOT: /cvs Module name: xenocara Changes by: jsg@cvs.openbsd.org 2023/04/06 04:23:46 Modified files: lib/mesa : Makefile VERSION meson.build lib/mesa/generated: Makefile lib/mesa/generated/src/amd/common: amdgfxregs.h sid_tables.h lib/mesa/generated/src/amd/compiler: aco_opcodes.cpp lib/mesa/generated/src/amd/vulkan: radv_entrypoints.c radv_entrypoints.h lib/mesa/generated/src/compiler/glsl: glsl_lexer.cpp lib/mesa/generated/src/compiler/glsl/glcpp: glcpp-lex.c glcpp-parse.c lib/mesa/generated/src/intel/genxml: gen125_pack.h gen12_pack.h genX_xml.h lib/mesa/generated/src/mesa: get_hash.h lib/mesa/generated/src/mesa/program: lex.yy.c lib/mesa/generated/src/util: driconf_static.h lib/mesa/include/CL: cl_d3d10.h cl_d3d11.h cl_dx9_media_sharing.h opencl.h lib/mesa/include/GLES3: gl3ext.h lib/mesa/mk/libGL: Makefile lib/mesa/mk/libvulkan_radeon: Makefile lib/mesa/src/amd/common: ac_gpu_info.c ac_surface.c ac_surface.h amd_family.h lib/mesa/src/amd/compiler: aco_instruction_selection.cpp lib/mesa/src/amd/llvm: ac_llvm_util.c lib/mesa/src/amd/vulkan: radv_cmd_buffer.c radv_device.c radv_formats.c radv_image.c radv_pipeline.c radv_private.h radv_query.c radv_sqtt.c vulkan.sym lib/mesa/src/amd/vulkan/layers: radv_sqtt_layer.c lib/mesa/src/amd/vulkan/winsys/amdgpu: radv_amdgpu_cs.c lib/mesa/src/compiler/glsl: standalone.cpp standalone_scaffolding.cpp standalone_scaffolding.h lib/mesa/src/compiler/glsl/glcpp: glcpp-parse.y lib/mesa/src/compiler/nir: nir_builder.h nir_from_ssa.c lib/mesa/src/egl/drivers/dri2: egl_dri2.h platform_x11.c lib/mesa/src/freedreno/vulkan: tu_clear_blit.c lib/mesa/src/gallium/auxiliary/util: u_vbuf.c lib/mesa/src/gallium/drivers/etnaviv: etnaviv_resource.c etnaviv_screen.c lib/mesa/src/gallium/drivers/iris: iris_screen.c lib/mesa/src/gallium/drivers/llvmpipe: lp_screen.c lib/mesa/src/gallium/drivers/nouveau: nouveau_screen.c lib/mesa/src/gallium/drivers/r600/sfn: sfn_nir.cpp lib/mesa/src/gallium/drivers/radeonsi: si_pipe.c si_pm4.c si_pm4.h si_shader.c si_shader_internal.h si_shader_llvm.c si_state.c lib/mesa/src/gallium/drivers/svga: svga_format.c svga_resource_texture.c svga_resource_texture.h svga_screen_cache.c lib/mesa/src/gallium/include/pipe: p_video_state.h lib/mesa/src/getopt: getopt.h getopt_long.c lib/mesa/src/intel/blorp: blorp_clear.c lib/mesa/src/intel/compiler: brw_fs_nir.cpp lib/mesa/src/intel/vulkan: anv_batch_chain.c anv_device.c anv_image.c anv_private.h genX_cmd_buffer.c genX_pipeline.c lib/mesa/src/loader: loader_dri3_helper.c loader_dri3_helper.h lib/mesa/src/mesa/main: get.c get_hash_params.py lib/mesa/src/mesa/state_tracker: st_context.c st_extensions.c st_manager.c lib/mesa/src/util: hash_table.c lib/mesa/src/vulkan/wsi: wsi_common_x11.c Log message: Merge Mesa 22.3.7 CVSROOT: /cvs Module name: xenocara Changes by: jsg@cvs.openbsd.org 2023/04/06 05:02:53 Modified files: . : 3RDPARTY Log message: update CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/06 05:22:29 Modified files: games/tuxpaint : Makefile distinfo games/tuxpaint/patches: patch-Makefile games/tuxpaint/pkg: PLIST Log message: Update to tuxpaint-0.9.29. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/06 05:22:40 Modified files: games/tuxpaint-config: Makefile distinfo Log message: Update to tuxpaint-config-0.0.20. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/06 05:22:53 Modified files: games/tuxpaint-stamps: Makefile distinfo games/tuxpaint-stamps/pkg: PLIST Log message: Update to tuxpaint-stamps-20230402. CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/04/06 05:29:55 Modified files: sbin/route : route.8 Log message: Markup route flags to get tags ":tM" to jump to the definition of RTF_MODIFIED is easier and faster than manually navigating there. OK schwarze CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/06 05:46:00 Modified files: sysutils/terragrunt: Makefile distinfo Log message: Update to terragrunt-0.45.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/06 06:01:00 Modified files: sysutils/nomad : Makefile distinfo Log message: Update to nomad-1.5.3. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/06 06:01:45 Modified files: regress/lib/libcrypto/bn: bn_mod_sqrt.c Log message: Move a comment to the proper place CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/06 10:18:51 Modified files: www/chromium/patches: patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_ia32_config_h Log message: missing /* in i386-specific patch, ok robert CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/04/06 10:42:09 Modified files: sysutils/firmware/vmm: Makefile sysutils/firmware/vmm/patches: patch-scripts_buildversion_py Log message: Omit datetime and hostname from dmesg visible version string It is a weird concat of port version, datetime, hostname, port revision, uname(?) and a fixed string(?), in that order. -bios0: vendor SeaBIOS version "1.14.0-20230330_133212-symphytum.spacehopper.orgp2-OpenBSD-vmm" date 01/01/2011 +bios0: vendor SeaBIOS version "1.14.0p3-OpenBSD-vmm" date 01/01/2011 OK sthen dv CVSROOT: /cvs Module name: ports Changes by: bket@cvs.openbsd.org 2023/04/06 12:42:55 Modified files: security/vaultwarden: Makefile crates.inc distinfo Log message: Update to vaultwarden-1.28.1 Changes: https://github.com/dani-garcia/vaultwarden/releases/tag/1.28.1 OK aisha@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/06 12:43:47 Modified files: lib/libcrypto : constant_time.h Log message: Use RCS tag instead of an incorrect path. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/06 13:02:29 Modified files: sys/dev/fdt : rkgrf.c Log message: The simplebus_attach() function already prints a newline, so drop it here. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2023/04/06 13:06:51 Modified files: lib/libcrypto/man: BIO_ctrl.3 Log message: Properly document BIO_set_info_callback(3) and BIO_get_info_callback(3) which where mentioned below SYNOPSIS and HISTORY but not described. Also document the command constant BIO_CTRL_SET_CALLBACK and the deprecated function type name bio_info_cb(3). Mention that callbacks installed using BIO_set_callback_ex(3) and BIO_set_callback(3) can tamper with *all* the return values. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2023/04/06 13:23:12 Modified files: lib/libcrypto/man: BIO_s_connect.3 Log message: Document the effects that BIO_set_info_callback(3), BIO_callback_ctrl(3), BIO_get_info_callback(3), and BIO_info_cb(3) have on connect BIOs. CVSROOT: /cvs Module name: www Changes by: benno@cvs.openbsd.org 2023/04/06 14:15:59 Modified files: . : 73.html Log message: move resolver bugfix to the network section. CVSROOT: /cvs Module name: www Changes by: benno@cvs.openbsd.org 2023/04/06 14:38:26 Modified files: . : 73.html Log message: Order the entries in the 'Improved hardware support and driver bugfixes' section somewhat CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2023/04/06 14:52:18 Modified files: lib/libevent : event_base_new.3 Log message: Fix two documentation bugs: 1. The function event_base_free(3) does reset the global variable to the initial state when needed. 2. The CAVEATS section got the issue backwards: multiple threads per base cause trouble, whereas multiples bases per thread do not. While here, also avoid the plural when talking about the global variable used by event_init(3): there is only one. Using input from jmc@ and from Ted Bullock. CVSROOT: /cvs Module name: www Changes by: benno@cvs.openbsd.org 2023/04/06 14:58:16 Modified files: . : 73.html Log message: sorted Various bugfixes and tweaks in userland CVSROOT: /cvs Module name: www Changes by: benno@cvs.openbsd.org 2023/04/06 15:04:40 Modified files: . : 73.html Log message: whitespace CVSROOT: /cvs Module name: www Changes by: benno@cvs.openbsd.org 2023/04/06 15:10:43 Modified files: . : 73.html Log message: no extended platforms and no mandoc updates CVSROOT: /cvs Module name: www Changes by: benno@cvs.openbsd.org 2023/04/06 15:15:42 Modified files: . : 73.html Log message: whitespace CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/06 15:17:01 Modified files: sys/dev/fdt : rkclock.c rkclock_clocks.h Log message: Add two more RK3568 clocks. ok dlg@ CVSROOT: /cvs Module name: www Changes by: benno@cvs.openbsd.org 2023/04/06 15:46:05 Modified files: . : 73.html Log message: sorted kernel and driver changes CVSROOT: /cvs Module name: www Changes by: tb@cvs.openbsd.org 2023/04/06 16:22:15 Modified files: . : 73.html Log message: i did a few things worth mentioning promote acme-client stuff to its own dedicated section now that it has a few more points CVSROOT: /cvs Module name: www Changes by: job@cvs.openbsd.org 2023/04/06 17:01:39 Modified files: . : lyrics.html Added files: images : 73song.gif Log message: OpenBSD 7.3 song - "The Wizard and the Fish" Lyrics & voice acting by Tara Smeenk Composed & produced by Lourens van der Zwaag CVSROOT: /cvs Module name: www Changes by: krw@cvs.openbsd.org 2023/04/06 18:19:35 Modified files: . : 73.html Log message: Fix displaced link. CVSROOT: /cvs Module name: www Changes by: krw@cvs.openbsd.org 2023/04/06 18:50:00 Modified files: . : 73.html Log message: Some disklabel(8) and fdisk(8) items. CVSROOT: /cvs Module name: www Changes by: krw@cvs.openbsd.org 2023/04/06 19:08:06 Modified files: . : 73.html Log message: cdio(1) and disktab(5) items. CVSROOT: /cvs Module name: src Changes by: deraadt@cvs.openbsd.org 2023/04/06 19:18:01 Modified files: share/misc : airport Log message: add MLN CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/06 21:50:10 Modified files: sys/dev/pci/drm/amd/amdkfd: kfd_migrate.c Log message: drm/amdkfd: Fix BO offset for multi-VMA page migration From Xiaogang Chen b61b21bcbb8a379269de7d2e3e9ceb42e5368ec4 in linux-6.1.y/6.1.23 b4ee9606378bb9520c94d8b96f0305c3696f5c29 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/06 21:52:40 Modified files: sys/dev/pci/drm/amd/amdkfd: kfd_process_queue_manager.c Log message: drm/amdkfd: fix a potential double free in pqm_create_queue From Chia-I Wu b861f0e62ae148eb5f0a48c4d6fcd5dc03b4e252 in linux-6.1.y/6.1.23 b2ca5c5d416b4e72d1e9d0293fc720e2d525fd42 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/06 21:53:55 Modified files: sys/dev/pci/drm/amd/amdkfd: kfd_chardev.c Log message: drm/amdkfd: fix potential kgd_mem UAFs From Chia-I Wu 5045360f3bb62ccd4f87202e33489f71f8bbc3fc in linux-6.1.y/6.1.23 9da050b0d9e04439d225a2ec3044af70cdfb3933 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/06 21:55:33 Modified files: sys/dev/pci/drm/amd/amdkfd: kfd_module.c kfd_priv.h kfd_process.c Log message: drm/amdkfd: Fixed kfd_process cleanup on module exit. From David Belanger b969838c9554a0e9aab3c3cadfcd23d246bc2abe in linux-6.1.y/6.1.23 20bc9f76b6a2455c6b54b91ae7634f147f64987f in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/06 21:57:13 Modified files: sys/dev/pci/drm/i915/display: intel_tc.c Log message: drm/i915/tc: Fix the ICL PHY ownership check in TC-cold state From Imre Deak 75084659969f5cd0287a86e7faae3ef0a5651d1e in linux-6.1.y/6.1.23 38c583019484f190d5b33f59b8ae810e6b1763c6 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/06 21:58:43 Modified files: sys/dev/pci/drm/amd/amdgpu: amdgpu_acpi.c Log message: drm/amdgpu: allow more APUs to do mode2 reset when go to S4 From Tim Huang febacc33298f8d72d5bfd4d23a556cc21b5cd6c2 in linux-6.1.y/6.1.23 2fec9dc8e0acc3dfb56d1389151bcf405f087b10 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/06 22:00:35 Modified files: sys/dev/pci/drm/amd/display/amdgpu_dm: amdgpu_dm_mst_types.c amdgpu_dm_mst_types.h Log message: drm/amd/display: Add DSC Support for Synaptics Cascaded MST Hub From Fangzhi Zuo 41abe8828c83e8f73940790a3861b498a8b5ee3f in linux-6.1.y/6.1.23 f4f3b7dedbe849e780c779ba67365bb1db0d8637 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/06 22:02:25 Modified files: sys/dev/pci/drm/amd/display/amdgpu_dm: amdgpu_dm_mst_types.c amdgpu_dm_mst_types.h Log message: drm/amd/display: Take FEC Overhead into Timeslot Calculation From Fangzhi Zuo fd71f4c9e3fa7454f9797c539abd5fcfc8b92b41 in linux-6.1.y/6.1.23 68dc1846c3a44d5e633be145c169ce2fd5420695 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/06 22:03:48 Modified files: sys/dev/pci/drm/i915/gem: i915_gem_lmem.c Log message: drm/i915/gem: Flush lmem contents after construction From Chris Wilson 21ee19974b19edcda7a8e4f9bd5b02c3a750a69e in linux-6.1.y/6.1.23 d032ca43f2c80049ce5aabd3f208dc3849359497 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/06 22:06:11 Modified files: sys/dev/pci/drm/i915/display: intel_dpt.c sys/dev/pci/drm/i915/gem: i915_gem_object.h i915_gem_object_types.h Log message: drm/i915/dpt: Treat the DPT BO as a framebuffer From Ville Syrjala c781c107731fc09ce4330c8c636b8446d0f72aa4 in linux-6.1.y/6.1.23 3413881e1ecc3cba722a2e87ec099692eed5be28 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/06 22:07:59 Modified files: sys/dev/pci/drm/i915/display: intel_display.c Log message: drm/i915: Disable DC states for all commits From Ville Syrjala 0fc6fea41c7122aa5f2088117f50144b507e13d7 in linux-6.1.y/6.1.23 a2b6e99d8a623544f3bdccd28ee35b9c1b00daa5 in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/06 22:09:51 Modified files: sys/dev/pci/drm/i915/display: intel_color.c Log message: drm/i915: Move CSC load back into .color_commit_arm() when PSR is enabled on skl/glk From Ville Syrjala fcf712b4e5d0aacbc193e71962bdaa4d4afe3335 in linux-6.1.y/6.1.23 a8e03e00b62073b494886dbff32f8b5338066c8b in mainline linux CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/06 22:11:42 Modified files: sys/dev/pci/drm/amd/amdkfd: kfd_migrate.c Log message: drm/amdkfd: Get prange->offset after svm_range_vram_node_new From Xiaogang Chen d0386bd84e6d81990ef22e10657d5a5d9c209763 in linux-6.1.y/6.1.23 8eeddc0d4200762063e1c66b9cc63afa7b24ebf0 in mainline linux CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2023/04/07 00:08:26 Modified files: www/ungoogled-chromium: Makefile distinfo www/ungoogled-chromium/patches: patch-BUILD_gn patch-base_BUILD_gn patch-base_allocator_partition_allocator_page_allocator_internals_posix_h patch-base_allocator_partition_allocator_partition_address_space_cc patch-base_allocator_partition_allocator_partition_alloc_config_h patch-base_allocator_partition_allocator_partition_alloc_constants_h patch-base_allocator_partition_allocator_partition_alloc_gni patch-base_allocator_partition_allocator_partition_page_h patch-base_allocator_partition_allocator_partition_root_cc patch-base_allocator_partition_allocator_starscan_stack_stack_cc patch-base_atomicops_h patch-base_debug_stack_trace_posix_cc patch-base_process_kill_posix_cc patch-base_process_process_iterator_freebsd_cc patch-base_process_process_iterator_openbsd_cc patch-base_process_process_posix_cc patch-base_profiler_module_cache_cc patch-base_synchronization_lock_impl_h patch-base_threading_platform_thread_posix_cc patch-build_config_compiler_BUILD_gn patch-build_config_rust_gni patch-build_toolchain_gcc_toolchain_gni patch-cc_BUILD_gn patch-chrome_app_chrome_main_cc patch-chrome_app_chrome_main_delegate_cc patch-chrome_app_generated_resources_grd patch-chrome_app_settings_strings_grdp patch-chrome_app_theme_chrome_unscaled_resources_grd patch-chrome_browser_about_flags_cc patch-chrome_browser_chrome_browser_interface_binders_cc patch-chrome_browser_chrome_browser_main_cc patch-chrome_browser_chrome_content_browser_client_cc patch-chrome_browser_devtools_devtools_eye_dropper_cc patch-chrome_browser_download_chrome_download_manager_delegate_cc patch-chrome_browser_download_download_commands_cc patch-chrome_browser_download_download_item_model_cc patch-chrome_browser_download_download_prefs_cc patch-chrome_browser_download_download_prefs_h patch-chrome_browser_enterprise_connectors_connectors_service_cc patch-chrome_browser_enterprise_connectors_device_trust_device_trust_service_factory_cc patch-chrome_browser_enterprise_connectors_device_trust_signals_signals_service_factory_cc patch-chrome_browser_enterprise_connectors_reporting_browser_crash_event_router_cc patch-chrome_browser_extensions_BUILD_gn patch-chrome_browser_extensions_api_api_browser_context_keyed_service_factories_cc patch-chrome_browser_extensions_api_enterprise_reporting_private_enterprise_reporting_private_api_cc patch-chrome_browser_extensions_api_passwords_private_passwords_private_delegate_impl_cc patch-chrome_browser_extensions_api_settings_private_prefs_util_cc patch-chrome_browser_file_system_access_chrome_file_system_access_permission_context_cc patch-chrome_browser_flag_descriptions_cc patch-chrome_browser_flag_descriptions_h patch-chrome_browser_headless_headless_mode_util_cc patch-chrome_browser_metrics_chrome_browser_main_extra_parts_metrics_cc patch-chrome_browser_metrics_chrome_metrics_service_client_cc patch-chrome_browser_net_system_network_context_manager_cc patch-chrome_browser_new_tab_page_modules_drive_drive_service_cc patch-chrome_browser_policy_configuration_policy_handler_list_factory_cc patch-chrome_browser_prefs_browser_prefs_cc patch-chrome_browser_prefs_pref_service_incognito_allowlist_cc patch-chrome_browser_printing_print_backend_service_manager_cc patch-chrome_browser_profiles_chrome_browser_main_extra_parts_profiles_cc patch-chrome_browser_profiles_profile_impl_cc patch-chrome_browser_renderer_preferences_util_cc patch-chrome_browser_resources_settings_route_ts patch-chrome_browser_safe_browsing_download_protection_file_analyzer_cc patch-chrome_browser_safe_browsing_download_protection_file_analyzer_h patch-chrome_browser_sync_chrome_sync_client_cc patch-chrome_browser_sync_sync_service_factory_cc patch-chrome_browser_ui_browser_command_controller_cc patch-chrome_browser_ui_browser_h patch-chrome_browser_ui_chrome_pages_cc patch-chrome_browser_ui_chrome_pages_h patch-chrome_browser_ui_sharing_hub_sharing_hub_bubble_controller_h patch-chrome_browser_ui_startup_startup_browser_creator_cc patch-chrome_browser_ui_tab_helpers_cc patch-chrome_browser_ui_views_frame_browser_frame_cc patch-chrome_browser_ui_views_frame_browser_frame_h patch-chrome_browser_ui_views_frame_browser_view_cc patch-chrome_browser_ui_views_frame_opaque_browser_frame_view_cc patch-chrome_browser_ui_views_frame_opaque_browser_frame_view_h patch-chrome_browser_ui_views_frame_picture_in_picture_browser_frame_view_cc patch-chrome_browser_ui_views_frame_picture_in_picture_browser_frame_view_h patch-chrome_browser_ui_views_tabs_tab_drag_controller_cc patch-chrome_browser_ui_views_tabs_tab_hover_card_controller_cc patch-chrome_browser_ui_views_web_apps_web_app_integration_test_driver_cc patch-chrome_browser_ui_webui_about_ui_cc patch-chrome_browser_ui_webui_app_home_app_home_page_handler_cc patch-chrome_browser_ui_webui_chrome_web_ui_controller_factory_cc patch-chrome_browser_ui_webui_settings_settings_localized_strings_provider_cc patch-chrome_browser_web_applications_commands_install_app_locally_command_cc patch-chrome_browser_web_applications_os_integration_os_integration_test_override_cc patch-chrome_browser_web_applications_os_integration_os_integration_test_override_h patch-chrome_browser_web_applications_os_integration_shortcut_sub_manager_cc patch-chrome_browser_web_applications_os_integration_web_app_shortcut_cc patch-chrome_browser_web_applications_os_integration_web_app_shortcut_h patch-chrome_browser_web_applications_os_integration_web_app_shortcut_manager_cc patch-chrome_browser_webauthn_chrome_authenticator_request_delegate_cc patch-chrome_common_chrome_features_cc patch-chrome_common_chrome_features_h patch-chrome_common_chrome_switches_cc patch-chrome_common_chrome_switches_h patch-chrome_common_pref_names_cc patch-chrome_common_pref_names_h patch-chrome_common_webui_url_constants_cc patch-chrome_common_webui_url_constants_h patch-chrome_services_file_util_public_mojom_safe_document_analyzer_mojom_traits_h patch-chrome_services_printing_print_backend_service_impl_cc patch-chrome_test_BUILD_gn patch-components_autofill_core_browser_personal_data_manager_cc patch-components_autofill_core_common_autofill_payments_features_cc patch-components_autofill_core_common_autofill_util_cc patch-components_feature_engagement_public_feature_configurations_cc patch-components_feature_engagement_public_feature_constants_cc patch-components_feature_engagement_public_feature_constants_h patch-components_feature_engagement_public_feature_list_cc patch-components_feature_engagement_public_feature_list_h patch-components_feed_core_v2_proto_util_unittest_cc patch-components_network_session_configurator_browser_network_session_configurator_cc patch-components_network_session_configurator_browser_network_session_configurator_unittest_cc patch-components_password_manager_core_browser_login_database_cc patch-components_password_manager_core_common_password_manager_features_cc patch-components_password_manager_core_common_password_manager_features_h patch-components_policy_core_common_cloud_cloud_policy_client_cc patch-components_services_screen_ai_sandbox_screen_ai_sandbox_hook_linux_cc patch-components_translate_core_common_translate_util_cc patch-components_url_formatter_spoof_checks_idn_spoof_checker_cc patch-content_app_content_main_runner_impl_cc patch-content_browser_BUILD_gn patch-content_browser_audio_audio_service_cc patch-content_browser_gpu_gpu_process_host_cc patch-content_browser_renderer_host_render_process_host_impl_cc patch-content_browser_renderer_host_render_widget_host_view_aura_cc patch-content_common_BUILD_gn patch-content_common_user_agent_cc patch-content_gpu_gpu_main_cc patch-content_gpu_gpu_sandbox_hook_linux_cc patch-content_public_common_content_features_cc patch-content_public_common_content_features_h patch-content_public_common_content_switches_cc patch-content_public_common_content_switches_h patch-content_public_common_zygote_features_gni patch-content_renderer_render_thread_impl_cc patch-content_renderer_renderer_blink_platform_impl_cc patch-content_renderer_renderer_blink_platform_impl_h patch-content_shell_BUILD_gn patch-content_shell_app_shell_main_delegate_cc patch-content_shell_browser_shell_browser_main_parts_cc patch-content_test_BUILD_gn patch-content_utility_services_cc patch-extensions_browser_api_api_browser_context_keyed_service_factories_cc patch-extensions_browser_api_messaging_message_service_cc patch-extensions_browser_api_networking_private_networking_private_delegate_factory_cc patch-extensions_browser_extension_prefs_cc patch-extensions_browser_pref_names_cc patch-extensions_browser_pref_names_h patch-extensions_shell_browser_api_runtime_shell_runtime_api_delegate_cc patch-gpu_command_buffer_common_gpu_memory_buffer_support_cc patch-gpu_command_buffer_service_shared_image_angle_vulkan_image_backing_factory_cc patch-gpu_command_buffer_service_shared_image_external_vk_image_backing_cc patch-gpu_command_buffer_service_shared_image_external_vk_image_backing_factory_cc patch-gpu_command_buffer_service_shared_image_shared_image_manager_cc patch-gpu_command_buffer_service_shared_image_wrapped_sk_image_backing_cc patch-gpu_command_buffer_service_webgpu_decoder_impl_cc patch-gpu_command_buffer_tests_gl_gpu_memory_buffer_unittest_cc patch-gpu_config_gpu_finch_features_cc patch-gpu_ipc_service_gpu_init_cc patch-headless_lib_headless_content_main_delegate_cc patch-media_BUILD_gn patch-media_audio_BUILD_gn patch-media_base_audio_latency_cc patch-media_base_media_switches_cc patch-media_base_media_switches_h patch-media_base_video_frame_cc patch-media_base_video_frame_h patch-media_capture_video_fake_video_capture_device_factory_cc patch-media_capture_video_linux_fake_v4l2_impl_cc patch-media_capture_video_linux_v4l2_capture_delegate_cc patch-media_capture_video_linux_v4l2_capture_delegate_h patch-media_capture_video_video_capture_device_client_cc patch-media_gpu_chromeos_video_decoder_pipeline_cc patch-media_gpu_vaapi_vaapi_video_decoder_cc patch-media_media_options_gni patch-media_mojo_mojom_stable_stable_video_decoder_types_mojom_traits_cc patch-media_video_video_encode_accelerator_adapter_cc patch-mojo_public_tools_bindings_mojom_gni patch-net_BUILD_gn patch-net_cert_cert_verify_proc_cc patch-net_cert_cert_verify_proc_h patch-net_dns_dns_reloader_cc patch-net_socket_tcp_socket_posix_cc patch-net_socket_udp_socket_posix_cc patch-net_socket_udp_socket_unittest_cc patch-printing_mojom_printing_context_mojom_traits_cc patch-printing_print_settings_cc patch-printing_print_settings_conversion_cc patch-printing_print_settings_h patch-printing_printing_context_linux_cc patch-remoting_host_desktop_capturer_proxy_cc patch-remoting_host_heartbeat_sender_cc patch-remoting_host_remote_open_url_remote_open_url_util_cc patch-remoting_protocol_webrtc_video_stream_cc patch-sandbox_policy_BUILD_gn patch-services_cert_verifier_cert_verifier_creation_cc patch-services_device_hid_hid_connection_freebsd_cc patch-services_device_hid_hid_service_freebsd_cc patch-services_device_public_mojom_BUILD_gn patch-services_device_time_zone_monitor_time_zone_monitor_linux_cc patch-services_network_BUILD_gn patch-services_network_network_service_cc patch-services_resource_coordinator_public_cpp_memory_instrumentation_BUILD_gn patch-third_party_angle_BUILD_gn patch-third_party_angle_src_libANGLE_Display_cpp patch-third_party_angle_src_libANGLE_formatutils_cpp patch-third_party_blink_public_platform_platform_h patch-third_party_blink_renderer_controller_blink_initializer_cc patch-third_party_blink_renderer_core_editing_editing_behavior_cc patch-third_party_blink_renderer_core_execution_context_navigator_base_cc patch-third_party_blink_renderer_core_exported_web_view_impl_cc patch-third_party_blink_renderer_core_frame_web_frame_test_cc patch-third_party_blink_renderer_core_layout_layout_view_cc patch-third_party_blink_renderer_modules_ml_webnn_features_gni patch-third_party_blink_renderer_modules_ml_webnn_ml_graph_xnnpack_cc patch-third_party_blink_renderer_modules_peerconnection_webrtc_audio_renderer_test_cc patch-third_party_blink_renderer_modules_webgl_webgl_webcodecs_video_frame_cc patch-third_party_blink_renderer_modules_webgpu_gpu_queue_cc patch-third_party_blink_renderer_platform_BUILD_gn patch-third_party_blink_renderer_platform_fonts_font_cache_cc patch-third_party_blink_renderer_platform_graphics_begin_frame_provider_cc patch-third_party_blink_renderer_platform_graphics_video_frame_submitter_cc patch-third_party_blink_renderer_platform_runtime_enabled_features_json5 patch-third_party_boringssl_BUILD_generated_gni patch-third_party_boringssl_src_crypto_fipsmodule_aes_asm_aesni-x86_64_pl patch-third_party_boringssl_src_crypto_fipsmodule_modes_asm_aesni-gcm-x86_64_pl patch-third_party_boringssl_src_crypto_fipsmodule_modes_asm_ghash-ssse3-x86_64_pl patch-third_party_boringssl_src_crypto_fipsmodule_modes_asm_ghash-x86_64_pl patch-third_party_boringssl_src_include_openssl_base_h patch-third_party_boringssl_src_util_generate_build_files_py patch-third_party_crashpad_crashpad_client_BUILD_gn patch-third_party_dawn_src_dawn_common_Platform_h patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_arm64_config_components_h patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_arm64_config_h patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_ia32_config_asm patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_ia32_config_components_h patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_ia32_config_h patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_x64_config_asm patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_x64_config_components_h patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_x64_config_h patch-third_party_fontconfig_include_config_h patch-third_party_fontconfig_src_src_fccompat_c patch-third_party_leveldatabase_env_chromium_cc patch-third_party_maldoca_BUILD_gn patch-third_party_perfetto_src_base_periodic_task_cc patch-third_party_perfetto_src_tracing_core_tracing_service_impl_cc patch-third_party_sqlite_src_amalgamation_sqlite3_c patch-third_party_test_fonts_fontconfig_generate_fontconfig_caches_cc patch-tools_json_schema_compiler_feature_compiler_py patch-ui_color_color_id_h patch-ui_compositor_compositor_cc patch-ui_compositor_compositor_h patch-ui_gfx_BUILD_gn patch-ui_gfx_gpu_memory_buffer_cc patch-ui_gfx_gpu_memory_buffer_h patch-ui_gfx_switches_h patch-ui_gl_BUILD_gn patch-ui_gl_gl_bindings_h patch-ui_gl_gl_context_cc patch-ui_gl_gl_implementation_cc patch-ui_gl_gl_switches_cc patch-ui_ozone_platform_wayland_host_wayland_toplevel_window_cc patch-ui_ozone_platform_wayland_host_xdg_toplevel_wrapper_impl_cc patch-ui_ozone_platform_wayland_ozone_platform_wayland_cc patch-ui_platform_window_platform_window_delegate_cc patch-ui_platform_window_platform_window_delegate_h patch-ui_views_controls_textfield_textfield_cc patch-ui_views_widget_desktop_aura_desktop_window_tree_host_platform_cc patch-ui_views_widget_widget_cc patch-v8_BUILD_gn patch-v8_include_v8-internal_h patch-v8_include_v8config_h patch-v8_src_api_api_cc patch-v8_src_execution_isolate_cc patch-v8_src_wasm_baseline_ia32_liftoff-assembler-ia32_h Added files: www/ungoogled-chromium/patches: patch-chrome_browser_enterprise_connectors_connectors_prefs_cc patch-chrome_browser_enterprise_connectors_reporting_crash_reporting_context_cc patch-chrome_browser_enterprise_connectors_reporting_crash_reporting_context_h patch-chrome_browser_extensions_api_tabs_tabs_api_cc patch-chrome_browser_metrics_chrome_browser_main_extra_parts_metrics_h patch-chrome_browser_net_system_network_context_manager_h patch-gpu_command_buffer_service_gles2_cmd_decoder_cc patch-headless_lib_browser_headless_browser_main_parts_posix_cc patch-media_capture_video_linux_video_capture_device_factory_v4l2_cc patch-media_capture_video_linux_video_capture_device_factory_v4l2_h patch-printing_backend_cups_helper_cc patch-printing_backend_cups_ipp_helper_cc patch-remoting_host_desktop_and_cursor_conditional_composer_cc patch-remoting_host_desktop_capturer_wrapper_cc patch-third_party_perfetto_include_perfetto_tracing_track_event_legacy_h Removed files: www/ungoogled-chromium/patches: patch-chrome_browser_enterprise_connectors_reporting_browser_crash_event_router_h patch-chrome_browser_web_applications_web_app_provider_cc patch-content_renderer_media_render_media_client_cc patch-gpu_command_buffer_tests_gl_oes_egl_image_unittest_cc patch-gpu_command_buffer_tests_gl_test_utils_cc patch-gpu_command_buffer_tests_gl_test_utils_h patch-headless_lib_browser_headless_browser_main_parts_h patch-headless_lib_browser_headless_browser_main_parts_linux_cc patch-media_base_supported_types_cc patch-media_capture_video_linux_video_capture_device_factory_linux_cc patch-media_capture_video_linux_video_capture_device_factory_linux_h patch-net_dns_dns_reloader_h patch-net_dns_host_resolver_system_task_cc Log message: update to 112.0.5615.49 CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/07 00:18:26 Modified files: sys/dev/ofw : ofw_regulator.c Log message: fixed regulators could have a "gpios" or "gpio" property. we only handled "gpio" before. figuring this out has wasted many days of my life recently. ok patrick@ kettenis@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/07 00:33:49 Modified files: sys/dev/fdt : if_dwqe_fdt.c Log message: register a mapping of dwqe interfaces to ofw nodes/phandles. ok kettenis@ CVSROOT: /cvs Module name: www Changes by: namn@cvs.openbsd.org 2023/04/07 00:58:29 Modified files: . : 73.html Log message: proofreading CVSROOT: /cvs Module name: www Changes by: otto@cvs.openbsd.org 2023/04/07 02:46:03 Modified files: . : 73.html Log message: malloc's main internal data is marked immutable CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/07 02:53:03 Modified files: sys/dev/fdt : if_dwqe_fdt.c sys/dev/ic : dwqe.c dwqevar.h Log message: Determine PHY mode and pass the appropriate flags down to the PHY when we attach it. ok dlg@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/07 03:31:59 Modified files: sys/arch/arm64/dev: rtkit.c Log message: avoid use of uninitialised memory ok miod@ kettenis@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/07 03:33:51 Modified files: sys/dev/ic : dwqevar.h Log message: register a mapping of dwqe interfaces to ofw nodes/phandles. i forgot to commit this as part of src/sys/dev/fdt/if_dwqe_fdt.c r1.7 found by mglocker@ CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/04/07 03:40:18 Modified files: distrib/miniroot: install.sub Log message: Nail the root disk default in the guided disk encryption case Save the softraid volume's device and make it root disk default, being the only legit choice in this case; this gets it always right on systems with multiple physical disks. All other install/upgrade cases keep picking the first available [sw]d* disk as root disk default. OK afresh1 CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/07 03:43:38 Modified files: sys/kern : makesyscalls.sh Log message: Fix whitespace on two lines CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/07 04:58:23 Modified files: net/librenms : Makefile distinfo net/librenms/patches: patch-misc_config_definitions_json net/librenms/pkg: PLIST Log message: update to librenms-23.4.0 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/07 05:01:38 Modified files: security/libgpg-error: Makefile distinfo security/libgpg-error/pkg: PLIST Log message: Update to libgpg-error-1.47. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/07 05:02:05 Modified files: security/libgcrypt: Makefile distinfo Added files: security/libgcrypt/patches: patch-config_h_in patch-configure patch-random_rndgetentropy_c Log message: Update to libgcrypt-1.10.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/07 05:09:15 Modified files: sysutils/consul-template: Makefile distinfo modules.inc Log message: Update to consul-template-0.31.0. CVSROOT: /cvs Module name: www Changes by: jsing@cvs.openbsd.org 2023/04/07 07:37:11 Modified files: . : 73.html Log message: Fix markup. CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/04/07 07:48:42 Modified files: distrib/miniroot: install.sub Log message: Default 'Is the disk partition alrady mounted?' to 'no' on install For installation, no partitions whatsoever are mounted, so 'yes' is always wrong unless the user manually mounted stuff before that question. No change for upgrade, where partitions on the root disk are mounted. Idea from naddy, diff from Mikhail (mp39590 AT gmail) Tweaks from me OK op afresh1 CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/04/07 07:49:03 Modified files: usr.sbin/bgpd : rde.c rde.h rde_rib.c Log message: Pass a pt_entry pointer to rib_get() and rib_add(). Add rib_get_addr() to behave like rib_get() did before. OK tb@ CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/04/07 08:42:51 Modified files: sbin/fdisk : part.c part.h Log message: Add helper functions find_mbr_desc() and find_gpt_desc() to allow checking mbr_type[N].mt_desc and gpt_type[N].gt_desc before using name on menu when printing out partition tables. Tweak logic in find_mbr_type() and find_gpt_type() to be a bit more paranoid. Tweak function/variable names to be more in line to usage. No functional change as all mt_desc and gt_desc are currently NULL. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2023/04/07 08:47:37 Modified files: lib/libcrypto/man: BIO_set_callback.3 Log message: Mark BIO_CB_return(), BIO_cb_pre(), and BIO_cb_post() as intentionally undocumented because they are unused according to codesearch.debian.net and would cause nothing but obfuscation if they were used. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/07 08:49:50 Modified files: www/webkitgtk4 : Makefile distinfo www/webkitgtk4/patches: patch-Source_JavaScriptCore_assembler_ARM64Assembler_h patch-Source_JavaScriptCore_assembler_ARMv7Assembler_h patch-Source_JavaScriptCore_jsc_cpp patch-Source_JavaScriptCore_offlineasm_arm64_rb patch-Source_JavaScriptCore_runtime_Options_cpp patch-Source_WTF_wtf_PlatformCPU_h patch-Source_WTF_wtf_PlatformEnable_h patch-Source_WTF_wtf_PlatformHave_h patch-Source_WebCore_platform_network_DNS_h patch-Source_cmake_OptionsCommon_cmake patch-Source_cmake_WebKitCommon_cmake patch-Source_cmake_WebKitCompilerFlags_cmake patch-Source_cmake_WebKitFeatures_cmake www/webkitgtk4/pkg: PLIST Added files: www/webkitgtk4/patches: patch-Source_WebCore_CMakeLists_txt patch-Source_WebCore_SourcesGTK_txt patch-Source_WebKit_UIProcess_API_glib_WebKitUserContentManager_cpp patch-Source_WebKit_UIProcess_Launcher_glib_ProcessLauncherGLib_cpp patch-Source_WebKit_gtk_webkitgtk-web-process-extension_pc_in patch-Source_WebKit_gtk_webkitgtk_pc_in www/webkitgtk4/pkg: PFRAG.no-webkitgtk60 PFRAG.webkitgtk60 Removed files: www/webkitgtk4/patches: patch-Source_WebKit_gtk_webkit2gtk-web-extension_pc_in patch-Source_WebKit_gtk_webkit2gtk_pc_in www/webkitgtk4/pkg: PFRAG.no-webkitgtk50 PFRAG.webkitgtk50 Log message: Update to webkitgtk{40,41,60}-2.40.0 Add a hack from robert@ to fix build without support for eventfd and using epoll-shim instead. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/07 08:51:18 Log message: Re-import webkitgtk50-2.38.5 from www/webkitgtk4 into its own port. The webkitgtk50 API is deprecated (webkitgtk60 is the new one) but we still need it until we update to the next GNOME version. Status: Vendor Tag: ajacoutot Release Tags: ajacoutot_20230407 N ports/www/webkitgtk50/Makefile N ports/www/webkitgtk50/distinfo N ports/www/webkitgtk50/patches/patch-Source_WTF_wtf_PlatformCPU_h N ports/www/webkitgtk50/patches/patch-Source_WTF_wtf_dtoa_utils_h N ports/www/webkitgtk50/patches/patch-Source_cmake_WebKitCommon_cmake N ports/www/webkitgtk50/patches/patch-Source_JavaScriptCore_API_glib_JSCOptions_cpp N ports/www/webkitgtk50/patches/patch-Source_JavaScriptCore_assembler_ARM64Assembler_h N ports/www/webkitgtk50/patches/patch-Source_JavaScriptCore_assembler_ARMv7Assembler_h N ports/www/webkitgtk50/patches/patch-Source_JavaScriptCore_assembler_MacroAssemblerX86Common_h N ports/www/webkitgtk50/patches/patch-Source_JavaScriptCore_heap_BlockDirectory_cpp N ports/www/webkitgtk50/patches/patch-Source_JavaScriptCore_javascriptcoregtk_pc_in N ports/www/webkitgtk50/patches/patch-Source_JavaScriptCore_jsc_cpp N ports/www/webkitgtk50/patches/patch-Source_WTF_wtf_InlineASM_h N ports/www/webkitgtk50/patches/patch-Source_JavaScriptCore_offlineasm_arm64_rb N ports/www/webkitgtk50/patches/patch-Source_JavaScriptCore_runtime_MachineContext_h N ports/www/webkitgtk50/patches/patch-Source_JavaScriptCore_runtime_Options_cpp N ports/www/webkitgtk50/patches/patch-Source_ThirdParty_ANGLE_src_common_platform_h N ports/www/webkitgtk50/patches/patch-Source_WTF_wtf_PageBlock_h N ports/www/webkitgtk50/patches/patch-Source_WTF_wtf_PlatformEnable_h N ports/www/webkitgtk50/patches/patch-Source_WTF_wtf_PlatformHave_h N ports/www/webkitgtk50/patches/patch-Source_WTF_wtf_Platform_h N ports/www/webkitgtk50/patches/patch-Source_WTF_wtf_RawHex_h N ports/www/webkitgtk50/patches/patch-Source_WebCore_PAL_pal_PlatformGTK_cmake N ports/www/webkitgtk50/patches/patch-Source_WebCore_crypto_algorithms_CryptoAlgorithmAES_GCM_cpp N ports/www/webkitgtk50/patches/patch-Source_WebCore_page_NavigatorBase_cpp N ports/www/webkitgtk50/patches/patch-Source_WebCore_platform_graphics_FontSelectionAlgorithm_h N ports/www/webkitgtk50/patches/patch-Source_WebCore_platform_network_DNS_h N ports/www/webkitgtk50/patches/patch-Source_WebCore_rendering_RenderLayerBacking_h N ports/www/webkitgtk50/patches/patch-Source_WebDriver_PlatformGTK_cmake N ports/www/webkitgtk50/patches/patch-Source_cmake_OptionsCommon_cmake N ports/www/webkitgtk50/patches/patch-Source_WebKit_gtk_webkit2gtk-web-extension_pc_in N ports/www/webkitgtk50/patches/patch-Source_WebKit_gtk_webkit2gtk_pc_in N ports/www/webkitgtk50/patches/patch-Source_bmalloc_bmalloc_AvailableMemory_cpp N ports/www/webkitgtk50/patches/patch-Source_bmalloc_bmalloc_AvailableMemory_h N ports/www/webkitgtk50/patches/patch-Source_bmalloc_bmalloc_BPlatform_h N ports/www/webkitgtk50/patches/patch-Source_cmake_WebKitCompilerFlags_cmake N ports/www/webkitgtk50/patches/patch-Source_cmake_WebKitFeatures_cmake N ports/www/webkitgtk50/pkg/PLIST N ports/www/webkitgtk50/pkg/DESCR No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/07 08:51:56 Modified files: www : Makefile Log message: +webkitgtk50 -webkitgtk4,webkitgtk50 +webkitgtk4,webkitgtk60 CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2023/04/07 08:52:36 Added files: math/coq/patches: patch-Makefile_make Log message: math/coq: fix build with gmake 4.4 gmake 4.4 now recognizes the generated coqpp_parse.mli file as an intermediate file and removes it after use. Add yacc-produced files to the explicit list of generated .mli files. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/07 08:52:47 Modified files: databases/evolution-data-server: Makefile x11/gnome/builder: Makefile x11/gnome/initial-setup: Makefile Log message: www/webkitgtk4,webkitgtk50 -> www/webkitgtk50 CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2023/04/07 09:08:55 Modified files: shells/yash : Makefile distinfo shells/yash/patches: patch-configure patch-variable_c Log message: shells/yash: update to 2.54 CVSROOT: /cvs Module name: ports Changes by: jturner@cvs.openbsd.org 2023/04/07 09:22:28 Modified files: sysutils/login_duo: Makefile distinfo Log message: Update login_duo to 2.0.1 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/07 09:22:36 Modified files: games/tuxpaint/patches: patch-Makefile Log message: Oops, forgot this chunk in previous. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2023/04/07 09:39:18 Modified files: regress/lib/libcrypto/man: check_complete.pl Log message: Two minor tweaks that are useful for processing bio.h, among other headers: * ignore lines defining "__bounded__()" * ignore whitespace between "#" and "include" CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2023/04/07 09:43:18 Modified files: regress/lib/libcrypto/man: check_complete.pl Log message: Ignore ten getter and setter control macros related to proxy BIOs. Those are not useful because such a BIO type neither exists in LibreSSL nor in OpenSSL 1.1.1. Not adding the deprecation notice to some manual page because there is no manual page that is even vaguely related. CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/04/07 10:34:41 Modified files: sbin/fdisk : cmd.c gpt.c Log message: Oops. Missed files in last commit. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/07 11:09:54 Modified files: regress/lib/libcrypto/bn: bn_gcd.c Log message: Improve some test failure reporting CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/07 12:14:22 Modified files: www/py-beautifulsoup4: Makefile Log message: build backend changed to hatchling CVSROOT: /cvs Module name: www Changes by: naddy@cvs.openbsd.org 2023/04/07 14:32:36 Modified files: . : 73.html Log message: 7.3 release: 8474 powerpc64 packages CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2023/04/07 16:02:58 Modified files: sys/net : if.c sys/netinet : if_ether.c Log message: Remove kernel locks from the ARP input path. Caller if_netisr() grabs the exclusive netlock and that is sufficent for in_arpinput() and arpcache(). with kn@; OK mvs@; tested by Hrvoje Popovski CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/07 16:14:20 Modified files: regress/lib/libcrypto/bn: bn_test.c Log message: bn_test: inline the only use of lst[] lst[] can be converted from a bit string to a hex string. Use BN_hex2bn() isntead of BN_bin2bn(). Handle this inside test_lshift() rather than doing artistic ownership dances. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/07 16:18:42 Modified files: regress/lib/libcrypto/bn: bn_test.c Log message: bn_test: handle rc consistently Various test functions had bugs due to the fact that the return code would be set to 1 at the top so that each error would have to set rc = 0. This is silly. Fail closed instead by setting rc = 0 at the top and only flipping to 1 before the err label CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/07 16:22:10 Modified files: regress/lib/libcrypto/bn: bn_test.c Log message: bn_test: rand_neg() is not only one of the most stupidly named functions in the entire code base it also has a few parentheses too many CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/07 16:23:31 Modified files: regress/lib/libcrypto/bn: bn_test.c Log message: bn_test: a few early return would leak. goto err instead CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/07 16:25:09 Modified files: regress/lib/libcrypto/bn: bn_test.c Log message: bn_test: use bn_copy() instead of BN_free/BN_dup This is not only simpler but also required by an upcoming change. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/07 16:28:21 Modified files: regress/lib/libcrypto/bn: bn_test.c Log message: bn_test: keep the error stack clean Make message() print and clear the error stack. This way we can know what test errored. To make this work also clear the error stack after a handful of xfail tests. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/07 16:29:33 Modified files: regress/lib/libcrypto/bn: bn_test.c Log message: bn_test: move rc initialization to its own line CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/07 16:30:31 Modified files: regress/lib/libcrypto/bn: bn_test.c Log message: bn_test: drop a few braces that are now unnecessary CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/07 16:32:59 Modified files: regress/lib/libcrypto/bn: bn_test.c Log message: bn_test: pass BN_CTX into all functions There is a BN_CTX at program scope. Pass it into all test functions. This simplifies memory management at the end of the functions quite a bit. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/07 16:36:38 Modified files: regress/lib/libcrypto/bn: bn_test.c Log message: bn_test: rename rc into ret as per usual CVSROOT: /cvs Module name: ports Changes by: kmos@cvs.openbsd.org 2023/04/07 16:53:15 Modified files: net/weechat : Makefile Log message: net/weechat,-lua uses C++, so ports-gcc must be used on base-gcc arches Fixes the buid on sparc64 CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/07 16:55:26 Modified files: sys/dev/fdt : if_dwqe_fdt.c Log message: print which gmac the dwqe driver is attaching to. there's no guarantee that dwqe0 in the kernel will attach to gmac0 in the device tree, so print it to make it explicit what's going where. ok patrick@ kettenis@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/07 17:03:32 Modified files: lib/libcrypto/bn: bn_mont.c Log message: bn_mont: fix typo in comment divisable -> divisible CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/04/07 17:22:39 Modified files: security/openssl-ruby-tests: Makefile distinfo Added files: security/openssl-ruby-tests/patches: patch-test_openssl_test_bn_rb Log message: Update to openssl-ruby-tests 20230407 Add a patch to fix a bug in a bn test that relies on a particular modular square root being chosen. CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/04/07 17:23:23 Modified files: security/rust-openssl-tests: Makefile crates.inc distinfo security/rust-openssl-tests/pkg: PLIST Log message: Update to rust-openssl-tests 20230408 CVSROOT: /cvs Module name: ports Changes by: kmos@cvs.openbsd.org 2023/04/07 17:28:59 Modified files: math/igraph : Makefile Log message: Building debug package fails with: "libigraph.so.2.0.dbg: Unknown DWARF DW_OP_182" Disable building of debug package for non-ld.lld arches Fixes build on sparc64 CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2023/04/07 19:10:55 Modified files: . : 73.html Log message: repair href formatting issue CVSROOT: /cvs Module name: www Changes by: cheloha@cvs.openbsd.org 2023/04/07 19:52:39 Modified files: . : 73.html Log message: 73.html: revise the summaries of my meager achievements While here, tweak a few other things that don't ring right. CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/07 20:32:38 Modified files: sys/dev/fdt : ahci_fdt.c Log message: try and cope with not having the firmware/boot loader init the hardware. more specifically, spin up the clocks and phy, and if the device tree has a "ports-implemented" property use it to initialise the AHCI_REG_PI register. this gets sata working on a banana pi bpi-r2 pro. help from jared mcneill ok jmatthew@ kettenis@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/07 23:38:25 Modified files: sys/dev/fdt : if_mvpp.c Log message: correct write to MV_XLG_PORT_MAC_CTRL4_REG tested by matthieu@ ok patrick@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/07 23:40:54 Modified files: sys/dev/fdt : sdhc_fdt.c Log message: add missing write to XENON_EMMC_PHY_PAD_CONTROL2 ok patrick@ CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/08 00:23:30 Modified files: astro/kstars : Makefile distinfo Log message: Update kstars to 3.6.4 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/08 00:58:53 Modified files: www/py-beautifulsoup4: Makefile distinfo Log message: update to py3-beautifulsoup4-4.12.2 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/08 01:10:17 Modified files: mail/neomutt : Makefile distinfo mail/neomutt/patches: patch-color_command_c patch-pager_display_c Log message: update to neomutt-20230407 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/08 02:06:03 Modified files: net/py-botocore: Makefile distinfo net/py-botocore/pkg: PLIST Log message: Update to py3-botocore-1.29.109. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/08 02:06:16 Modified files: net/py-boto3 : Makefile distinfo Log message: Update to py3-boto3-1.26.109. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/08 02:06:35 Modified files: sysutils/awscli: Makefile distinfo Log message: Update to awscli-1.27.109. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/08 04:34:56 Modified files: security/pizauth: Makefile crates.inc distinfo Log message: update to pizauth-0.2.2, from Laurence Tratt (maintainer) CVSROOT: /cvs Module name: www Changes by: kmos@cvs.openbsd.org 2023/04/08 04:45:04 Added files: faq : upgrade73.html Log message: Initial version of 7.3 upgrade instructions CVSROOT: /cvs Module name: www Changes by: kettenis@cvs.openbsd.org 2023/04/08 04:56:51 Modified files: . : 73.html Log message: arm64 feature bit printing really isn't worth mentioning in release notes CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2023/04/08 05:05:00 Modified files: . : 73.html Log message: remove duplicate, spotted by kettenis CVSROOT: /cvs Module name: ports Changes by: matthieu@cvs.openbsd.org 2023/04/08 05:10:22 Modified files: x11/motif : Makefile x11/motif/patches: patch-lib_Xm_VirtKeys_c Log message: Fix patch-lib_Xm_VirtKeys_c to check max keycode value against the proper value. Reported and fix tested by a1ex at dismail dot de. Also tested by Walter Alejandro Iglesias who reported the initial issue. ok tb@ CVSROOT: /cvs Module name: www Changes by: bcook@cvs.openbsd.org 2023/04/08 05:53:52 Modified files: libressl : index.html releases.html Log message: LibreSSL 3.7.2 stable release CVSROOT: /cvs Module name: src Changes by: mvs@cvs.openbsd.org 2023/04/08 07:49:38 Modified files: sys/net : if.c Log message: Move rtm_ifannounce(IFAN_DEPARTURE) outside netlock within if_detach(). This is the mbuf(9) allocation and broadcast transmission for PF_ROUTE sockets, netlock is not required here. ok bluhm@ CVSROOT: /cvs Module name: src Changes by: mvs@cvs.openbsd.org 2023/04/08 07:50:22 Modified files: sys/netinet : ip_gre.c Log message: Do not reload `inp' in gre_send(). The pointer to PCB of raw socket is immutable, we don't need to reload it again. ok bluhm@ CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/04/08 09:25:47 Modified files: sbin/fdisk : part.c Log message: A bit more guid vs uuid naming consistency. No functional change. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2023/04/08 10:21:22 Added files: lib/libevent : event_base_loop.3 Log message: New manual page written by Ted Bullock , providing more information and in a more systematic way than the current event(3) manual page. Not yet linked to the tree. Using input from nicm@ and jmc@. CVSROOT: /cvs Module name: ports Changes by: pascal@cvs.openbsd.org 2023/04/08 10:56:52 Modified files: www/honk : Makefile distinfo www/honk/pkg : MESSAGE PLIST README Log message: Update to honk 0.9.91, from MAINTAINER Horia Racoviceanu. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/08 11:43:30 Modified files: regress/lib/libcrypto/bn: bn_test.c Log message: bn_test: two minor style tweaks CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/04/08 12:12:08 Modified files: sys/lib/libsa : fchmod.c Log message: Return -1 on actual failure MI boot.c's "a-x" fchmod on bsd.upgrade is the only caller that checks the return value and that call can fail on, e.g. softraid volumes. Stop clobbering the actual fchmod return value and get that warning printed. OK deraadt CVSROOT: /cvs Module name: www Changes by: kmos@cvs.openbsd.org 2023/04/08 17:09:46 Modified files: faq : current.html Log message: Roll current.html CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/08 23:15:20 Modified files: x11/qt5 : Makefile.version x11/qt5/docs : distinfo x11/qt5/docs/pkg: PLIST-html x11/qt5/qt3d : distinfo x11/qt5/qtbase : Makefile distinfo x11/qt5/qtbase/patches: patch-src_network_kernel_qnetworkinterface_unix_cpp x11/qt5/qtcharts: distinfo x11/qt5/qtconnectivity: distinfo x11/qt5/qtdatavis3d: distinfo x11/qt5/qtdeclarative: distinfo x11/qt5/qtgamepad: distinfo x11/qt5/qtgraphicaleffects: distinfo x11/qt5/qtimageformats: distinfo x11/qt5/qtlocation: distinfo x11/qt5/qtlottie: distinfo x11/qt5/qtmultimedia: distinfo x11/qt5/qtnetworkauth: distinfo x11/qt5/qtpurchasing: distinfo x11/qt5/qtquickcontrols: distinfo x11/qt5/qtquickcontrols2: distinfo x11/qt5/qtremoteobjects: distinfo x11/qt5/qtscript: distinfo x11/qt5/qtscxml: distinfo x11/qt5/qtsensors: distinfo x11/qt5/qtserialbus: distinfo x11/qt5/qtserialport: distinfo x11/qt5/qtspeech: distinfo x11/qt5/qtsvg : distinfo x11/qt5/qttools: distinfo x11/qt5/qttranslations: distinfo x11/qt5/qtvirtualkeyboard: distinfo x11/qt5/qtwayland: distinfo x11/qt5/qtwebchannel: distinfo x11/qt5/qtwebglplugin: distinfo x11/qt5/qtwebsockets: distinfo x11/qt5/qtwebview: distinfo x11/qt5/qtx11extras: distinfo x11/qt5/qtxmlpatterns: distinfo Log message: Update Qt5 to 5.15.9 CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/08 23:15:45 Modified files: multimedia/qtav: Makefile Log message: Bump after Qt5 update CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/08 23:16:41 Modified files: meta/qt5 : Makefile Log message: Remove REVISION after Qt5 update to 5.15.9 CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2023/04/08 23:16:59 Modified files: . : 73.html Log message: fix double 'the' CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2023/04/08 23:27:38 Modified files: . : 73.html Log message: spelling CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/08 23:28:16 Modified files: devel/gsl : Makefile distinfo devel/gsl/patches: patch-doc_gsl_3 patch-ieee-utils_read_c devel/gsl/pkg : DESCR PLIST Log message: Update gsl to 2.7.1 CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/08 23:29:05 Modified files: math/labplot : Makefile distinfo math/labplot/pkg: PLIST Log message: Update labplot to 2.10.0 CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/08 23:47:54 Modified files: devel/catch2 : Makefile distinfo devel/catch2/pkg: PLIST Log message: Update catch2 to 3.3.2 CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/09 00:02:45 Modified files: graphics/GraphicsMagick: Makefile distinfo graphics/GraphicsMagick/patches: patch-configure graphics/GraphicsMagick/pkg: PLIST Log message: Update GraphicsMagick to 1.3.40. Update diff from Brad CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/09 00:04:29 Modified files: net/dnsmasq : Makefile distinfo net/dnsmasq/patches: patch-man_dnsmasq_8 Log message: Update to dnsmasq 2.89. version 2.89 Fix bug introduced in 2.88 (commit fe91134b) which can result in corruption of the DNS cache internal data structures and logging of "cache internal error". This has only been seen in one place in the wild, and it took considerable effort to even generate a test case to reproduce it, but there's no way to be sure it won't strike, and the effect is to break the cache badly. Installations with DNSSEC enabled are more likely to see the problem, but not running DNSSEC does not guarantee that it won't happen. Thanks to Timo van Roermund for reporting the bug and for his great efforts in chasing it down. Update diff from Brad CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/09 00:07:08 Modified files: multimedia/libheif: Makefile distinfo multimedia/libheif/pkg: PLIST Removed files: multimedia/libheif/patches: patch-libheif_CMakeLists_txt Log message: Update to libheif 1.15.2. - codec plugin system now also works with Windows - heif_convert: manually choose which decoder should be used - support for CLLI (content light level box), MDCV (mastering display colour volume), PASP (pixel aspect) information - ICC profile support in gdk-pixbuf loader Update diff from Brad CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/09 00:10:06 Modified files: textproc/libunibreak: Makefile distinfo Log message: Update to libunibreak 5.1. - Speed up line-break property lookup - Update the data to conform to Unicode 15 Update diff from Brad CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/09 00:14:31 Modified files: multimedia/libass: Makefile distinfo Log message: Update to libass 0.17.1. libass (0.17.1) * Fix buffer overread if soft-wrapping occurred and ASS_FEATURE_WHOLE_TEXT_LAYOUT was enabled via API or due to Encoding -1 (bug introduced in 0.16.0) * x86: detect GNU Hurd and configure NASM appropriately libass (0.17.0) * Fix various parts relating to automatic linebreaking * Fix rendering when hinting was enabled and fontsizes or scales are zero * Switch build to a non-recursive setup for improved parallelism * Improve quality of SSA Effects movement * Further documentation improvements * Completely invalid Events are now discarded during parsing * Introduction of LayoutRes{X,Y} script headers * New AlphaLevel style override to set all alpha values while keeping the color * Add ASS_FEATURE_WRAP_UNICODE to allow automatic linebreaks in accordance with the Unicode line breaking algorithm instead of ASS' much stricter breaking rules. For the feature to be available at runtime, libass must be linked against the new optional dependency libunibreak. * Improve VSFilter compatibility: * Fix premature truncation of animated alphas (was a 0.15.0 regression) * Fix handling of small delay parameters for legacy SSA Effects * Fix x-scaling with PlayResX * Fix x-scaling for anamorphic video (except for \be whose scaling remains buggy in general) * Support SSA's AlphaLevel style field * Support the \kt override tag from VSFilter's v4++ set * Parse ScriptType headers * Parse integer header, style and event field values like VSFilter * Ignore trailing whitespace in an event's text Update diff from Brad CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/09 00:15:33 Modified files: multimedia/libvpx: Makefile distinfo multimedia/libvpx/patches: patch-configure Log message: Update to libvpx 1.13.0. 2023-01-31 v1.13.0 "Ugly Duckling" This release includes more Neon and AVX2 optimizations, adds a new codec control to set per frame QP, upgrades GoogleTest to v1.12.1, and includes numerous bug fixes. - Upgrading: This release is ABI incompatible with the previous release. New codec control VP9E_SET_QUANTIZER_ONE_PASS to set per frame QP. GoogleTest is upgraded to v1.12.1. .clang-format is upgraded to clang-format-11. VPX_EXT_RATECTRL_ABI_VERSION was bumped due to incompatible changes to the feature of using external rate control models for vp9. - Enhancement: Numerous improvements on Neon optimizations. Numerous improvements on AVX2 optimizations. Additional ARM targets added for Visual Studio. - Bug fixes: Fix to calculating internal stats when frame dropped. Fix to segfault for external resize test in vp9. Fix to build system with replacing egrep with grep -E. Fix to a few bugs with external RTC rate control library. Fix to make SVC work with VBR. Fix to key frame setting in VP9 external RC. Fix to -Wimplicit-int (Clang 16). Fix to VP8 external RC for buffer levels. Fix to VP8 external RC for dynamic update of layers. Fix to VP9 auto level. Fix to off-by-one error of max w/h in validate_config. Fix to make SVC work for Profile 1. Update diff form Brad CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/09 00:16:31 Modified files: net/libcares : Makefile distinfo Log message: Update to libcares 1.19.0. c-ares version 1.19.0 This is a feature and bugfix release. It addresses a couple of new feature requests as well as a couple of bug fixes. Security: o Low. Stack overflow in ares_set_sortlist() which is used during c-ares initialization and typically provided by an administrator and not an end user. [24] Changes: o Windows: Drop support for XP and derivatives which greatly cleans up initialization code. [3] o Add ARES_OPT_HOSTS_FILE similar to ARES_OPT_RESOLVCONF for specifying a custom hosts file location. [10] o Add vcpkg installation instructions [13] Bug fixes: o Fix cross-compilation from Windows to Linux due to CPACK logic. [1] o Fix memory leak in reading /etc/hosts when using localhost fallback. [2] o Fix chain building c-ares when libresolv is already included by another project [4] o File lookup should not immediately abort as there may be other tries due to search criteria. o Asterisks should be allowed in host validation as CNAMEs may reference wildcard domains [5] o AutoTools build system referenced bad STDC_HEADERS macro [6] o Even if one address class returns a failure for ares_getaddrinfo() we should still return the results we have o CMake Windows: DLLs did not include resource file to include versions [7] [8] o CMake: Guard target creation in exported config [9] o Fix ares_getaddrinfo() numerical address resolution with AF_UNSPEC [11] o Apple: fix libresolv configured query times. [12] o Fix tools and help information [14] [15] o Various documentation fixes and cleanups [16] [22] [25] o Add include guards to ares_data.h [17] o c-ares could try to exceed maximum number of iovec entries supported by system [18] o CMake package config generation allow for absolute install paths [19] o Intel compiler fixes [20] o ares_strsplit bugs [21] [23] o The RFC6761 6.3 states localhost subdomains must be offline too. [26] Update diff from Brad CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/09 00:17:17 Modified files: multimedia/aom : Makefile distinfo multimedia/aom/patches: patch-CMakeLists_txt patch-build_cmake_aom_configure_cmake Log message: Update to aom 3.6.0. 2023-02-03 v3.6.0 This release includes compression efficiency and perceptual quality improvements, speedup and memory optimizations, and some new features. This release is ABI compatible with the last release. - New Features * New values 20-27 (corresponding to levels 7.0-7.3 and 8.0-8.3) for the encoder control AV1E_SET_TARGET_SEQ_LEVEL_IDX (note that the proposal to add the new levels are still in draft status). The original special value 24 (keep level stats only for level monitoring) is renumbered as 32. * New encoder control AV1E_SET_SKIP_POSTPROC_FILTERING to skip the application of post-processing filters on reconstructed frame in all intra mode. * New encoder option "kf-max-pyr-height": Maximum height of pyramid structure used for the GOP starting with a key frame (-1 to 5). * Make SVC work for screen content. * Rate control improvements to reduce frame-size spikes for screen content coding. * RISC-V architecture support with gcc toolchain. - Compression Efficiency Improvements * Peak compression efficiency in VOD setting is improved by 1%. * 0.7% - 2.2% RTC encoding BDrate gains for real time speed 8 to 10. * 15% RTC encoding BDrate gains for screen content speed 10. - Perceptual Quality Improvements * Resolved a visual quality issue that was reported for high resolution clips (2K) for speed 4 and above in VOD use case. * Visual quality improvements to screen content coding. * Quality improvements to temporal layer RTC coding. - Speedup and Memory Optimizations * RTC single-thread encoder speedup: o ~6% instruction count reduction for speed 5 and 6. o ~15% instruction count reduction for speed 7. o ~10% instruction count reduction for speed 8 to 10 (>=360p resolutions). * RTC multi-thread encoder speedup (beyond single-thread speedup): o 5-8% encode time reduction for speed 7 to 10. * RTC screen-content encoder speedup: o 11% instruction count reduction for speed 9 and 10 (>=720p resolutions). * ~5% reduction in heap memory requirements for RTC, speed 6 to 10. * AVIF: o 4-5% speedup for speed 9 in still-picture encoding mode. o 3-4% heap memory reduction in still-picture encoding mode for 360p-720p resolutions with multiple threads. - Bug Fixes * Added a workaround for an AV1 specification bug which makes TRANSLATION type global motion models unusable. * Fixed AddressSanitizer global-buffer-overflow errors in av1/encoder/arm/neon/av1_fwd_txfm2d_neon.c. * Fixed AddressSanitizer heap-buffer-overflow error in av1_wiener_convolve_add_src_neon(). * chromium:1393384 Avoid scene detection on spatial resize. * aomedia:3308 Remove color artifacts under high motion. * aomedia:3310 Avoid out of memory failures with Visual Studio 2017, 2019, and 2022 for Win32 x86 builds. * aomedia:3346 Make SVC work properly for screen content. * aomedia:3348 Fix a bug where an uninitialized search_site is used. * aomedia:3365 Work around what seems like a Visual Studio 2022 compiler optimization bug. * aomedia:3369 Incorrect PSNR values reported by libaom for 12-bit encode. Update diff from Brad CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/09 00:27:35 Modified files: games/freecol : Makefile distinfo games/freecol/files: freecol games/freecol/pkg: PLIST Log message: Update freecol to 1.0.0. While here switch HOMEPAGE to HTTPS. Update diff from wen heping CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/09 00:27:52 Modified files: lib/libcrypto/man: BIO_dup_chain.3 share/man/man4 : scmi.4 Log message: fix double words CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/09 00:46:06 Modified files: editors/sigil : Makefile distinfo Log message: Update sigil to 1.9.30 Update diff from wen heping CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/09 01:01:42 Modified files: mail/fdm : Makefile distinfo Log message: Update fdm to 2.2 Update diff from Ricardo Mestre, maintainer timeout CVSROOT: /cvs Module name: www Changes by: jsg@cvs.openbsd.org 2023/04/09 01:14:45 Modified files: . : 57.html 68.html 72.html errata69.html errata71.html errata72.html lyrics.html events.html faq : upgrade52.html Log message: fix double words CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2023/04/09 01:45:50 ports/devel/highway/patches Update of /cvs/ports/devel/highway/patches In directory cvs.openbsd.org:/tmp/cvs-serv49658/patches Log Message: Directory /cvs/ports/devel/highway/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2023/04/09 01:53:53 Modified files: devel/highway : Makefile Added files: devel/highway/patches: patch-CMakeLists_txt Log message: riscv64: don't forcefully enable -march=rv64gcv1p0 No support in clang and our kernel yet CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/09 02:40:00 Modified files: security/sslscan: Makefile distinfo Log message: update to sslscan-2.0.16 CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2023/04/09 03:22:43 Modified files: www/chromium : Makefile Log message: remove PATCHORIG CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/09 06:28:38 Modified files: devel/kf5 : kf5.port.mk devel/kf5/attica: Makefile distinfo devel/kf5/baloo: Makefile distinfo devel/kf5/baloo/pkg: PLIST devel/kf5/bluez-qt: Makefile distinfo devel/kf5/breeze-icons: distinfo devel/kf5/breeze-icons/pkg: PLIST devel/kf5/extra-cmake-modules: distinfo devel/kf5/frameworkintegration: distinfo devel/kf5/kactivities: distinfo devel/kf5/kactivities-stats: distinfo devel/kf5/kapidox: distinfo devel/kf5/karchive: distinfo devel/kf5/karchive/pkg: PLIST devel/kf5/kauth: Makefile distinfo devel/kf5/kbookmarks: distinfo devel/kf5/kcalendarcore: Makefile distinfo devel/kf5/kcmutils: distinfo devel/kf5/kcodecs: distinfo devel/kf5/kcompletion: Makefile distinfo devel/kf5/kconfig: Makefile distinfo devel/kf5/kconfigwidgets: Makefile distinfo devel/kf5/kcontacts: Makefile distinfo devel/kf5/kcoreaddons: Makefile distinfo devel/kf5/kcrash: distinfo devel/kf5/kdav : distinfo devel/kf5/kdbusaddons: Makefile distinfo devel/kf5/kdeclarative: distinfo devel/kf5/kded : distinfo devel/kf5/kdelibs4support: distinfo devel/kf5/kdesignerplugin: distinfo devel/kf5/kdesu: Makefile distinfo devel/kf5/kdewebkit: distinfo devel/kf5/kdnssd: Makefile distinfo devel/kf5/kdoctools: distinfo devel/kf5/kemoticons: distinfo devel/kf5/kfilemetadata: distinfo devel/kf5/kglobalaccel: Makefile distinfo devel/kf5/kguiaddons: Makefile distinfo devel/kf5/kholidays: distinfo devel/kf5/khtml: distinfo devel/kf5/ki18n: Makefile distinfo devel/kf5/kiconthemes: distinfo devel/kf5/kidletime: Makefile distinfo devel/kf5/kimageformats: distinfo devel/kf5/kinit: distinfo devel/kf5/kio : Makefile distinfo devel/kf5/kio/pkg: PLIST devel/kf5/kirigami2: distinfo devel/kf5/kitemmodels: distinfo devel/kf5/kitemviews: distinfo devel/kf5/kjobwidgets: Makefile distinfo devel/kf5/kjs : distinfo devel/kf5/kjsembed: distinfo devel/kf5/kmediaplayer: distinfo devel/kf5/knewstuff: Makefile distinfo devel/kf5/knotifications: Makefile distinfo devel/kf5/knotifyconfig: distinfo devel/kf5/kpackage: distinfo devel/kf5/kparts: Makefile distinfo devel/kf5/kpeople: Makefile distinfo devel/kf5/kplotting: distinfo devel/kf5/kpty : Makefile distinfo devel/kf5/kquickcharts: distinfo devel/kf5/kross: distinfo devel/kf5/krunner: Makefile distinfo devel/kf5/kservice: distinfo devel/kf5/ktexteditor: Makefile distinfo devel/kf5/ktextwidgets: Makefile distinfo devel/kf5/kunitconversion: Makefile distinfo devel/kf5/kwallet: Makefile distinfo devel/kf5/kwayland: distinfo devel/kf5/kwidgetsaddons: Makefile distinfo devel/kf5/kwindowsystem: distinfo devel/kf5/kxmlgui: Makefile distinfo devel/kf5/kxmlrpcclient: distinfo devel/kf5/oxygen-icons: distinfo devel/kf5/plasma-framework: distinfo devel/kf5/prison: distinfo devel/kf5/purpose: distinfo devel/kf5/purpose/pkg: PLIST devel/kf5/qqc2-desktop-style: distinfo devel/kf5/solid: Makefile distinfo devel/kf5/sonnet: Makefile distinfo devel/kf5/syndication: Makefile distinfo devel/kf5/syntax-highlighting: Makefile distinfo devel/kf5/threadweaver: distinfo Log message: Update KDE Frameworks to 5.105.0 https://kde.org/announcements/frameworks/5/5.105.0/ CVSROOT: /cvs Module name: www Changes by: job@cvs.openbsd.org 2023/04/09 06:39:32 Modified files: . : 73.html Log message: Add missing bulletpoint CVSROOT: /cvs Module name: ports Changes by: jsg@cvs.openbsd.org 2023/04/09 08:28:14 Modified files: cad/kicad-share/packages3D: Makefile cad/kicad-share/packages3D/pkg: DESCR chinese/libtabe: Makefile chinese/libtabe/pkg: DESCR databases/p5-DBIx-DBSchema: Makefile databases/p5-DBIx-DBSchema/pkg: DESCR devel/npth : Makefile devel/npth/pkg : DESCR devel/p5-String-Tagged-Terminal: Makefile devel/p5-String-Tagged-Terminal/pkg: DESCR devel/py-wcwidth: Makefile devel/py-wcwidth/pkg: DESCR devel/vanessa/logger: Makefile devel/vanessa/logger/pkg: DESCR fonts/chivo : Makefile fonts/chivo/pkg: DESCR fonts/league-fonts/junction: Makefile fonts/league-fonts/junction/pkg: DESCR games/puzzles : Makefile games/puzzles/pkg: DESCR graphics/dcmtk : Makefile graphics/dcmtk/pkg: DESCR graphics/jbigkit: Makefile graphics/jbigkit/pkg: DESCR lang/kawa : Makefile lang/kawa/pkg : DESCR lang/rsm : Makefile lang/rsm/pkg : DESCR mail/rss2email : Makefile mail/rss2email/pkg: DESCR print/latex-mk : Makefile print/latex-mk/pkg: DESCR security/p5-Text-Password-Pronounceable: Makefile security/p5-Text-Password-Pronounceable/pkg: DESCR sysutils/hcloud: Makefile sysutils/hcloud/pkg: DESCR sysutils/multitail: Makefile sysutils/multitail/pkg: DESCR sysutils/tarsnapper: Makefile sysutils/tarsnapper/pkg: DESCR textproc/meld : Makefile textproc/meld/pkg: DESCR textproc/py-patiencediff: Makefile textproc/py-patiencediff/pkg: DESCR www/netsurf/libnspsl: Makefile www/netsurf/libnspsl/pkg: DESCR www/polipo : Makefile www/polipo/pkg : DESCR Log message: fix double words in DESCR ok sthen@ CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2023/04/09 08:30:24 Modified files: lib/libevent : event_base_new.3 Log message: Explain what it means that an API function "requires event_init(3)" in one place, not in two places, reducing duplication of text. Joint work with Ted Bullock. OK jmc@. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2023/04/09 08:43:51 Modified files: lib/libevent : event_base_loop.3 Log message: Trim some redundant and a bit of misleading text: 1. The values of #define'd constants are part of the ABI, but not of the API. Programmers need not worry about them and must not rely on them. Consequently, do not list these values in the SYNOPSIS. 2. libevent can be used for any event loop, not only for the main loop of a program. 3. No need to state numbers of arguments, they are obvious from the SYNOPSIS. 4. If a function is documented to require a pointer to a specific kind of object as an argument, there is no need to say passing NULL is undefined. OK jmc@ and Ted Bullock CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/09 09:40:09 Modified files: lib/libcrypto/evp: m_sha1.c Log message: Rename SHA functions to have sha{1,224,256,384,512}_ prefix. Also remove some unnecessary parentheses. No functional change. ok tb@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/09 09:47:41 Modified files: lib/libcrypto/evp: m_sha1.c Log message: Provide and use sha{224,384}_{update,final} functions. Improve readability and consistency by providing and using functions named for the specific hash, rather than reusing the sha256/sha512 update and final functions. No functional change. ok tb@ CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/04/09 10:51:00 Modified files: security/rust-openssl-tests: Makefile distinfo security/rust-openssl-tests/patches: patch-openssl-sys_build_main_rs Log message: Update rust-openssl-tests to 20230409 CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/04/09 11:19:59 Modified files: sbin/fdisk : cmd.c part.c part.h Log message: Refactor and simplify GPT menu selection logic. No intentional functional change. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/09 11:28:52 Modified files: usr.bin/openssl: x509.c Log message: Minor code cleanup Unwrap a few awkwardly wrapped lines, drop redundant parentheses and add empty lines after some variable declarations. No change in the generated assembly. CVSROOT: /cvs Module name: src Changes by: jcs@cvs.openbsd.org 2023/04/09 11:50:02 Modified files: sys/dev/acpi : acpithinkpad.c Log message: don't attach temperature sensors for which there is no TMP# node in the DSDT, and verify the result of the fetch when updating it later. ok kn CVSROOT: /cvs Module name: ports Changes by: naddy@cvs.openbsd.org 2023/04/09 11:52:47 Modified files: shells/yash : Makefile Log message: shells/yash: add GitHub mirror CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/09 12:26:26 Modified files: lib/libtls : tls_internal.h tls_signer.c Log message: Drop X9.31 support from libtls The TLS signer isn't exposed in public API (we should finally fix it...) and it supports X9.31, a standard that has been retired and deprecated for a very long time. libcrypto will stop supporting it soon, this step is needed to prepare userland. ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/09 12:33:26 Modified files: usr.bin/openssl: openssl.1 rsautl.c Log message: Remove X9.31 support from openssl(1) The X9.31 standard has long been retired and deprecated and libcrypto will drop support for it soon. This prepares userland. ok jsing CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2023/04/09 12:37:38 Modified files: net/openvpn : Makefile distinfo Log message: Update to openvpn-2.6.2 ChangeLog: https://community.openvpn.net/openvpn/wiki/ChangesInOpenvpn26 CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/09 12:38:59 Modified files: lib/libcrypto/bn: bn_gcd.c Log message: Remove some doubled empty lines CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2023/04/09 13:09:07 Modified files: lang/mawk : Makefile distinfo Log message: Update to mawk-1.3.4-20230203 CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/09 13:10:23 Modified files: lib/libcrypto/dh: dh.h dh_depr.c lib/libcrypto/dsa: dsa.h dsa_depr.c lib/libcrypto/err: err.c err.h lib/libcrypto/rsa: rsa.h rsa_depr.c Log message: Move a few functions out of OPENSSL_NO_DEPRECATED Geoff Thorpe added OPENSSL_NO_DEPRECATED nearly two decades ago. The hope was that at some point some functions can be dropped. Most of the functions marked deprecated are actually unused nowadays but unfortunately some of them are still used in the ecosystem. Move them out of OPENSSL_NO_DEPRECATED so we can define it without breaking the consumers in the next bump. ERR_remove_state() is still used by a dozen or so ports. This isn't a big deal since it is just a stupid wrapper for the not quite as deprecated ERR_remove_thread_state(). It's not worth patching these ports. Annoyingly, {DH,DSA}_generate_parameters() and RSA_generate_key() are still used. They "make use" of the old-style BN_GENCB callback, which is therefore more difficult to remove - in case you don't know know: that's the thing responsible for printing pretty '.', '+' and '*' when you generate keys. Most annoyingly, DH_generate_parameters() was added to rust-openssl in 2020 for "advanced DH support". This is very unfortunate since cargo bundles a rust-openssl and updates it only every few years or so. As a consequence we're going to be stuck with this nonsense for a good while. ok beck jsing CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/09 13:48:37 Modified files: sys/arch/arm64/arm64: pmap.c sys/arch/arm64/conf: Makefile.arm64 Log message: So clang 13 miscompiles dev/usb/umass_scsi.c with the combination if -Oz and -mbranch-protection=bti. So turn off the BTI protection in ramdisk kernels for now. ok deraadt@, miod@, phessler@ CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/09 13:52:58 Modified files: multimedia/dav1d: Makefile distinfo Log message: Update to dav1d 1.1.0. Changes for 1.1.0 'Arctic Peregrine Falcon': ------------------------------------------- 1.1.0 is an important release of dav1d, fixing numerous bugs, and adding SIMD - New function dav1d_get_frame_delay to query the decoder frame delay - Numerous fixes for strict conformity to the specs and samples - NEON and AVX-512 misc fixes and improvements - Partial AVX2 12bpc transform implementations - AVX-512 high bit-depth cdef_filter, loopfilter, itx - NEON z1/z3 optimization for 8bpc - SSSE3 z1 optimization for 8bpc Update diff from Brad CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/09 13:58:54 Modified files: net/iperf3 : Makefile distinfo net/iperf3/patches: patch-src_iperf_api_c Removed files: net/iperf3/patches: patch-configure_ac patch-src_iperf_h patch-src_iperf_locale_c patch-src_tcp_info_c Log message: Update to iperf3 3.13. iperf-3.13 2023-02-16 --------------------- * Notable user-visible changes * fq-rate (PR #1461, Issue #1366), and bidirectional flag (Issue #1428, PR #1429) were added to the JSON output. * Added support for OpenBSD including cleaning up endian handling (PR #1396) and support for TCP_INFO on systems where it was implemented (PR #1397). * Fixed bug in how TOS is set in mapped v4 (PR #1427). * Corrected documentation, such as updating binary download links and text (Issue #1459), updating version on iperf3 websites, and fixing an incorrect error message (Issue #1441). * Fixed crash on rcv-timeout with JSON logfile (#1463, #1460, issue #1360, PR #1369). * Fixed a bug that prevented TOS/DSCP from getting set correctly for reverse tests (PR #1427, Issue #638). * Developer-visible changes * Getter and setter are now available for bind_dev (PR #1419). * Added missing getter for bidirectional tests (PR #1453). * Added minor changes to clean up .gitignore and error messages (#1408). * Made sure configure scripts are runnable with /bin/sh (PR #1398). * Cleaned up RPM spec, such as adding missing RPM build dependencies, dropping EL5 and removing outdated %changelog (PR #1401) to make. * Added a fix for a resource leak bug in function iperf_create_pidfile(#1443). Update diff from Brad CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/09 14:03:20 Modified files: x11/mplayer : Makefile distinfo x11/mplayer/patches: patch-configure patch-libao2_ao_sndio_c patch-stream_tvi_bsdbt848_c Removed files: x11/mplayer/patches: patch-libmpcodecs_ve_lavc_c Log message: Update MPlayer to 20230409 snapshot. Update diff from Brad CVSROOT: /cvs Module name: src Changes by: gnezdo@cvs.openbsd.org 2023/04/09 17:41:42 src/regress/libexec/ld.so/subst/prog2 Update of /cvs/src/regress/libexec/ld.so/subst/prog2 In directory cvs.openbsd.org:/cvs.d/hack/gnezdo/src/regress/libexec/ld.so/subst/prog2 Log Message: Directory /cvs/src/regress/libexec/ld.so/subst/prog2 added to the repository CVSROOT: /cvs Module name: src Changes by: gnezdo@cvs.openbsd.org 2023/04/09 17:41:48 Modified files: libexec/ld.so : resolve.c regress/libexec/ld.so/subst: Makefile Added files: regress/libexec/ld.so/subst/prog2: Makefile main.c Log message: Treat symlinks better in $ORIGIN determination in ld.so Now symlinking an executable away from the rest of its installation tree no longer prevents it from finding the libraries. This matches the behavior of other OS linkers. Prompted by a behavior change in lang/ghc test suite. Swapped the order of dirname/realpath in _dl_origin_path. Added some regress tests that pass and then bin3 that fails without this change and reflects the behavior needd for lang/ghc. Suggestion by semarie@, OK deraadt@ CVSROOT: /cvs Module name: www Changes by: tj@cvs.openbsd.org 2023/04/09 20:54:15 Modified files: faq/pf : index.html Log message: drop a few redundant sentences CVSROOT: /cvs Module name: www Changes by: tj@cvs.openbsd.org 2023/04/09 20:54:38 Modified files: . : plus73.html Log message: use consistent naming for -current CVSROOT: /cvs Module name: www Changes by: tj@cvs.openbsd.org 2023/04/09 20:55:09 Modified files: . : alpha.html amd64.html anoncvs.html arm64.html armv7.html errata72.html ftp.html hppa.html i386.html landisk.html loongson.html luna88k.html macppc.html octeon.html powerpc64.html riscv64.html sparc64.html stable.html build : Makefile build/mirrors : anoncvs.html.head ftp.html.end faq : faq1.html faq10.html faq13.html faq14.html faq16.html faq4.html faq5.html index.html faq/pf : example1.html faq/ports : ports.html Log message: 7.3 updates CVSROOT: /cvs Module name: www Changes by: tj@cvs.openbsd.org 2023/04/09 20:59:40 Modified files: faq : upgrade72.html Log message: uncomment 7.3 upgrade guide links CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/09 22:21:20 Modified files: sys/arch/amd64/amd64: db_disasm.c sys/arch/armv7/exynos: ec_commands.h sys/arch/armv7/marvell: mvmpic.c sys/arch/hppa/include: atomic.h sys/arch/i386/include: mpbiosreg.h sys/arch/amd64/include: mpbiosreg.h sys/arch/luna88k/stand/boot: ufs_disksubr.c sys/arch/sparc64/sparc64: mdesc.c sys/dev/dt : dtvar.h sys/dev/fdt : rkpmic.c fanpwr.c sys/uvm : uvm_map.c uvm_pmemrange.c uvm_vnode.c sys/dev/pci : mbg.c sys/arch/sh/sh : clock.c Log message: spelling CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/09 23:38:55 Modified files: inputmethods/fcitx-kkc: Makefile inputmethods/fcitx-kkc/patches: patch-CMakeLists.txt patch-gui_CMakeLists_txt Log message: Fix build with CMake 3.26 Fix from upstream: https://github.com/fcitx/fcitx5-kkc/commit/85b56d6289550174b15f108e355f39d7083f8c5c OK Yifei Zhan (maintainer) CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/09 23:43:30 Modified files: devel/cmake : Makefile distinfo devel/cmake/patches: patch-Source_cmFileCommand_cxx patch-Source_cmFindPackageCommand_cxx patch-Source_cmGeneratorTarget_cxx patch-Source_cmGlobalGenerator_cxx patch-Source_cmTarget_cxx devel/cmake/pkg: PLIST Log message: Update CMake to 3.26.3 CMake 3.26.2 went through a aarch64 bulk build from phessler@, thanks! CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/09 23:46:29 Modified files: x11/qt6 : Makefile Makefile.version x11/qt6/qt3d : Makefile distinfo x11/qt6/qt3d/pkg: PLIST x11/qt6/qt5compat: Makefile distinfo x11/qt6/qt5compat/pkg: PLIST x11/qt6/qtbase : Makefile distinfo x11/qt6/qtbase/patches: patch-cmake_QtBuild_cmake patch-cmake_QtCompilerOptimization_cmake patch-cmake_QtFeature_cmake patch-cmake_QtProcessConfigureArgs_cmake patch-cmake_QtRpathHelpers_cmake patch-qmake_generators_unix_unixmake2_cpp patch-src_corelib_plugin_qelfparser_p_cpp patch-src_network_ssl_qsslsocket_openssl_symbols_cpp patch-src_plugins_tls_openssl_qx509_openssl_cpp x11/qt6/qtbase/pkg: PLIST-global PLIST-main x11/qt6/qtcharts: Makefile distinfo x11/qt6/qtcharts/pkg: PLIST x11/qt6/qtconnectivity: Makefile distinfo x11/qt6/qtconnectivity/pkg: PLIST x11/qt6/qtdatavis3d: Makefile distinfo x11/qt6/qtdatavis3d/pkg: PLIST x11/qt6/qtdeclarative: Makefile distinfo x11/qt6/qtdeclarative/patches: patch-src_qml_configure_cmake patch-src_qml_jit_qv4assemblercommon_p_h x11/qt6/qtdeclarative/pkg: PLIST x11/qt6/qtimageformats: distinfo x11/qt6/qtlanguageserver: Makefile distinfo x11/qt6/qtlanguageserver/pkg: PLIST x11/qt6/qtlottie: Makefile distinfo x11/qt6/qtlottie/pkg: PLIST x11/qt6/qtmultimedia: Makefile distinfo x11/qt6/qtmultimedia/pkg: PLIST x11/qt6/qtnetworkauth: Makefile distinfo x11/qt6/qtnetworkauth/pkg: PLIST x11/qt6/qtpositioning: Makefile distinfo x11/qt6/qtpositioning/pkg: PLIST x11/qt6/qtquick3d: Makefile distinfo x11/qt6/qtquick3d/pkg: PLIST x11/qt6/qtquicktimeline: Makefile distinfo x11/qt6/qtquicktimeline/pkg: PLIST x11/qt6/qtremoteobjects: Makefile distinfo x11/qt6/qtremoteobjects/pkg: PLIST x11/qt6/qtscxml: Makefile distinfo x11/qt6/qtscxml/pkg: PLIST x11/qt6/qtsensors: Makefile distinfo x11/qt6/qtsensors/pkg: PLIST x11/qt6/qtserialbus: Makefile distinfo x11/qt6/qtserialbus/pkg: PLIST x11/qt6/qtserialport: Makefile distinfo x11/qt6/qtserialport/pkg: PLIST x11/qt6/qtshadertools: Makefile distinfo x11/qt6/qtshadertools/pkg: PLIST x11/qt6/qtsvg : Makefile distinfo x11/qt6/qtsvg/pkg: PLIST x11/qt6/qttools: Makefile distinfo x11/qt6/qttools/pkg: PLIST x11/qt6/qttranslations: distinfo x11/qt6/qttranslations/pkg: PLIST x11/qt6/qtvirtualkeyboard: Makefile distinfo x11/qt6/qtvirtualkeyboard/pkg: PLIST x11/qt6/qtwayland: Makefile distinfo x11/qt6/qtwayland/patches: patch-CMakeLists_txt x11/qt6/qtwayland/pkg: PLIST Added files: x11/qt6/qtdeclarative/patches: patch-src_qml_memory_qv4stacklimits_cpp Removed files: x11/qt6/qtbase/patches: patch-mkspecs_features_qt_module_prf Log message: Update Qt6 to 6.5.0 (LTS) https://www.qt.io/blog/qt-6.5-lts-released CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/09 23:48:20 Modified files: security/age-plugin-yubikey: Makefile crates.inc distinfo Log message: Updat age-plugin-yubikey to 0.4.0 Update diff from Volker Schlecht (maintainer) CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/09 23:53:22 Modified files: devel/sdcc : Makefile distinfo devel/sdcc/pkg : PLIST Removed files: devel/sdcc/patches: patch-sim_ucsim_cmd_src_Makefile_in patch-sim_ucsim_cmd_src_cmdlex_l Log message: Update sdcc to 4.2.0 Port Changes from Sven M. Hallberg: - Removed the only two patches (patch-sim_ucsim_cmd_src_Makefile_in and patch-sim_ucsim_cmd_src_cmdlex_l) that change the name cmdpars.hh to cmdpars.h. Their comment says "Allow use of in-base yacc." The build worked for me without them, using yacc from base - Changes to CONFIGURE_ENV: - Changed sdcc_cv_CCggdb=no to sdcc_cv_c_ggdb=no. I think this may have been a typo?! - Guessing that the intention was to not compile anything with -ggdb, I also added sdcc_cv_cxx_ggdb=no and bor_cv_c_ggdb=no. The latter appears in debugger/mcs51/configure. - Removed sdcc_cv_c_fms_extensions=no. I could not find that variable in the source. - Added curses to WANTLIB (needed by serialview). Update diff from Sven M. Hallberg, thanks CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/10 00:18:12 Modified files: multimedia/svt-av1: Makefile distinfo Removed files: multimedia/svt-av1/patches: patch-CMakeLists_txt patch-Source_Lib_Encoder_Codec_EbRateControlProcess_c Log message: Update SVT-AV1 to 1.4.1 Update diff from Brad, thanks CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/10 00:20:49 Modified files: multimedia/xine-ui: Makefile distinfo multimedia/xine-ui/pkg: PLIST Removed files: multimedia/xine-ui/patches: patch-src_xitk_xine-toolkit_backend_x11_c Log message: Update Xine-ui to 0.99.14. xine-ui (0.99.14) * Add Dutch translation. * Add panel mrl display highlight. * Add display flipping support. * Better keyboard support. * Better status OSD. * Better setup, key binding and mediamark editors. * Better filename filter. * Fix build with libcaca. * Fix menu hide. * Fix directory add to playlists. * Many small fixes and optinizations. * Update german translation. Update diff from Brad, thanks CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/10 00:24:49 Modified files: sysutils/vifm : Makefile distinfo sysutils/vifm/pkg: PLIST Log message: Update vifm to 0.13 Update diff from xaizek (maintainer) CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/10 00:38:53 Modified files: devel/qbs : Makefile distinfo devel/qbs/patches: patch-cmake_QbsBuildConfig_cmake devel/qbs/pkg : PLIST Added files: devel/qbs/patches: patch-src_lib_corelib_jsextensions_domxml_cpp patch-src_shared_quickjs_quickjs_c Removed files: devel/qbs/patches: patch-doc_man_man_pri Log message: Update QBS to 2.0.0 Switch from qmake/qt5 to cmake/qt6 to unbreak the build. CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/04/10 02:08:04 Modified files: security/rust-openssl-tests: Makefile distinfo Log message: Update to rust-openssl-tests 20230410 CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/10 02:57:06 Modified files: lang/elixir : Makefile distinfo Log message: Update elixir to 1.14.4 Update diff from Volker Schlecht (maintainer) CVSROOT: /cvs Module name: ports Changes by: remi@cvs.openbsd.org 2023/04/10 03:01:56 Modified files: sysutils/librelp: Makefile distinfo Log message: update librelp to version 1.10.0 ok tb CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/10 06:11:22 Modified files: sys/dev/usb : umcs.c Log message: fix setting parity bits ok mglocker@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/10 06:57:15 Modified files: distrib/notes/arm64: prep distrib/notes/armv7: prep distrib/notes/riscv64: prep Log message: fix 'in in' CVSROOT: /cvs Module name: www Changes by: job@cvs.openbsd.org 2023/04/10 07:01:35 Modified files: . : 73.html artwork.html Added files: images : DryGarden-s.gif DryGarden.png puffy73.gif Log message: Add OpenBSD 7.3 release art Artwork by George Mager CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2023/04/10 07:32:29 Modified files: lib/libevent : event_base_new.3 Log message: More deduplication: talk about environment variable in one place, not two. Clarify that the variables only affect the event_base structure currently being created. They do not disable "library support" as a whole. Sort the variables alphabetically. OK jmc@ and Ted Bullock CVSROOT: /cvs Module name: www Changes by: deraadt@cvs.openbsd.org 2023/04/10 07:39:05 Modified files: . : 73.html index.html Log message: prep for 7.3 rollover CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2023/04/10 07:40:17 Modified files: lib/libevent : event_base_loop.3 Log message: Various wording tweaks for clarity and precision, and a few for conciseness. OK jmc@ and Ted Bullock CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/10 07:57:32 Modified files: regress/lib/libcrypto/bn: bn_to_string.c Log message: Rework the bn_to_string() to use public API We can use the undocumented functions {i2s,s2i}_ASN1_INTEGER(3) to exercise bn_to_string(). This way we use public API and remove the need of linking statically. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/10 07:57:57 Modified files: regress/lib/libcrypto/bn: Makefile Log message: bn_to_string no longer needs to be linked statically CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/10 08:10:26 Modified files: lib/libcrypto/x509: x509_utl.c Log message: Make bn_to_string() static This function is no longer used directly by regress, so it can now be local to this file. CVSROOT: /cvs Module name: www Changes by: job@cvs.openbsd.org 2023/04/10 08:10:35 Modified files: . : 73.html Log message: Reference 7.3 song CVSROOT: /cvs Module name: ports Changes by: fcambus@cvs.openbsd.org 2023/04/10 08:46:10 Modified files: fonts/spleen : Makefile distinfo Log message: Update spleen to 1.9.3. CVSROOT: /cvs Module name: www Changes by: stsp@cvs.openbsd.org 2023/04/10 08:56:51 Modified files: . : index.html Log message: fix typo: 54rd -> 54th release CVSROOT: /cvs Module name: src Changes by: tobhe@cvs.openbsd.org 2023/04/10 09:14:04 Modified files: sys/arch/arm64/dev: apldc.c aplhidev.c Log message: Enable caps lock LED on modern Apple laptop keyboards. ok kettenis@ patrick@ CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2023/04/10 09:20:49 Modified files: app/beforelight: COPYING ChangeLog Makefile.am Makefile.in aclocal.m4 b4light.c configure configure.ac app/beforelight/man: Makefile.in Added files: app/beforelight: README.md Removed files: app/beforelight: README Log message: Update to beforelight 1.0.6 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2023/04/10 09:25:49 Modified files: app/xdriinfo : ChangeLog Makefile.am Makefile.in aclocal.m4 compile configure configure.ac xdriinfo.c app/xdriinfo/man: Makefile.in Added files: app/xdriinfo : README.md Removed files: app/xdriinfo : README Log message: Update to xdriinfo 1.0.7 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2023/04/10 09:30:17 Modified files: app/xhost : COPYING ChangeLog Makefile.am Makefile.in aclocal.m4 compile config.h.in configure configure.ac xhost.c app/xhost/man : Makefile.in Log message: Update to xhost 1.0.9 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2023/04/10 09:34:57 Modified files: app/xkbcomp : ChangeLog Makefile.in aclocal.m4 compat.c compile config.h.in configure configure.ac indicators.c symbols.c app/xkbcomp/man: xkbcomp.man Log message: Update to xkbcomp 1.4.6 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2023/04/10 09:39:01 Modified files: app/xvidtune : ChangeLog Makefile.am Makefile.in aclocal.m4 compile configure configure.ac xvidtune.c app/xvidtune/man: Makefile.in xvidtune.man Added files: app/xvidtune : README.md Removed files: app/xvidtune : README Log message: Update to xvidtune 1.0.4 CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/04/10 09:57:05 Modified files: devel/github-cli: Makefile distinfo devel/github-cli/pkg: PLIST Log message: update to github-cli 2.27.0 CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/04/10 10:02:35 Modified files: textproc/loccount: Makefile distinfo textproc/loccount/pkg: PLIST Log message: update to loccount 2.15 CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/04/10 10:02:51 Modified files: sysutils/gitlab-cli: Makefile distinfo modules.inc Log message: update to gitlab-cli 1.27.1 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2023/04/10 10:16:52 Modified files: app/xwininfo : COPYING ChangeLog Makefile.bsd-wrapper Makefile.in README.md aclocal.m4 compile config.h.in configure configure.ac dsimple.c xwininfo.c app/xwininfo/man: Makefile.in Log message: Update to xwininfo 1.1.6 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2023/04/10 10:25:33 Modified files: driver/xf86-input-elographics: ChangeLog Makefile.in README.md aclocal.m4 configure configure.ac driver/xf86-input-elographics/man: Makefile.am Makefile.in driver/xf86-input-elographics/src: Makefile.in xf86Elo.c Log message: Update to xf86-input-elographics 1.4.3 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2023/04/10 10:33:31 Modified files: driver/xf86-input-joystick: ChangeLog Makefile.am Makefile.in aclocal.m4 compile config.h.in configure configure.ac driver/xf86-input-joystick/config: Makefile.in driver/xf86-input-joystick/include: Makefile.in driver/xf86-input-joystick/man: Makefile.in joystick.man driver/xf86-input-joystick/src: Makefile.in backend_bsd.c backend_evdev.c backend_joystick.c jstk.h jstk_axis.c jstk_options.c Added files: driver/xf86-input-joystick: README.md Removed files: driver/xf86-input-joystick: README Log message: Update to xf86-input-joystick 1.6.4 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2023/04/10 10:38:33 Modified files: driver/xf86-input-mouse: ChangeLog Makefile.in README aclocal.m4 compile config.h.in configure configure.ac driver/xf86-input-mouse/include: Makefile.in driver/xf86-input-mouse/man: Makefile.in driver/xf86-input-mouse/src: Makefile.in bsd_mouse.c mouse.c pnp.c sun_mouse.c Log message: Update to xf86-input-mouse 1.9.4 CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/10 10:42:35 Modified files: benchmarks/tsung: Makefile distinfo benchmarks/tsung/pkg: PLIST Removed files: benchmarks/tsung/patches: patch-src_test_ts_test_utils_erl Log message: Update tsung to 1.8.0 Update diff from Volker Schlecht CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/10 10:45:01 Modified files: security/age-plugin-yubikey: Makefile Removed files: security/age-plugin-yubikey/pkg: MESSAGE Log message: Remove MESSAGE, forgotten in update to 0.4.0 commit Spotted by maintainer CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/10 10:46:00 Modified files: lib/libcrypto/x509: x509v3.h Log message: Fix indentation of structs and unions in x509v3.h No change according to diff -w CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2023/04/10 11:08:52 Modified files: driver/xf86-input-void: ChangeLog Makefile.am Makefile.in aclocal.m4 compile configure configure.ac driver/xf86-input-void/man: Makefile.in driver/xf86-input-void/src: Makefile.in void.c Added files: driver/xf86-input-void: README.md Removed files: driver/xf86-input-void: README Log message: Update to xf86-input-void 1.4.2 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2023/04/10 11:15:06 Modified files: driver/xf86-input-vmmouse: ChangeLog Makefile.in aclocal.m4 config.h.in configure configure.ac driver/xf86-input-vmmouse/fdi: Makefile.in driver/xf86-input-vmmouse/man: Makefile.in vmmouse_detect.man driver/xf86-input-vmmouse/shared: Makefile.in driver/xf86-input-vmmouse/src: Makefile.in driver/xf86-input-vmmouse/tools: Makefile.in vmmouse_iopl.c Log message: Update to xf86-input-vmmouse 13.2.0 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2023/04/10 11:34:09 Modified files: driver/xf86-video-nv: ChangeLog Makefile.am Makefile.in README.G80 aclocal.m4 compile configure configure.ac driver/xf86-video-nv/man: Makefile.in driver/xf86-video-nv/src: Makefile.am Makefile.in nv_driver.c nv_hw.c nv_include.h nv_video.c riva_include.h riva_xaa.c Added files: driver/xf86-video-nv: README.md driver/xf86-video-nv/src: pci_ids.h Removed files: driver/xf86-video-nv: README Log message: Update to xf86-video-nv 2.1.22 CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2023/04/10 11:45:01 Modified files: . : README Log message: Note that gettext-tools is needed for autoreconf CVSROOT: /cvs Module name: xenocara Changes by: matthieu@cvs.openbsd.org 2023/04/10 11:45:28 Modified files: . : MODULES Log message: update CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/10 13:02:30 Modified files: regress/lib/libcrypto/bn: Makefile Added files: regress/lib/libcrypto/bn: bn_general.c Log message: Provide benchmarks for BN_copy() CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/10 13:08:41 Modified files: x11/autorandr : Makefile distinfo Log message: Update autorandr to 1.13.3 OK Ashton Fagg (maintainer) and thfr@ CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/10 13:25:11 Modified files: sysutils/kubectl: Makefile distinfo Log message: Update kubectl to 1.26.3 CVSROOT: /cvs Module name: ports Changes by: jeremy@cvs.openbsd.org 2023/04/10 13:26:35 Modified files: audio : Makefile databases : Makefile devel : Makefile graphics : Makefile net : Makefile security : Makefile sysutils : Makefile textproc : Makefile www : Makefile x11 : Makefile Log message: Stop building ruby30 ports by default Ruby 3.0 is now in security maintenance mode, so per our Ruby support policy, we will no longer build ruby30 packages by default. CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/04/10 13:44:43 Modified files: sbin/fdisk : cmd.c part.c Log message: Make GPT display of menu hex octet the same as the MBR display. i.e. two digits. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/10 14:59:33 Modified files: regress/lib/libcrypto/bn: bn_test.c Log message: Drop BN_NO_DEPRECATED dance from bn_test CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/10 15:00:16 Modified files: regress/lib/libcrypto/bn: bn_to_string.c Log message: Some more cleanup in bn_to_string CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/10 17:18:08 Modified files: sys/arch/sparc64/dev: sab.c Log message: add missing write of SAB_DAFO ok miod@ who tested on Ultra 5 CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/10 18:45:10 Modified files: sys/arch/alpha/alpha: machdep.c pmap.c vm_machdep.c sys/arch/alpha/include: autoconf.h sys/arch/amd64/amd64: pmap.c vm_machdep.c sys/arch/arm/arm: vm_machdep.c sys/arch/arm/include: setjmp.h sys/arch/arm64/arm64: vm_machdep.c sys/arch/arm64/include: setjmp.h sys/arch/i386/i386: pmap.c pmapae.c vm_machdep.c sys/arch/m88k/m88k: db_trace.c vm_machdep.c sys/arch/macppc/dev: adb.c sys/arch/macppc/pci: kauaiata.c sys/arch/powerpc/powerpc: lock_machdep.c vm_machdep.c sys/arch/powerpc64/powerpc64: trap.c vm_machdep.c sys/arch/riscv64/riscv64: vm_machdep.c sys/arch/sparc64/dev: psycho.c sys/dev/fdt : rkpcie.c sys/dev/ic : elink3.c malo.c tcic2reg.h twereg.h sys/dev/pci : if_de.c if_em_hw.c if_iwm.c if_tl.c sys/dev/pv : hypervic.c xenstore.c sys/dev/sbus : stp4020.c sys/dev/sdmmc : sdhc.c sys/dev/usb : umcs.h sys/kern : kern_event.c sysv_msg.c sys/net : hfsc.c ofp.h sys/net80211 : ieee80211_node.c sys/netinet : in.h sys/scsi : ch.c scsi_changer.h sys/sys : exec_elf.h sys/ufs/ffs : ffs_softdep.c sys/uvm : uvm_amap.c uvm_anon.c uvm_mmap.c uvm_page.c Log message: fix double words in comments feedback and ok jmc@ miod, ok millert@ CVSROOT: /cvs Module name: src Changes by: mglocker@cvs.openbsd.org 2023/04/10 22:45:11 Modified files: sys/dev/acpi : qcgpio.c Log message: Nuke unused function prototype. Only acknowledge interrupts when one was active. ok kettenis@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/10 23:53:53 Modified files: regress/lib/libcrypto/bn: bn_general.c bn_mul_div.c Log message: Correct benchmark result computation on 32 bit platforms. CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/04/11 03:15:17 Modified files: mail/neomutt : Makefile mail/neomutt/patches: patch-main_c Log message: neomutt: adjust guard to fix SASL library preloading before pledge problem found and fix tested by rsadowski ok rsadowski sthen (maintainer) CVSROOT: /cvs Module name: ports Changes by: giovanni@cvs.openbsd.org 2023/04/11 03:17:45 Modified files: www/apache-httpd: Makefile distinfo Log message: update to 2.4.57 ok rsadowski@ CVSROOT: /cvs Module name: ports Changes by: giovanni@cvs.openbsd.org 2023/04/11 03:20:42 Modified files: www/apache-httpd: Makefile Log message: switch to CONFIGURE_STYLE=gnu, avoid some hidden dependencies ok rsadowski@ No bump since it has just been committed CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/11 04:08:44 Modified files: lib/libcrypto : Makefile Added files: lib/libcrypto/bn: bn_mod_sqrt.c Removed files: lib/libcrypto/bn: bn_sqrt.c Log message: Add a new implementation of BN_mod_sqrt() This is a reimplementation from scratch of the Tonelli-Shanks algorithm based on Henri Cohen "A Course in Computational Algebraic Number Theory", Springer GTM 138, section 1.5.1. It is API compatible with the previous implementation, so no documentation change is required. Contrary to the old implementation, this does not have any infinite loops and has various additional sanity checks to prevent misbehavior in case the input modulus is not a prime. It contains extensive comments and the individual parts of the algorithm are split into digestible chunks instead of having one huge function. One difference of note is that it BN_mod_sqrt() now always returns the smaller of the two possible answers. In other words, while its core is non-deterministic, its answer is not. ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/11 04:10:52 Modified files: regress/lib/libcrypto/bn: bn_mod_sqrt.c Log message: bn_mod_sqrt: remove no longer necessary complications due to the non-deterministic nature of the old implementation. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/11 04:21:02 Modified files: lib/libcrypto/sha: sha512.c Log message: Remove less than useful implementation notes. ok tb@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/11 04:26:29 Modified files: lib/libcrypto/sha: sha512.c Log message: Omit sha512_block_data_order() prototype when assembly is not being used. In the case that the pure C implementation of SHA512 is being used, the prototype is unnecessary as the function is declared static and exists in dependency order. Simply omit the prototype rather than using #ifndef to toggle the static prefix. ok tb@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/11 04:32:21 Modified files: lib/libcrypto/sha: sha512.c Log message: Use htobe64() instead of testing BYTE_ORDER and then handrolling htobe64(). ok tb@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/11 04:35:21 Modified files: lib/libcrypto/sha: sha512.c Log message: Simplify handling of big vs little endian. Rather than sprinkling BYTE_ORDER checks throughout the implementation, always define PULL64 - on big endian platforms it just becomes a no-op. ok tb@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/11 04:39:50 Added files: lib/libcrypto/sha: sha1.c Removed files: lib/libcrypto/sha: sha1_one.c sha1dgst.c Log message: Consolidate sha1 into a single file. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/11 04:41:10 Modified files: lib/libcrypto : Makefile Log message: Consolidate sha1 into a single file. CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2023/04/11 05:23:09 Modified files: share/man/man1 : proot.1 Log message: give people a chance to find bulk(8) from proot(1) CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/11 07:03:03 Modified files: lib/libcrypto/sha: sha512.c Log message: Back out r1.27 using htobe64() - apparently some OS don't have it. ok jsing CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/11 08:50:44 Modified files: www/mozilla-firefox: Makefile distinfo www/mozilla-firefox/patches: patch-media_ffvpx_libavcodec_x86_fft_asm patch-toolkit_xre_glxtest_cpp www/firefox-i18n: Makefile.inc distinfo Added files: www/mozilla-firefox/patches: patch-mozglue_misc_Uptime_cpp Removed files: www/mozilla-firefox/patches: patch-media_libcubeb_src_cubeb_sndio_c patch-toolkit_system_gnome_nsGIOService_cpp Log message: www/mozilla-firefox: update to 112.0. see https://www.mozilla.org/en-US/firefox/112.0/releasenotes/ fixes https://www.mozilla.org/en-US/security/advisories/mfsa2023-13/ - drop patch from #1814359, merged upstream - drop patch from tb@ via #1817588, merged upstream - add patch from #1824084 fixing various (with/without suspend) uptime-related functions, discussed with cheloha@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/11 08:54:38 Modified files: www/firefox-esr-i18n: Makefile.inc distinfo www/firefox-esr: Makefile distinfo Log message: www/firefox-esr: update to 102.10.0. see https://www.mozilla.org/en-US/firefox/102.10.0/releasenotes/ fixes https://www.mozilla.org/en-US/security/advisories/mfsa2023-14/ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/11 08:55:23 Modified files: www/firefox-esr: Tag: OPENBSD_7_2 Makefile distinfo Log message: www/firefox-esr: MFC update to 102.10.0. see https://www.mozilla.org/en-US/firefox/102.10.0/releasenotes/ fixes https://www.mozilla.org/en-US/security/advisories/mfsa2023-14/ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/11 08:58:26 Modified files: www/firefox-esr: Tag: OPENBSD_7_3 Makefile distinfo Log message: www/firefox-esr: MFC update to 102.10.0. see https://www.mozilla.org/en-US/firefox/102.10.0/releasenotes/ fixes https://www.mozilla.org/en-US/security/advisories/mfsa2023-14/ CVSROOT: /cvs Module name: src Changes by: espie@cvs.openbsd.org 2023/04/11 09:02:56 Modified files: share/man/man1 : dpb.1 Log message: be more forceful in pointing people to bulk(8) and proot(1). CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/11 09:06:06 Modified files: net/isc-bind : Tag: OPENBSD_7_3 Makefile distinfo net/isc-bind/patches: Tag: OPENBSD_7_3 patch-bin_dig_dig_c patch-lib_isc_netmgr_netmgr_c net/isc-bind/pkg: Tag: OPENBSD_7_3 PLIST Log message: update to isc-bind-9.18.13 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/11 09:08:11 Modified files: net/arouteserver: Makefile distinfo Log message: update to arouteserver-1.20.1, openbgpd 7.8 support CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/11 09:08:36 Modified files: net/arouteserver: Tag: OPENBSD_7_3 Makefile distinfo Log message: update to arouteserver-1.20.1 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/11 09:09:21 Modified files: devel/py-tz : Tag: OPENBSD_7_3 Makefile distinfo Log message: update to py3-tz-2023.3 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/11 09:09:54 Modified files: devel/py-tz : Tag: OPENBSD_7_3 Makefile Log message: bump REVISION (updated in 7.2-stable) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/11 09:10:31 Modified files: net/irssi : Tag: OPENBSD_7_3 Makefile distinfo Log message: update to irssi-1.4.4 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/11 09:10:49 Modified files: net/irssi-icb : Tag: OPENBSD_7_3 Makefile Log message: bump REVISION to rebuild for -stable due to irssi update CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/11 09:11:26 Modified files: www/tomcat/v8 : Tag: OPENBSD_7_3 Makefile distinfo www/tomcat/v8/pkg: Tag: OPENBSD_7_3 PLIST-examples Log message: update to tomcat-8.5.87 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/11 09:11:31 Modified files: www/tomcat/v9 : Tag: OPENBSD_7_3 Makefile distinfo www/tomcat/v9/pkg: Tag: OPENBSD_7_3 PLIST-examples Log message: update to tomcat-9.0.73 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/11 09:11:34 Modified files: www/tomcat/v10 : Tag: OPENBSD_7_3 Makefile distinfo www/tomcat/v10/pkg: Tag: OPENBSD_7_3 PLIST-examples Log message: update to tomcat-10.1.7 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/11 09:13:10 Modified files: lang/php : Tag: OPENBSD_7_3 php.port.mk lang/php/8.0 : Tag: OPENBSD_7_3 Makefile lang/php/8.0/pkg: Tag: OPENBSD_7_3 PLIST-main lang/php/8.1 : Tag: OPENBSD_7_3 Makefile distinfo lang/php/8.1/pkg: Tag: OPENBSD_7_3 PLIST-main lang/php/8.2 : Tag: OPENBSD_7_3 Makefile distinfo Log message: move unversioned /usr/local/bin/php and phar binaries from 8.0 to 8.1 update 8.1 to 8.1.17, 8.2 to 8.2.4 CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2023/04/11 09:35:31 Modified files: lib/libcrypto/man: BIO_find_type.3 Log message: While all the BIO_TYPE_* constants are part of the API, most of their values are only part of the ABI and not of the API, so delete them from the SYNOPSIS: application programmers must not rely on the specific values. Instead of listing the specific values, properly describe the meaning of all these constants. However, the values of BIO_TYPE_NONE and BIO_TYPE_START are hard-coded into the API and application programmers need to be aware of their values, so those remain in the SYNOPSIS. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/11 09:38:56 Modified files: lib/libcrypto/sha: sha512.c Log message: Recommit jsing's r1.27 - portable is ready Use htobe64() instead of testing BYTE_ORDER and then handrolling htobe64(). Thanks to tobhe for providing most of the fix via openiked-portable CVSROOT: /cvs Module name: src Changes by: bluhm@cvs.openbsd.org 2023/04/11 09:45:40 Modified files: sys/conf : Tag: OPENBSD_7_3 newvers.sh Log message: 7.3-stable CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/04/11 10:34:51 Modified files: sbin/fdisk : part.c Log message: Shuffle mbr and gpt function prototypes and declarations together. No functional change. CVSROOT: /cvs Module name: src Changes by: schwarze@cvs.openbsd.org 2023/04/11 10:58:43 Modified files: lib/libssl/man : BIO_f_ssl.3 lib/libcrypto/man: BIO_f_base64.3 BIO_f_buffer.3 BIO_f_cipher.3 BIO_f_md.3 BIO_f_null.3 BIO_s_accept.3 BIO_s_bio.3 BIO_s_connect.3 BIO_s_fd.3 BIO_s_file.3 BIO_s_mem.3 BIO_s_null.3 BIO_s_socket.3 Log message: Document the RETURN VALUES of BIO_method_type(3) and BIO_method_name(3) for the various BIO types. CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/04/11 11:26:59 Modified files: sbin/fdisk : part.c Log message: Simplify code by passing pointers to the appropriate type to find_gpt_desc() and find_mbr_desc(). No functional change. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/11 11:30:25 Modified files: mail/mozilla-thunderbird: Makefile distinfo mail/thunderbird-i18n: Makefile.inc distinfo Log message: mail/mozilla-thunderbird: update to 102.10.0. see https://www.thunderbird.net/en-US/thunderbird/102.10.0/releasenotes/ fixes https://www.mozilla.org/en-US/security/advisories/mfsa2023-15/ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/11 11:31:59 Modified files: mail/mozilla-thunderbird: Tag: OPENBSD_7_2 Makefile distinfo Log message: mail/mozilla-thunderbird: MFC update to 102.10.0 see https://www.thunderbird.net/en-US/thunderbird/102.10.0/releasenotes/ fixes https://www.mozilla.org/en-US/security/advisories/mfsa2023-15/ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/11 11:34:03 Modified files: mail/mozilla-thunderbird: Tag: OPENBSD_7_3 Makefile distinfo Log message: mail/mozilla-thunderbird: MFC update to 102.10.0 see https://www.thunderbird.net/en-US/thunderbird/102.10.0/releasenotes/ fixes https://www.mozilla.org/en-US/security/advisories/mfsa2023-15/ CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/11 11:39:06 Modified files: x11/qt5ct : Makefile distinfo x11/qt5ct/pkg : PLIST Log message: Update qt5ct to 1.7 CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/04/11 11:58:19 Modified files: security/openssl-ruby-tests: Makefile security/openssl-ruby-tests/patches: patch-test_openssl_test_bn_rb Log message: openssl-ruby-tests: extend the mod_sqrt test slightly, link to PR https://github.com/ruby/openssl/pull/614 CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/04/11 12:25:44 Modified files: security/rust-openssl-tests: Makefile crates.inc distinfo security/rust-openssl-tests/pkg: PLIST Log message: Update to rust-openssl-tests 20230411 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/11 12:25:53 Modified files: textproc/libxml: Makefile distinfo Log message: SECURITY update to libxml-2.10.4. - [CVE-2023-29469] Hashing of empty dict strings isn’t deterministic - [CVE-2023-28484] Fix null deref in xmlSchemaFixupComplexType - schemas: Fix null-pointer-deref in xmlSchemaCheckCOSSTDerivedOK CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/11 12:33:05 Modified files: textproc/libxslt: Makefile Log message: Move to the gnome MODULE for real. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/11 12:47:27 Modified files: print/foo2zjs : Tag: OPENBSD_7_3 Makefile print/foo2zjs/patches: Tag: OPENBSD_7_3 patch-getweb_in Log message: MFC: unbreak getweb. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/11 12:47:42 Modified files: textproc/libxml: Tag: OPENBSD_7_3 Makefile distinfo Log message: SECURITY update to libxml-2.10.4. - [CVE-2023-29469] Hashing of empty dict strings isn’t deterministic - [CVE-2023-28484] Fix null deref in xmlSchemaFixupComplexType - schemas: Fix null-pointer-deref in xmlSchemaCheckCOSSTDerivedOK CVSROOT: /cvs Module name: ports Changes by: thfr@cvs.openbsd.org 2023/04/11 12:52:20 Modified files: games/fheroes2 : Makefile distinfo games/fheroes2/pkg: PLIST Log message: update to fheroes2 1.0.3 CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/11 12:53:20 Modified files: lib/libcrypto/ec: ecp_nist.c Log message: Clean up unused BIGNUM. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/11 12:58:20 Modified files: lib/libcrypto/ec: ec2_mult.c ec2_oct.c ec2_smpl.c ec_check.c ec_lib.c ec_mult.c ec_oct.c ecp_mont.c ecp_nist.c ecp_oct.c ecp_smpl.c Log message: Handle BN_CTX at the EC API boundary. The EC API allows callers to optionally pass in a BN_CTX, which means that any code needing a BN_CTX has to check if one was provided, allocate one if not, then free it again. Rather than doing this dance throughout the EC code, handle the BN_CTX existance at the EC API boundary. This means that lower level implementation code can simply assume that the BN_CTX is available. ok tb@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/11 13:23:55 Modified files: devel/spidermonkey102: Makefile distinfo Log message: Update to spidermonkey102-102.10.0. CVSROOT: /cvs Module name: ports Changes by: caspar@cvs.openbsd.org 2023/04/11 13:37:29 Modified files: meta/tor-browser: Tag: OPENBSD_7_3 Makefile www/tor-browser: Tag: OPENBSD_7_3 Makefile.inc www/tor-browser/browser: Tag: OPENBSD_7_3 Makefile distinfo www/tor-browser/browser/patches: Tag: OPENBSD_7_3 patch-browser_app_profile_000-tor-browser_js www/tor-browser/noscript: Tag: OPENBSD_7_3 Makefile distinfo Log message: Tor Browser: update to 12.0.4 CVSROOT: /cvs Module name: ports Changes by: bket@cvs.openbsd.org 2023/04/11 14:07:34 Modified files: news/sabnzbd : Makefile Log message: Add devel/py-setuptools as RDEP Found by Matthias Schmidt . Thank you! CVSROOT: /cvs Module name: ports Changes by: bket@cvs.openbsd.org 2023/04/11 14:19:21 Modified files: archivers/zstd : Tag: OPENBSD_7_3 Makefile distinfo Removed files: archivers/zstd/patches: Tag: OPENBSD_7_3 patch-programs_fileio_c Log message: Update to zstd-1.5.5 This release corrects a corruption bug in high compression mode. More information can be found at https://github.com/facebook/zstd/pull/3517. Overview on other changes can be found at https://github.com/facebook/zstd/releases/tag/v1.5.5. Minor of SHLIB has been bumped because of addition of new symbols. CVSROOT: /cvs Module name: ports Changes by: kirby@cvs.openbsd.org 2023/04/11 14:34:38 Modified files: net/seafile/client: Makefile distinfo net/seafile/seafile: Makefile distinfo net/seafile/seafile/patches: patch-daemon_Makefile_am Log message: Update to seafile-9.0.1 CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/11 15:02:26 Modified files: editors/helix : Makefile crates.inc distinfo editors/helix/patches: patch-helix-loader_src_grammar_rs patch-helix-loader_src_lib_rs editors/helix/pkg: PLIST Added files: editors/helix/patches: patch-Cargo_lock patch-Cargo_toml patch-helix-loader_build_rs Removed files: editors/helix/patches: patch-helix-term_build_rs Log message: Update helix to 23.03 Update diff from Volker Schlecht, Feedback and ok Laurent Cheylus (maintainer) CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/04/11 15:14:19 Modified files: sbin/fdisk : part.c Log message: Abstract find_[gpt|mbr]_menuitem() to simplify code and prepare for future uses. No functional change. CVSROOT: /cvs Module name: ports Changes by: thfr@cvs.openbsd.org 2023/04/11 16:29:47 Modified files: devel/sdl2 : Makefile distinfo devel/sdl2/patches: patch-src_SDL_c patch-src_joystick_SDL_gamecontrollerdb_h Log message: update to SDL2 2.26.5 based on diff from Brad, who noticed that --disable-oss and the joystick haptics part of the diff are no longer needed CVSROOT: /cvs Module name: www Changes by: tj@cvs.openbsd.org 2023/04/11 16:39:58 Modified files: . : groups.html build : groups.dat Log message: add bsd.si user group; from jan prunk CVSROOT: /cvs Module name: www Changes by: tj@cvs.openbsd.org 2023/04/11 17:22:47 Modified files: . : groups.html build : groups.dat Log message: tweak previous CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/11 20:20:07 Modified files: sys/arch/octeon/dev: octmmc.c Log message: remove unused buffer selection code ok visa@ CVSROOT: /cvs Module name: src Changes by: job@cvs.openbsd.org 2023/04/11 21:53:40 Modified files: usr.sbin/rpki-client: print.c Log message: Align printing of geofeed records in filemode CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/11 22:40:39 Modified files: lib/libcrypto/sha: sha512.c Added files: lib/libcrypto : crypto_internal.h Log message: Provide and use crypto_store_htobe64(). It is common to need to store data in a specific endianness - rather than handrolling and deduplicating code to do this, provide a crypto_store_htobe64() function that converts from host endian to big endian, before storing the data to a location with unknown alignment. ok tb@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/11 22:54:16 Modified files: lib/libcrypto : crypto_internal.h md32_common.h lib/libcrypto/sha: sha512.c Log message: Provide and use crypto_ro{l,r}_u{32,64}(). Various code in libcrypto needs bitwise rotation - rather than defining different versions across the code base, provide a common set that can be reused. Any sensible compiler optimises these to a single instruction where the architecture supports it, which means we can ditch the inline assembly. On the chance that we need to provide a platform specific versions, this follows the approach used in BN where a MD crypto_arch.h header could be added in the future, which would then provide more specific versions of these functions. ok tb@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/11 23:16:08 Removed files: lib/libcrypto/sha: sha_local.h Log message: Remove now unused sha_local.h. CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/11 23:56:13 Modified files: math/labplot : Makefile math/labplot/pkg: PLIST Log message: Disable VectorBLF and Excel support for now VectorBLF and QXlsx needs internet/git access at build time. We do not want that. Separate ports might help here. While here disable CMake Git detection. Spotted by aja and naddy, thanks! CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/12 00:19:42 Modified files: devel/jenkins/devel: Makefile distinfo Log message: Update jenkins-devel to 2.400 CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/12 00:21:48 Modified files: sysutils/kubectl: Makefile distinfo Log message: Update kubectl to 1.27.0 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/12 00:52:25 Modified files: textproc/libxslt: Makefile Log message: Missed bump; reported by naddy@ CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/12 01:07:36 Modified files: net/libaccounts-glib: Makefile Log message: Remove py-gobject3 as LIB_DEPENDS. BUILD_DEPENDS is enough CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/12 01:11:54 Modified files: sysutils/google-cloud-sdk: Makefile distinfo sysutils/google-cloud-sdk/patches: patch-lib_googlecloudsdk_core_util_platforms_py sysutils/google-cloud-sdk/pkg: PLIST Log message: Update to google-cloud-sdk-426.0.0. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/12 01:29:31 Modified files: www/mozilla-firefox: Tag: OPENBSD_7_3 Makefile distinfo www/mozilla-firefox/patches: Tag: OPENBSD_7_3 patch-media_ffvpx_libavcodec_x86_fft_asm patch-toolkit_xre_glxtest_cpp Added files: www/mozilla-firefox/patches: Tag: OPENBSD_7_3 patch-mozglue_misc_Uptime_cpp Removed files: www/mozilla-firefox/patches: Tag: OPENBSD_7_3 patch-media_libcubeb_src_cubeb_sndio_c patch-toolkit_system_gnome_nsGIOService_cpp Log message: www/mozilla-firefox: MFC update to 112.0. see https://www.mozilla.org/en-US/firefox/112.0/releasenotes/ fixes https://www.mozilla.org/en-US/security/advisories/mfsa2023-13/ - drop patch from #1814359, merged upstream - drop patch from tb@ via #1817588, merged upstream - add patch from #1824084 fixing various (with/without suspend) uptime-related functions, discussed with cheloha@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/12 01:53:48 Modified files: multimedia/gstreamer1: Makefile.inc multimedia/gstreamer1/core: Makefile distinfo multimedia/gstreamer1/core/pkg: PLIST multimedia/gstreamer1/plugins-bad: Makefile distinfo multimedia/gstreamer1/plugins-base: Makefile distinfo multimedia/gstreamer1/plugins-good: distinfo multimedia/gstreamer1/plugins-libav: distinfo multimedia/gstreamer1/plugins-ugly: distinfo multimedia/gstreamer1/py-gstreamer: distinfo Log message: Update Gstreamer ports to version 1.22.2. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/12 02:11:10 Modified files: net/bro : Makefile distinfo net/bro/pkg : PLIST Log message: SECURITY update to zeek-5.0.8. See https://github.com/zeek/zeek/blob/v5.0.8/NEWS CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/12 02:11:35 Modified files: net/bro : Tag: OPENBSD_7_3 Makefile distinfo net/bro/pkg : Tag: OPENBSD_7_3 PLIST Log message: SECURITY update to zeek-5.0.8. See https://github.com/zeek/zeek/blob/v5.0.8/NEWS CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/04/12 02:32:27 Modified files: usr.bin/rsync : rsync.5 Log message: Fix 24bit maximum/mask in manpage. Noticed by wangqr on github. CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/04/12 02:41:59 Modified files: games/0ad/base : Makefile Log message: honour MAKE_JOBS, document COMPILER, skip test compilation OK thfr CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/12 02:53:54 Modified files: usr.bin/ssh : PROTOCOL.agent sftp-server.c sftp.c ssh-keygen.c Log message: fix double words ok dtucker@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/12 03:04:21 Modified files: misc/remind : Makefile distinfo Log message: update to remind-4.2.5, from Martin Ziemer (maintainer) CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/12 03:07:42 Modified files: share/misc : na.phone inter.phone Log message: remove duplicate lines CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/04/12 03:09:41 Modified files: regress/usr.sbin/bgpd/config: Makefile Added files: regress/usr.sbin/bgpd/config: bgpd.conf.15.in bgpd.conf.15.ok Log message: Add test for multiprotocol announce statements CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/12 03:32:11 Modified files: www/mycorrhiza : Makefile distinfo modules.inc Log message: update to mycorrhiza-1.14.0, from la ninpre (maintainer) CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/12 03:55:22 Modified files: lib/libpcap : pcap-filter.5 usr.sbin/tcpdump: tcpdump.8 share/man/man9 : bpf_mtap.9 share/man/man4 : gdt.4 lib/libcrypto/man: EC_POINT_add.3 Log message: remove duplicate lines CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/12 04:12:14 Modified files: sys/dev/pci : pcidevs Log message: Add PCI IDs for the 2nd generation Aquantio 10G NICs. ok mlarkin@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/12 04:12:42 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: regen CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/04/12 06:35:30 Modified files: sbin/fdisk : part.c Log message: Clarify logic in PRT_uuid_to_menudflt() by using find_gpt_menuitem(). No functional change. CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/12 06:37:20 Modified files: net/libaccounts-glib: Makefile Log message: Add missing run dependency on devel/py-gobject3 Spotted by aja CVSROOT: /cvs Module name: ports Changes by: aisha@cvs.openbsd.org 2023/04/12 06:41:41 Modified files: net/knot : Makefile distinfo Log message: update to 3.2.6 ok abieber@ CVSROOT: /cvs Module name: ports Changes by: aisha@cvs.openbsd.org 2023/04/12 06:41:56 Modified files: net/py-libknot : Makefile distinfo Log message: update to 3.2.6 ok abieber@ CVSROOT: /cvs Module name: src Changes by: krw@cvs.openbsd.org 2023/04/12 07:11:37 Modified files: sbin/fdisk : part.c Log message: Simplify code by folding uuid_attr() into PRT_protected_uuid(). No functional change. CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2023/04/12 07:13:14 Modified files: sysutils/ruby-facter: Makefile Added files: sysutils/ruby-facter/patches: patch-lib_facter_resolvers_networking_rb Log message: Fix bug preventing all IP related output to be omitted when you run into an interface that has an IP but no mask, i.e. a gif tunnel. While there, set a proper COMMENT CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/12 08:22:04 Modified files: usr.bin/ssh : progressmeter.c Log message: remove duplicate signal.h include CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/12 09:12:39 Modified files: print/ghostscript/gnu: Makefile distinfo print/ghostscript/gnu/patches: patch-configure print/ghostscript/gnu/pkg: PLIST Log message: update to ghostscript-10.01.1, fixes CVE-2023-28879 from Volker Schlecht (maintainer) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/12 09:13:11 Modified files: print/ghostscript/gnu: Tag: OPENBSD_7_3 Makefile distinfo print/ghostscript/gnu/patches: Tag: OPENBSD_7_3 patch-configure print/ghostscript/gnu/pkg: Tag: OPENBSD_7_3 PLIST Log message: update to ghostscript-10.01.1, fixes CVE-2023-28879 from Volker Schlecht (maintainer) CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/12 09:23:04 Modified files: misc/py-babelfish: Makefile Log message: py-babelfish: add RDEP on setuptools for pkg_resources This is the real reason for sabnzbd complaining about missing pkg_resources CVSROOT: /cvs Module name: src Changes by: jmc@cvs.openbsd.org 2023/04/12 09:26:26 Modified files: usr.bin/units : units.lib Log message: correct the entry for chilepeso; from jan stary CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2023/04/12 09:44:22 Modified files: sysutils/ruby-puppet-lint: Makefile distinfo Log message: simple update 3.3.0 -> 3.4.0 CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2023/04/12 09:51:51 Modified files: sysutils/ruby-facter: Makefile distinfo Log message: simple update 4.3.0 -> 4.3.1 CVSROOT: /cvs Module name: ports Changes by: sebastia@cvs.openbsd.org 2023/04/12 09:55:53 Modified files: devel/ruby-hocon: Makefile distinfo Log message: simple update 1.3.1 -> 1.4.0 CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/12 09:56:08 Modified files: sys/dev/pci : pcidevs Log message: Add BCM4388. ok patrick@, deraadt@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/12 09:56:33 Modified files: sys/dev/pci : pcidevs.h pcidevs_data.h Log message: regen CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/04/12 10:14:42 Modified files: sys/netinet : if_ether.c Log message: Pull MP-safe arprequest() out of kernel lock Defer sending after unlock, reuse `refresh' from similar construct. OK bluhm CVSROOT: /cvs Module name: ports Changes by: op@cvs.openbsd.org 2023/04/12 10:37:06 Modified files: devel/scons : Makefile distinfo devel/scons/patches: patch-setup_cfg devel/scons/pkg: PLIST Log message: update devel/scons to 4.5.2 survived an aarch64 bulk build from phessler@ (thanks!) with games/dxx-rebirth as only failure (which will be fixed as follow-up.) CVSROOT: /cvs Module name: ports Changes by: op@cvs.openbsd.org 2023/04/12 10:38:39 Modified files: games/dxx-rebirth/patches: patch-SConstruct Log message: games/dxx-rebirth: backport fix to build with scons 4.5.x ok thfr@ (MAINTAINER) CVSROOT: /cvs Module name: ports Changes by: op@cvs.openbsd.org 2023/04/12 10:48:10 Modified files: net/lagrange : Makefile distinfo Log message: update net/lagrange to 1.15.8; from Florian Viehweger, thanks! CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/04/12 11:19:16 Modified files: usr.sbin/bgpctl: bgpctl.8 parser.c Log message: bgpctl network bulk requires now the specification of 'add' or 'delete'. In the add case the extra attributes can be specified afterwards. This makes the parser behave cleaner since 'add' and 'delete' are removed from the attribute set table. OK tb@ CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/12 11:42:24 Modified files: graphics/jpeg : Makefile distinfo graphics/jpeg/patches: patch-CMakeLists_txt Log message: update to jpeg-2.1.5 CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/04/12 12:43:01 Modified files: security/rust-ring: Makefile security/rust-ring/pkg: PLIST Added files: security/rust-ring/pkg: README Log message: rust-ring: add a pkg-readme with a useful hint from Laurie https://marc.info/?l=openbsd-misc&m=168120112917160&w=2 Laurie is in favor of this ok sthen CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/12 12:51:57 Modified files: www/nextcloud/24: Tag: OPENBSD_7_3 Makefile distinfo www/nextcloud/24/pkg: Tag: OPENBSD_7_3 PLIST Log message: www/nextcloud/24: MFC update to 24.0.11. see https://nextcloud.com/changelog/#latest24 discussed with & ok gonzalo@ (MAINTAINER) CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/12 12:52:38 Modified files: www/nextcloud/25: Tag: OPENBSD_7_3 Makefile distinfo www/nextcloud/25/pkg: Tag: OPENBSD_7_3 PLIST Log message: www/nextcloud/25: MFC update to 25.0.5. see https://nextcloud.com/changelog/#latest25 ok gonzalo@ (MAINTAINER) CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/04/12 12:54:57 Log message: import net/rrdpit, tested by job, ok rsadowski Description: Small tool that can be pointed at a directory on your system. It produces RPKI RRDP (RFC 8182) notification, snapshot, and delta files. Status: Vendor Tag: tb Release Tags: tb_20230412 N ports/net/rrdpit/Makefile N ports/net/rrdpit/distinfo N ports/net/rrdpit/crates.inc N ports/net/rrdpit/pkg/DESCR N ports/net/rrdpit/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/04/12 12:55:34 Modified files: net : Makefile Log message: +rrdpit CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/12 12:55:52 Modified files: www/nextcloud/23: Tag: OPENBSD_7_3 Makefile Added files: www/nextcloud/23/pkg: Tag: OPENBSD_7_3 MESSAGE Log message: www/nextcloud/23: add a MESSAGE telling users to upgrade to supported branches -current properly handles that via @pkgpath, but it was missed for 7.3. discussed with/ok sthen@ CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/04/12 13:11:27 Modified files: textproc/p5-Pod-Spell: Makefile distinfo textproc/p5-Pod-Spell/pkg: PLIST Log message: update p5-Pod-Spell to 1.26 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/12 13:28:01 Log message: Import devel/py-immutabledict 2.2.4. ======= A fork of the original frozendict, an immutable wrapper around dictionaries. It implements the complete mapping interface and can be used as a drop-in replacement for dictionaries where immutability is desired. The immutabledict constructor mimics dict, and all of the expected interfaces (iter, len, repr, hash, getitem) are provided. Note that an immutabledict does not guarantee the immutability of its values, so the utility of hash method is restricted by usage. The only difference is that the copy() method of immutable takes variable keyword arguments, which will be present as key/value pairs in the new, immutable copy. ======= Required for net/synapse update, original submission from Renaud Allard (maintainer), revamped by sthen@, ok sthen@ Status: Vendor Tag: rallard Release Tags: landry_20230412 N ports/devel/py-immutabledict/Makefile N ports/devel/py-immutabledict/distinfo N ports/devel/py-immutabledict/pkg/DESCR N ports/devel/py-immutabledict/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/12 13:29:34 Modified files: devel : Makefile Log message: +devel/py-immutabledict,python3 CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/12 13:31:04 Modified files: textproc/py-canonicaljson: Makefile distinfo textproc/py-canonicaljson/pkg: PLIST Log message: textproc/py-canonicaljson: update to 2.0.0. from maintainer Renaud Allard, required for net/synapse update. textproc/py-signedjson tests all pass with that new version. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/12 13:32:19 Modified files: net/synapse : Makefile distinfo modules.inc net/synapse/pkg: PLIST Log message: net/synapse: update to 1.81.0. see https://matrix-org.github.io/synapse/latest/upgrade.html#upgrading-to-v1810 from maintainer Renaud Allard CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/04/12 13:33:38 Modified files: textproc/p5-XML-XPath: Makefile distinfo textproc/p5-XML-XPath/pkg: PLIST Log message: update p5-XML-XPath to 1.48 CVSROOT: /cvs Module name: ports Changes by: kmos@cvs.openbsd.org 2023/04/12 13:45:09 Modified files: lang/python/3.10: Makefile distinfo lang/python/3.10/pkg: PLIST-main Log message: https://docs.python.org/release/3.10.11/whatsnew/changelog.html#python-3-10-11-final Update to Python 3.10.11 tweak and ok sthen CVSROOT: /cvs Module name: ports Changes by: kmos@cvs.openbsd.org 2023/04/12 13:45:41 Modified files: lang/python/3.11: Makefile distinfo lang/python/3.11/patches: patch-Python_fileutils_c Log message: https://docs.python.org/release/3.11.3/whatsnew/changelog.html#python-3-11-3 Update to 3.11.3 tweak and ok sthen CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/04/12 13:51:20 Modified files: devel/p5-Test-WWW-Mechanize: Makefile distinfo Log message: update p5-Test-WWW-Mechanize to 1.60 CVSROOT: /cvs Module name: ports Changes by: kmos@cvs.openbsd.org 2023/04/12 13:54:57 Modified files: lang/python/3.10: Tag: OPENBSD_7_3 Makefile distinfo lang/python/3.10/pkg: Tag: OPENBSD_7_3 PLIST-main Log message: https://docs.python.org/release/3.10.11/whatsnew/changelog.html#python-3-10-11-final Update to Python 3.10.11 tweak and ok sthen CVSROOT: /cvs Module name: ports Changes by: kmos@cvs.openbsd.org 2023/04/12 13:56:16 Modified files: lang/python/3.11: Tag: OPENBSD_7_3 Makefile distinfo lang/python/3.11/patches: Tag: OPENBSD_7_3 patch-Python_fileutils_c Log message: https://docs.python.org/release/3.11.3/whatsnew/changelog.html#python-3-11-3 Update to Python 3.11.3 tweak and ok sthen CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/04/12 14:16:15 Modified files: www/p5-XML-Atom: Makefile distinfo Log message: update p5-XML-Atom to 0.43 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/12 14:22:53 Modified files: net/wireshark : Makefile distinfo Log message: update to wireshark-4.0.5 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/12 14:22:54 Modified files: net/wireshark : Tag: OPENBSD_7_3 Makefile distinfo Log message: update to wireshark-4.0.5 CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/04/12 14:48:56 Modified files: www/p5-XML-Feed: Makefile distinfo Log message: update p5-XML-Feed to 0.63 CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/04/12 14:55:44 Modified files: devel/p5-Date-ICal: Makefile distinfo Log message: update p5-Date-ICal to 2.680 CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/12 20:19:06 Modified files: sys/arch/arm64/arm64: ast.c cpu.c syscall.c sys/arch/landisk/stand/boot: getsecs.c sys/arch/loongson/loongson: conf.c gdium_machdep.c sys/arch/octeon/octeon: conf.c sys/arch/powerpc64/powerpc64: trap.c sys/arch/riscv64/riscv64: ast.c syscall.c sys/arch/sparc64/stand/ofwboot: boot.c elf64_exec.c sys/dev/acpi : acpidmar.c sys/dev : diskmap.c sys/dev/dt : dt_prov_syscall.c sys/dev/fdt : if_mvneta.c sys/dev/pci : virtio_pci.c sys/dev/rasops : rasops.c sys/isofs/udf : udf_vfsops.c udf_vnops.c sys/net : if_gre.c if_pflow.c if_vxlan.c Log message: remove duplicate includes ok deraadt@ miod@ krw@ CVSROOT: /cvs Module name: ports Changes by: bket@cvs.openbsd.org 2023/04/12 22:42:32 Modified files: news/sabnzbd : Makefile Log message: Remove devel/py-setuptools as RDEP Previously observed missing import was caused by py-babelfish (used by py-guessit) not being able to find py-setuptools. sthen@ added it there. CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/12 23:20:45 Log message: Import kbibtex-0.10.0, ok thfr@ Comment: KDE TeX/LaTeX bibliographies management application Description: KBibTeX is a reference management application which can be used to collect TeX/LaTeX bibliographies and export them in various formats. KBibTeX can do the following things: - Preview bibliography entries in various formats (Source (BibTeX), Source (RIS), Wikipedia, standard (XML/XSLT), fancy (XML/XSLT), and abstract-only (XML/XSLT)). Additional preview styles become available when bibtex2html is installed. - Import data in various bibliography file formats such as BibTeX, RIS and ISI and export data to PDF (requires pdflatex), PostScrip, RTF, and HTML. - Search for the bibliography entries data in online databases (e.g. Google Scholar, ACM, IEEE, arXiv, etc.) - Preview local or remote (online) resources, e.g. PDF files, linked in the BibTEX entry. - Find and merge duplicate entries in bibliography. - Integrate your bibliographies with LaTeX editors such as Kile and LyX. - Import your Zotero library. Maintainer: Rafael Sadowski WWW: https://apps.kde.org/kbibtex/ Status: Vendor Tag: rsadowski Release Tags: rsadowski_20230413 N ports/print/kbibtex/Makefile N ports/print/kbibtex/distinfo N ports/print/kbibtex/pkg/DESCR N ports/print/kbibtex/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/12 23:22:18 Modified files: print : Makefile Log message: +kbibtex CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/12 23:25:31 Modified files: regress/lib/libcrypto/ec: ectest.c Log message: ectest: missing error checking CID 452228 CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/12 23:31:26 Modified files: meta/kde : Makefile Log message: Add new ports to development, education, utils and pim CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/12 23:49:14 Modified files: meta/kde : Makefile Log message: Add math/labplot to -education CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/13 00:06:20 Modified files: devel/meson : Makefile distinfo meson.port.mk devel/meson/patches: patch-mesonbuild_build_py devel/meson/pkg: PLIST Log message: Update to meson-1.1.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/13 00:07:53 Modified files: net/bro : Makefile Log message: portroach: ignore 5.2.1 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/13 00:11:58 Modified files: sysutils/exoscale-cli: Makefile distinfo Log message: Update to exoscale-cli-1.67.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/13 00:13:37 Modified files: textproc/hotdoc: Makefile distinfo Log message: Update to hotdoc-0.14.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/13 00:22:38 Modified files: sysutils/terraform: Makefile distinfo Log message: Update to terraform-1.4.5. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/13 00:45:09 Modified files: devel/libgit2/libgit2: Makefile distinfo Log message: Update to libgit2-1.6.4. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/13 00:48:18 Modified files: lib/libcrypto/ec: ec_lib.c Log message: Fix various early return issues spotted by coverity A large mechanical diff led to sloppy review and gave coverity an opportunity to be right for once. First time in a good many weeks. same diff/ok jsing CVSROOT: /cvs Module name: ports Changes by: namn@cvs.openbsd.org 2023/04/13 01:33:05 Modified files: audio/sox : Makefile audio/sox/patches: patch-src_wav_c Log message: audio/sox unbreak wav gsm wav gsm playback and encoding was broken because the wav.c patch to avoid division by 0 introduced a regression. patch against older version of sox is from Helmut Grohne . patch against git is from Steffen Nurpmeso with tweak by me. maintainer timeout ok tb@ sthen@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/13 01:44:12 Modified files: lib/libcrypto/ec: ec_lib.c Log message: ec_lib.c: fix a few NULL misspellings CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/13 04:00:15 Modified files: net/libaccounts-glib: Makefile Log message: Unbreak: bad bump CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/04/13 04:23:21 Modified files: share/man/man4 : softraid.4 Log message: zap leftover lines from previous CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/04/13 05:22:35 Modified files: devel/p5-Module-Build: Makefile distinfo Log message: update p5-Module-Build to 0.4232 CVSROOT: /cvs Module name: src Changes by: mbuhl@cvs.openbsd.org 2023/04/13 05:32:06 Modified files: regress/lib/libc/time/time_conversion: timetest.c Log message: Fix compilation on sparc64. CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/04/13 05:52:43 Modified files: usr.sbin/bgpctl: bgpctl.8 parser.c Log message: Sort commands alphabetically both in the tables and manpage. OK tb@ CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2023/04/13 06:29:15 Modified files: security/gnupg : Makefile distinfo security/gnupg/patches: patch-dirmngr_server_c Log message: Update to gnupg-2.2.41 ChangeLog: https://dev.gnupg.org/T6280 CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2023/04/13 06:30:28 Removed files: security/gnupg/patches: patch-dirmngr_server_c Log message: Zap empty patch (missed in previous) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/13 06:44:20 Modified files: net/libproxy : Makefile Added files: net/libproxy/pkg: DESCR PLIST Removed files: net/libproxy/pkg: DESCR-main DESCR-webkit PLIST-main PLIST-webkit Log message: Merge both libproxy subpackages into one and use duktape instead of webkit for the WPAD/PAC JS interpreter. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/13 06:44:30 Modified files: net/glib2-networking: Makefile net/neon : Makefile net/openconnect: Makefile net/signond : Makefile Log message: Bump after libproxy subpackages merge. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/13 07:35:34 ports/net/glib2-networking/patches Update of /cvs/ports/net/glib2-networking/patches In directory cvs.openbsd.org:/tmp/cvs-serv78702/patches Log Message: Directory /cvs/ports/net/glib2-networking/patches added to the repository CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/13 08:01:39 Modified files: productivity/libphonenumber: Makefile distinfo Log message: Update to libphonenumber-8.13.9. CVSROOT: /cvs Module name: ports Changes by: pvk@cvs.openbsd.org 2023/04/13 08:32:28 Modified files: www/gitea : Makefile distinfo www/gitea/patches: patch-custom_conf_app_example_ini Log message: Update gitea 1.19.0 - > 1.19.1 Changelog: https://github.com/go-gitea/gitea/releases/tag/v1.19.1 CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/04/13 08:55:02 Modified files: www/p5-HTML-Parser: Makefile distinfo Log message: update p5-HTML-Parser to 3.81 CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/13 08:57:00 Modified files: lib/libcrypto/dh: dh_depr.c dh_gen.c Log message: Move DH_generate_parameters() from dh_depr.c to dh_gen.c discussed with jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/13 08:58:27 Modified files: lib/libcrypto/dsa: dsa_depr.c dsa_gen.c Log message: Move DSA_generate_parameters() from dsa_depr.c to dsa_gen.c Discussed with jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/13 08:59:13 Modified files: lib/libcrypto/rsa: rsa_depr.c rsa_gen.c Log message: Move RSA_generate_key() from rsa_depr.c to rsa_gen.c Discussed with jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/13 09:00:24 Modified files: lib/libcrypto/ecdsa: ecs_ossl.c ecs_sign.c ecs_vrf.c Log message: Fold ECDSA sign and verify mess into ecs_ossl.c discussed with jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/13 09:01:18 Modified files: lib/libcrypto : Makefile Log message: Drop now useless files from the Makefile CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/13 09:04:20 Removed files: lib/libcrypto/dh: dh_depr.c lib/libcrypto/dsa: dsa_depr.c lib/libcrypto/ecdsa: ecs_sign.c ecs_vrf.c lib/libcrypto/rsa: rsa_depr.c Log message: Remove files that definitely contain no code anymore (experts disagree whether they ever did) CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2023/04/13 09:05:19 Modified files: sys/arch/alpha/include: vmparam.h Log message: Move USRSTACK to the end of userland address space. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2023/04/13 09:07:43 Modified files: share/man/man9 : pci_mapreg_map.9 sys/arch/hppa/dev: sti_pci_machdep.c sys/arch/macppc/pci: vgafb.c sys/arch/sparc64/dev: vgafb.c sys/dev/pci : pci_map.c pcivar.h ppb.c rtsx_pci.c sti_pci.c Log message: Remove intentionally undocumented pci_{io,mem}_find and convert their last few users to pci_mapreg_info(). ok jsg@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/13 09:15:43 Modified files: lib/libcrypto/dh: dh_gen.c Log message: Zap trailing whitespace CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/13 09:18:29 Modified files: lib/libcrypto/dh: dh_gen.c lib/libcrypto/rsa: rsa_gen.c Log message: The NBs have been duly noted and ignored. Drop them. CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2023/04/13 09:23:23 Modified files: share/man/man9 : pmap.9 sys/arch/alpha/alpha: pmap.c sys/arch/alpha/include: pmap.h sys/arch/amd64/amd64: pmap.c sys/arch/amd64/include: pmap.h sys/arch/arm/include: pmap.h sys/arch/arm64/arm64: pmap.c sys/arch/hppa/include: pmap.h sys/arch/i386/i386: pmap.c pmapae.c sys/arch/i386/include: pmap.h sys/arch/m88k/include: pmap.h sys/arch/mips64/mips64: pmap.c sys/arch/powerpc/include: pmap.h sys/arch/powerpc64/powerpc64: pmap.c sys/arch/riscv64/riscv64: pmap.c sys/arch/sh/include: pmap.h sys/arch/sparc64/sparc64: pmap.c sys/uvm : uvm_map.c uvm_pmap.h Log message: pmap_copy() has never, ever, been implemented in any of the platforms OpenBSD ever ran on, and it's unlikely to ever be implemented, so remove it. ok jsg@ CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2023/04/13 09:36:28 Modified files: sys/dev/pci : pci.c sys/arch/sparc64/sparc64: locore.s Log message: Grammar fixes in comments. CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/04/13 09:51:16 Modified files: usr.sbin/bgpd : rde.c Log message: Simplify how IMSG_CTL_SHOW_RIB_COMMUNITIES is constructed. This can just call imsg_compose() and be done with it. OK tb@ CVSROOT: /cvs Module name: ports Changes by: op@cvs.openbsd.org 2023/04/13 10:30:03 Modified files: sysutils/nnn : Makefile distinfo Log message: update sysutils/nnn to 4.8; from MAINTAINER Martin Ziemer, thanks! CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/13 10:35:30 Modified files: net/icinga/icinga-php-library: Makefile distinfo Log message: update to icinga-php-library-0.11.1 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/13 10:36:03 Modified files: net/dhcpcd : Makefile distinfo Log message: update to dhcpcd-9.5.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/13 10:38:47 Modified files: www/urlwatch : Makefile distinfo Log message: update to urlwatch-2.26 CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/13 10:53:53 Modified files: x11/kde-applications/akonadi: Makefile Log message: Add missing dependencies on kaccounts-integration and libaccounts-qt Spotted by jca@, merci CVSROOT: /cvs Module name: src Changes by: job@cvs.openbsd.org 2023/04/13 11:04:02 Modified files: usr.sbin/rpki-client: extern.h main.c parser.c validate.c Log message: Check whether products listed on a manifest were issued by the same authority as the manifest itself OK tb@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/13 12:20:21 Modified files: lib/libkeynote : base64.c Log message: Use ANSI-style functions for Base64 wrappers Silences a few -Wdeprecated-non-prototype warnings emitted by clang 15. ok bluhm miod CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2023/04/13 12:29:36 Modified files: sys/dev/ic : pcdisplay_chars.c sys/dev/wscons : unicode.h wsemul_vt100_chars.c Log message: Catch up with box drawing characters which have been standardized in unicode after the original wscons code was written and chose placeholder values. From NetBSD (wsemul_vt100_chars.c r1.8 and r1.14) via Crystal Kolipe, thanks! CVSROOT: /cvs Module name: src Changes by: miod@cvs.openbsd.org 2023/04/13 13:39:50 Modified files: sys/arch/alpha/include: alpha_cpu.h vmparam.h Log message: Sprinkle UL suffix to constant literals which don't fit in int. NFCI CVSROOT: /cvs Module name: ports Changes by: bket@cvs.openbsd.org 2023/04/13 13:45:35 Modified files: sysutils/rustic: Makefile crates.inc distinfo Log message: Update to rustic-0.5.1 Changes: https://github.com/rustic-rs/rustic/releases/tag/v0.5.1 CVSROOT: /cvs Module name: src Changes by: millert@cvs.openbsd.org 2023/04/13 13:57:30 Modified files: libexec/ld.so : resolve.c Log message: Avoid an overflow in the ELF SYSV ABI hash function. The hash function is supposed to return a value less than or equal to 0x0fffffff. Due to a bug in the sample code supplied with the ELF SYSV ABI documentation, the hash function can overflow on 64-bit systems. Apply the same fix used by GNU libc, MUSL libc and FreeBSD. Prompted by https://maskray.me/blog/2023-04-12-elf-hash-function OK tb@ miod@ CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/13 14:31:30 Modified files: graphics/digikam: Makefile distinfo graphics/digikam/pkg: PLIST Removed files: graphics/digikam/patches: patch-core_tests_metadataengine_exiftool_exiftoolparserout_cli_cpp Log message: Update digikam to 8.0.0 CVSROOT: /cvs Module name: ports Changes by: tb@cvs.openbsd.org 2023/04/13 15:39:01 Modified files: security/py-tlsfuzzer: Makefile distinfo Log message: Update to py-tlsfuzzer 20230413 CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/13 17:02:12 Modified files: sys/net : ethertypes.h Log message: add the "local experiments" ethertypes CVSROOT: /cvs Module name: ports Changes by: bluhm@cvs.openbsd.org 2023/04/13 17:50:33 Modified files: net/p5-Net-Pcap: Makefile net/p5-Net-Pcap/pkg: PLIST Added files: net/p5-Net-Pcap/patches: patch-Pcap_xs patch-t_02-lookup_t patch-t_10-fileno_t patch-t_14-datalink_t patch-t_16-setnonblock_t patch-t_17-lib_version_t Log message: Fix OpenBSD special cases so that all p5-Net-Pcap 0.20 tests pass. Sort makefile according to template and adapt dependencies to reality. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/13 18:23:16 Modified files: usr.sbin/rpki-client: validate.c Log message: A tab snuck in CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/13 19:11:33 Modified files: sys/dev/fdt : rkrng.c Log message: add support for "rockchip,cryptov2-rng" the steps to operate rockchip,cryptov2-rng are basically the same as the existing rockchip,cryptov1-rng support, but the registers and bits have moved around. add some abstraction for the register differences and have the state machine call the different backends. this is present on rk356x chips as the "True Random Number Generator (TRNG)". tested on a bunch of different rk3568 boards. ok kettenis@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/14 00:35:58 Modified files: www/nextcloud/24: Makefile Log message: www/nextcloud/24: bump REVISION to be ahead of 7.2-stable CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/14 00:36:19 Modified files: www/nextcloud/24: Tag: OPENBSD_7_3 Makefile Log message: www/nextcloud/24: bump REVISION to be ahead of 7.2-stable CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/14 00:47:07 Modified files: usr.bin/openssl: x509.c Log message: Fix double free in error path in openssl(1) x509 A conversion from X509_REQ_get_pubkey() to X509_REQ_get0_pubkey() missed one free of pkey in an unlikely error path. After the conversion pkey is no longer owned by us, so we mustn't free it. ok jsing CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/14 00:53:58 Modified files: net/gupnp/igd : Makefile distinfo net/gupnp/igd/pkg: PLIST Removed files: net/gupnp/igd/patches: patch-libgupnp-igd_meson_build patch-meson_build patch-tests_gtest_gupnp-simple-igd_c Log message: Update to gupnp-igd-1.6.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/14 00:54:29 Modified files: net/libnice : Makefile Log message: Sync WANTLIB after net/gupnp/igd update. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/14 01:02:14 Modified files: x11/yaru : Makefile distinfo Log message: Update to yaru-23.04.4. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/14 02:38:03 Modified files: lang/php/8.1 : Makefile distinfo lang/php/8.1/patches: patch-configure_ac patch-ext_imap_config_m4 patch-ext_openssl_openssl_c patch-php_ini-development patch-php_ini-production lang/php/8.1/pkg: PLIST-main Log message: update to php-8.1.18 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/14 02:38:11 Modified files: lang/php/8.2 : Makefile distinfo lang/php/8.2/patches: patch-configure_ac patch-ext_imap_config_m4 patch-ext_openssl_openssl_c patch-php_ini-development patch-php_ini-production lang/php/8.2/pkg: PLIST-main Log message: update to php-8.2.5 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/14 02:38:20 Modified files: lang/php/8.1 : Tag: OPENBSD_7_3 Makefile distinfo lang/php/8.1/patches: Tag: OPENBSD_7_3 patch-configure_ac patch-ext_imap_config_m4 patch-ext_openssl_openssl_c patch-php_ini-development patch-php_ini-production lang/php/8.1/pkg: Tag: OPENBSD_7_3 PLIST-main Log message: update to php-8.1.18 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/14 02:38:25 Modified files: lang/php/8.2 : Tag: OPENBSD_7_3 Makefile distinfo lang/php/8.2/patches: Tag: OPENBSD_7_3 patch-configure_ac patch-ext_imap_config_m4 patch-ext_openssl_openssl_c patch-php_ini-development patch-php_ini-production lang/php/8.2/pkg: Tag: OPENBSD_7_3 PLIST-main Log message: update to php-8.2.5 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/14 02:48:22 Modified files: sysutils/borgmatic: Makefile distinfo Log message: update to borgmatic-1.7.12 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/14 02:48:26 Modified files: net/librenms : Makefile distinfo net/librenms/patches: patch-misc_config_definitions_json net/librenms/pkg: PLIST Log message: update to librenms-23.4.1 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/14 02:49:37 Modified files: security/scanssh: Makefile distinfo Log message: update to scanssh-2.1.3.1 CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/04/14 04:14:22 Modified files: games/0ad/base : Makefile games/0ad/base/pkg: PLIST Log message: fix packaging, forgotten in previous; thanks aja CVSROOT: /cvs Module name: ports Changes by: pvk@cvs.openbsd.org 2023/04/14 04:20:27 Modified files: sysutils/packer-vmm: Makefile distinfo Added files: sysutils/packer-vmm: modules.inc Log message: Update packer-vmm 1.7.0 -> 1.7.3 Update packer-vmm, diff from Matthew Martin, thank you! CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/14 04:24:35 Modified files: graphics/kirigami-addons: Makefile distinfo graphics/kirigami-addons/pkg: PLIST Log message: Update kirigami-addons to 0.8.0 CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/14 04:41:34 Modified files: lib/libcrypto/sha: sha512.c Log message: Use memset() and only initialise non-zero struct members. ok tb@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/14 04:42:51 Modified files: lib/libcrypto : crypto_internal.h Log message: Provide soon to be used crypto_store_htobe32(). ok tb@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/14 04:45:15 Modified files: lib/libcrypto/sha: sha512.c Added files: lib/libcrypto/sha: sha_internal.h Log message: Add support for truncated SHA512 variants. This adds support for SHA512/224 and SHA512/256, as specified in FIPS FIPS 180-4. These are truncated versions of the SHA512 hash. ok tb@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/14 05:04:24 Modified files: lib/libcrypto/bn: bn_lib.c Log message: Provide and use bn_copy_words() in BN_copy(). This is simpler than the current code, while still being well optimised by compilers, across a range of architectures. In many cases we even get a performance gain for the BN sizes that we primarily care about. Joint work with tb@ CVSROOT: /cvs Module name: ports Changes by: paco@cvs.openbsd.org 2023/04/14 05:06:20 Modified files: www/hugo : Makefile distinfo modules.inc Log message: update www/hugo to 0.111.3 ok sthen@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/14 05:10:11 Modified files: lib/libcrypto : Makefile Added files: lib/libcrypto/bn: bn_convert.c Removed files: lib/libcrypto/bn: bn_print.c Log message: Rename the largely misnamed bn_print.c to bn_convert.c This file primarily contains the various BN_bn2*() and BN_*2bn() functions (along with BN_print() and BN_options()). More function shuffling will follow. Discussed with tb@ CVSROOT: /cvs Module name: xenocara Changes by: robert@cvs.openbsd.org 2023/04/14 05:17:50 Modified files: app/xenodm/greeter: verify.c app/xenodm/include: dm.h app/xenodm/xenodm: session.c Log message: make xenodm reload the environment variables after setusercontext(3) so that environment variables configured in login.conf(5) are also available ok matthieu@, millert@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/14 05:18:40 Modified files: regress/lib/libcrypto/ct: Makefile cttest.c Log message: Fix cttest to use public header CVSROOT: /cvs Module name: ports Changes by: tobhe@cvs.openbsd.org 2023/04/14 05:29:15 Modified files: sysutils/u-boot-asahi: Makefile distinfo sysutils/u-boot-asahi/patches: patch-arch_arm_dts_t600x-j314-j316_dtsi patch-arch_arm_dts_t8103-j293_dts patch-arch_arm_dts_t8103-j313_dts patch-arch_arm_dts_t8112-j413_dts patch-arch_arm_dts_t8112-j493_dts Added files: sysutils/u-boot-asahi/patches: patch-arch_arm_dts_t600x-j375_dtsi Removed files: sysutils/u-boot-asahi/patches: patch-arch_arm_dts_t6001-j375c_dts patch-arch_arm_dts_t6002-j375d_dts Log message: Update to openbsd-v2023.04 ok sthen@ patrick@ CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/14 05:30:53 Modified files: devel/jenkins/stable: Tag: OPENBSD_7_2 Makefile Log message: Update Jenkins -stable to 2.387.2 LTS CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/14 05:38:27 Modified files: devel/jenkins/devel: Tag: OPENBSD_7_3 Makefile devel/jenkins/stable: Tag: OPENBSD_7_3 Makefile Log message: Update Jenkins LTS and -devel to the latest upstream versions CVSROOT: /cvs Module name: ports Changes by: pvk@cvs.openbsd.org 2023/04/14 06:12:04 Modified files: net/mattermost-server: Makefile distinfo net/mattermost-server/pkg: PLIST Log message: Update mattermost-server 7.9.1 -> 7.9.2 Changelog: https://docs.mattermost.com/install/self-managed-changelog.html CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/04/14 06:14:47 Modified files: sysutils/gitlab-cli: Makefile distinfo sysutils/gitlab-cli/pkg: PLIST Log message: update to gitlab-cli 1.28.0 CVSROOT: /cvs Module name: ports Changes by: tobhe@cvs.openbsd.org 2023/04/14 06:17:32 Modified files: sysutils/firmware/apple-boot: Makefile Log message: Bump u-boot version to 2023.04 CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/14 06:37:20 Modified files: regress/lib/libcrypto/ct: Makefile cttest.c Log message: Make cttest work better with the portable test harness CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/14 06:38:30 Modified files: regress/lib/libssl/api: Makefile apitest.c Log message: Make the apitest work better with the portable tets framework CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/14 06:41:26 Modified files: regress/lib/libtls/signer: Makefile signertest.c Log message: Make the signertest work better with the portable test framework CVSROOT: /cvs Module name: src Changes by: stsp@cvs.openbsd.org 2023/04/14 06:45:10 Modified files: sys/dev/pci : if_iwm.c if_iwx.c Log message: Wire up the iwm_updatechan and iwx_updatechan callbacks. These callbacks were not reachable by mistake. This change is a first step towards preventing iwx SYSASSERT 0x20101A28 as seen by beck@ and Mikhail when an 11ac AP switches channel width. The callbacks may still not trigger after this change. Possibly because APs use channel switch announcements (CSA) which we currently ignore. We only check the 11n HTOP IE for channel info. We may eventually need to add CSA support in order to detect channel width changes in 11ac mode. No regressions seen by jmc@ on iwx, nor by florian@, millert@ on iwm CVSROOT: /cvs Module name: ports Changes by: paco@cvs.openbsd.org 2023/04/14 07:14:59 Modified files: www/hugo : Tag: OPENBSD_7_3 Makefile distinfo modules.inc Log message: update www/hugo to 0.111.e This fixes a problem with the file activity watcher. ok sthen@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/14 08:14:39 Modified files: regress/lib/libcrypto/ct: cttest.c Log message: Cast the uint64_t SCT timestamps to (unsigned long long) for printing. What a wonderful choice between this and that PRI ugliness... CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/14 08:23:05 Modified files: regress/lib/libssl/exporter: exportertest.c Log message: Plug a memleak caused by an extra bump of a refcount SSL_set_session() should really be called SSL_set1_session()... CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/14 08:36:13 Modified files: regress/lib/libcrypto/ct: cttest.c Log message: cttest: plug leak due to missing SCT_LIST_free() CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/14 08:50:14 Modified files: math/labplot : Makefile Added files: math/labplot/patches: patch-CMakeLists_txt patch-src_CMakeLists_txt Log message: Bring back Excel support Use system QXlsx lib from textproc/qxlsx CVSROOT: /cvs Module name: src Changes by: robert@cvs.openbsd.org 2023/04/14 09:00:40 Modified files: distrib/arm64/ramdisk: install.md Log message: check if there is actually anything to extract from the firmware tarball on apple silicon so that we don't fill up the ramdisk by extracting the whole tarball while here, change the code so that the machdep.compatible sysctl gets read once and then that value is used in the script instead of calling sysctl several times from input and ok kn@, kettenis@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/14 09:27:13 Modified files: usr.bin/openssl: apps.c apps.h cms.c s_cb.c smime.c verify.c Log message: Drop policy printing from openssl Nothing really uses the policy tree. It's desgined with built-in DoS capabilities directly from the RFC. It will be removed from the attack surface and replaced with something equivalent that doesn't grow exponentially with the depth. This removes the only reason the policy tree itself ever leaked out of the library. ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/14 09:31:18 Modified files: usr.sbin/vmd : i8253.c Log message: Add two missing void to appease clang 15 There is another thing clang 15 is whining about - this will be resolved in upcoming work by dv. ok dv CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/14 09:34:08 Modified files: usr.bin/mg : main.c Log message: Add a missing void CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/14 09:35:12 Modified files: regress/usr.sbin/rpki-client/openssl11: Makefile Log message: openssl11/Makefile: make spacing consistent CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/14 11:17:52 Modified files: security/py-openssl: Makefile distinfo Log message: update to py3-openssl-23.1.1 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/14 11:24:53 Modified files: security/py-cryptography_vectors: Makefile distinfo security/py-cryptography_vectors/pkg: PLIST Log message: update to py3-cryptography_vectors-40.0.2 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/14 11:24:59 Modified files: security/py-cryptography: Makefile crates.inc distinfo security/py-cryptography/pkg: PLIST Log message: update to py3-cryptography-40.0.2 CVSROOT: /cvs Module name: src Changes by: dv@cvs.openbsd.org 2023/04/14 12:27:31 Modified files: sys/arch/amd64/include: specialreg.h Log message: add VMX/VMCS defines for amd64 endbr64 features "these are fine," mlarkin@ CVSROOT: /cvs Module name: ports Changes by: pvk@cvs.openbsd.org 2023/04/14 13:57:20 Modified files: net/mattermost-server: Makefile distinfo net/mattermost-server/patches: patch-config_config_json net/mattermost-server/pkg: PLIST Log message: Update mattermost-server 7.9.2 -> 7.10.0 Changelog: https://docs.mattermost.com/install/self-managed-changelog.html CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/14 14:09:56 Modified files: graphics/digikam: Makefile Log message: Disable building tests Some unit tests require data from the external "Digikam Test Data" git repo. The good thing about it, it saves about 1/3 of the compiler time. Spotted by aja in a disconnected bulk build, merci. CVSROOT: /cvs Module name: ports Changes by: pvk@cvs.openbsd.org 2023/04/14 14:18:06 Modified files: sysutils/tflint: Makefile distinfo modules.inc Log message: Update tflint 0.45.0 -> 0.46.0 Changelog: https://github.com/terraform-linters/tflint/releases/tag/v0.46.0 CVSROOT: /cvs Module name: ports Changes by: pvk@cvs.openbsd.org 2023/04/14 14:24:41 Modified files: devel/pre-commit: Makefile distinfo Log message: Update pre-commit 3.2.1 -> 3.2.2 Changelog: https://github.com/pre-commit/pre-commit/releases/tag/v3.2.2 CVSROOT: /cvs Module name: src Changes by: dv@cvs.openbsd.org 2023/04/14 14:27:47 Modified files: sys/arch/amd64/amd64: vmm_support.S Log message: vmm(4): add NENTRY/END macros around asm functions. Part of prep for endbr64 on amd64 hosts. ok mlarkin@ CVSROOT: /cvs Module name: src Changes by: mbuhl@cvs.openbsd.org 2023/04/14 16:41:28 Modified files: sys/ufs/ffs : ffs_vfsops.c Log message: Use designated initializer for ffs_vtbl. OK kn CVSROOT: /cvs Module name: src Changes by: dv@cvs.openbsd.org 2023/04/14 17:56:57 Modified files: sys/arch/amd64/amd64: vmm_support.S Log message: vmm: NENTRY -> ENTRY Originally used NENTRY macros in the asm, but the plan is for endbr64 to appear in the ENTRY macros. cluestick from deraadt@ CVSROOT: /cvs Module name: src Changes by: job@cvs.openbsd.org 2023/04/14 18:39:08 Modified files: usr.sbin/rpki-client: cert.c Log message: Disallow issuer and subject unique identifiers In 1992, the ITU-T - through X.509 version 2 - introduced subject and issuer unique identifier fields to handle the possibility of reuse of subject and/or issuer names over time. However, the standing recommendation is that names not be reused for different entities and that Internet certificates not make use of unique identifiers. Conforming RPKI CAs will never issue certificates with unique identifiers. OK tb@ claudio@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/14 19:22:50 Modified files: sys/arch/amd64/amd64: trap.c vector.S sys/arch/amd64/include: specialreg.h trap.h Log message: add endbr defines and control protection trap ok deraadt@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/14 19:42:20 Modified files: sys/arch/amd64/amd64: vector.S Log message: change trap16 from IDTVEC_NOALIGN to IDTVEC as it is now the first in the reserved block ok deraadt@ CVSROOT: /cvs Module name: src Changes by: dlg@cvs.openbsd.org 2023/04/14 21:19:43 Modified files: sys/dev/ofw : ofw_regulator.c Log message: fixed regulators might rely on other regulators specified by "vin-supply" when turning a fixed regulator on, turn on the regulator specified in vin-supply too. kettenis agrees we should do this. CVSROOT: /cvs Module name: ports Changes by: robert@cvs.openbsd.org 2023/04/14 23:16:30 Modified files: www/chromium : Makefile distinfo www/ungoogled-chromium: Makefile distinfo Added files: www/chromium/patches: patch-build_linux_unbundle_icu_gn www/ungoogled-chromium/patches: patch-build_linux_unbundle_icu_gn Log message: update to 112.0.5615.121 CVSROOT: /cvs Module name: ports Changes by: paco@cvs.openbsd.org 2023/04/15 01:22:46 Modified files: www/ephemetoot : Makefile distinfo Log message: update www/ephemetoot to 3.1.4 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/15 02:02:07 Modified files: databases/py-lmdb: Makefile distinfo Log message: update to py3-lmdb-1.4.1 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/15 02:04:44 Modified files: databases/py-odbc: Makefile distinfo databases/py-odbc/patches: patch-setup_py patch-src_pyodbcmodule_cpp Log message: update to py3-odbc-4.0.39 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/15 02:06:21 Modified files: databases/py-psycopg2: Makefile distinfo Log message: update to py3-psycopg2-2.9.6 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/15 02:10:27 Modified files: databases/py-sqlalchemy: Makefile distinfo Log message: update to py3-sqlalchemy-1.4.47 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/15 02:13:21 Modified files: print/ocrmypdf : Makefile distinfo print/ocrmypdf/pkg: PLIST Log message: update to ocrmypdf-14.1.0 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/15 02:26:34 Modified files: security/py-pyscard: Makefile distinfo Log message: update to py3-pyscard-2.0.7 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/15 02:28:35 Modified files: textproc/py-sphinx-automodapi: Makefile distinfo textproc/py-sphinx-automodapi/pkg: PLIST Log message: update to py3-sphinx-automodapi-0.15.0 CVSROOT: /cvs Module name: ports Changes by: sdk@cvs.openbsd.org 2023/04/15 02:30:47 Modified files: productivity/radicale2: Makefile Log message: Add setuptools RDEP to radicale2 Fixes: ModuleNotFoundError: No module named 'pkg_resources' OK paco, sthen CVSROOT: /cvs Module name: ports Changes by: sdk@cvs.openbsd.org 2023/04/15 03:00:28 Modified files: productivity/radicale2: Tag: OPENBSD_7_3 Makefile Log message: Add setuptools RDEP to radicale2 Fixes: ModuleNotFoundError: No module named 'pkg_resources' OK paco, sthen CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/15 04:05:01 Modified files: print/py-fonttools: Makefile distinfo print/py-fonttools/pkg: PLIST Log message: update to py3-fonttools-4.39.3 CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/15 04:32:18 Modified files: devel/glib2 : Makefile distinfo devel/glib2/patches: patch-gio_glib-compile-schemas_c patch-glib_tests_test-printf_c patch-meson_build devel/glib2/pkg: PLIST Log message: Update to glib2-2.76.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/15 04:32:49 Modified files: devel/gobject-introspection: Makefile distinfo Log message: Update to gobject-introspection-1.76.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/15 04:33:11 Modified files: x11/gnome/at-spi2-core: Makefile distinfo x11/gnome/at-spi2-core/patches: patch-meson_build Removed files: x11/gnome/at-spi2-core/patches: patch-atk-adaptor_adaptors_collection-adaptor_c patch-atk-adaptor_bridge_c Log message: Update to at-spi2-core-2.48.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/15 04:33:30 Modified files: x11/gnome/gjs : Makefile distinfo Log message: Update to gjs-1.76.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/15 04:33:49 Modified files: devel/py-gobject3: Makefile distinfo Log message: Update to py3-gobject3-3.44.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/15 04:34:09 Modified files: devel/libpeas : Makefile distinfo devel/libpeas/pkg: PLIST Log message: Update to libpeas-1.36.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/15 04:34:28 Modified files: devel/gsettings-desktop-schemas: Makefile distinfo Log message: Update to gsettings-desktop-schemas-44.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/15 04:35:01 Modified files: net/glib2-networking: Makefile distinfo net/glib2-networking/pkg: PLIST Added files: net/glib2-networking/patches: patch-tls_tests_meson_build Log message: Update to glib2-networking-2.76.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/15 04:35:30 Modified files: devel/jsonrpc-glib: Makefile distinfo Log message: Update to jsonrpc-glib-3.44.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/15 04:35:51 Modified files: devel/libsoup3 : Makefile distinfo devel/libsoup3/pkg: PLIST Log message: Update to libsoup3-3.4.0. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/15 04:36:11 Modified files: x11/gnome/online-accounts: Makefile distinfo x11/gnome/online-accounts/pkg: PLIST Log message: Update to gnome-online-accounts-3.48.0. CVSROOT: /cvs Module name: src Changes by: claudio@cvs.openbsd.org 2023/04/15 04:36:59 Modified files: usr.sbin/bgpctl: parser.c Log message: Introduce an ANYTOKEN token which can be used instead of NOTOKEN to allow to fall back to another table if no other element in the current table matched. ANYTOKEN needs to be the last element in a table. With this 'bgpctl show rib 192.0.2.1 detail' works. OK tb@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/15 04:37:11 Modified files: sysutils/gkrellm/plugins/sun: Makefile Log message: Mark BROKEN for now (does not build with new Glib). CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/15 04:48:24 Modified files: comms/libhidapi: Makefile distinfo comms/libhidapi/patches: patch-hidapi_hidapi_h patch-libusb_hid_c comms/libhidapi/pkg: PLIST Added files: comms/libhidapi/patches: patch-README_md patch-hidtest_test_c Removed files: comms/libhidapi/patches: patch-README_txt patch-configure_ac patch-hidtest_Makefile_am patch-hidtest_hidtest_cpp Log message: update to libhidapi-0.13.1, from Volker Schlecht CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/15 04:58:22 Modified files: net/nextcloudclient: Makefile net/nextcloudclient/patches: patch-CMakeLists_txt Log message: Tweak and clean up the libinotify setup - Use FindInotify.cmake from devel/kf5/extra-cmake-modules - Drop CFLAGS (nextcloudclient is C++ only code) - Set rpah by CMAKE_INSTALL_RPATH not by CXXFLAGS. OK Adriano (maintainer) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/15 05:09:03 Modified files: net/py-botocore: Makefile distinfo Log message: Update to py3-botocore-1.29.114. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/15 05:09:21 Modified files: net/py-boto3 : Makefile distinfo Log message: Update to py3-boto3-1.26.114. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/15 05:09:44 Modified files: sysutils/awscli: Makefile distinfo sysutils/awscli/pkg: PLIST Log message: Update to awscli-1.27.114. CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/15 05:11:22 Modified files: textproc/gron : Makefile distinfo Log message: update to gron-0.7.1 CVSROOT: /cvs Module name: ports Changes by: sthen@cvs.openbsd.org 2023/04/15 06:17:22 Modified files: net/eduvpn/vpn-ca: Makefile Log message: remove unneeded WRKDIST=${WRKDIR}/${DISTNAME} (no patches in this port) CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/15 07:12:25 Modified files: databases/py-odbc: Makefile Log message: Rmove post-install to unbreak fake. CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/04/15 07:18:28 Modified files: sys/kern : sys_socket.c Log message: return directly to drop needless error variable; OK mvs CVSROOT: /cvs Module name: src Changes by: kn@cvs.openbsd.org 2023/04/15 07:24:47 Modified files: sys/netinet : in.c Log message: Unlock in_ioctl_get(), push kernel lock into in_ioctl_{set,change}_ifaddr() Just like in6_ioctl_get(), read ioctls are safe with the shared net lock to protect interface addresses and flags. OK mvs CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/15 08:10:10 Modified files: regress/lib/libcrypto/free: Makefile Log message: symbols test: drop LIBRESSL_INTERNAL This tests the external API, so it should not have visibility to the inside. Silences two warnings since EC_{GROUP,POINT}_clear_free() are now wrapped in #ifndef LIBRESSL_INTERNAL. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/15 10:17:57 Modified files: regress/lib/libssl/ssl: ssltest.c Log message: ssltest: initial pass of dropping proxy cert goo CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/15 10:50:05 Modified files: regress/lib/libssl/ssl: ssltest.c Log message: ssltest: Drop more policy go from this test. Hopefully that is all. What an absolutely horrid mess. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/15 11:56:35 Added files: lib/libcrypto/sha: sha3.c sha3_internal.h Log message: Import tiny_sha3 This is a minimal and readable SHA3 implementation. ok tb@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/15 11:59:50 Modified files: lib/libcrypto/sha: sha3.c sha3_internal.h Log message: Add license to sha3 files. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/15 12:00:57 Modified files: lib/libcrypto/sha: sha3.c Log message: Import sha3_internal.h. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/15 12:07:44 Modified files: lib/libcrypto/sha: sha3.c sha3_internal.h Log message: Apply style(9) (first pass). CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/15 12:14:21 Modified files: lib/libcrypto/sha: sha3.c sha3_internal.h Log message: Strip and reformat comments. Remove various comments that are unhelpful or obvious. Reformat remaining comments per style(9). CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/15 12:19:06 Modified files: lib/libcrypto/sha: sha3.c Log message: Pull constant tables out of sha3_keccakf(). CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/15 12:22:54 Modified files: lib/libcrypto/sha: sha3_internal.h Log message: Revise header guards. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/15 12:23:54 Modified files: lib/libcrypto/arch/amd64: Makefile.inc lib/libcrypto/arch/arm: Makefile.inc lib/libcrypto/arch/i386: Makefile.inc Log message: Stop building GF2m assembly GF2m support will be removed shortly. In the interim drop some of this unused code already and let it fall back to the C implementation. ok jsing CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/15 12:29:26 Modified files: lib/libcrypto/sha: sha3.c sha3_internal.h Log message: Move some defines out of the sha3_internal.h header. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/15 12:30:27 Modified files: lib/libcrypto/sha: sha3.c sha3_internal.h Log message: Rename SHA3 context to align with existing code. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/15 12:32:55 Modified files: lib/libcrypto/sha: sha3.c sha3_internal.h Log message: Rename SHA3 context struct field from 'st' to 'state'. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/15 12:37:36 Removed files: lib/libcrypto/bn/asm: armv4-gf2m.pl x86-gf2m.pl x86_64-gf2m.pl Log message: Remove now unused GF2m perlasm generators CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/15 12:44:17 Modified files: lib/libcrypto/rsa: rsa.h Log message: Prepare rsa.h for X9.31 support removal This wraps the three public functions in the usual #if stanza. RSA_X931_PADDING is unfortunately exposed by rust-openssl and erlang. Therefore it will remain visible to avoid breaking the build of lang/rust. Its use in the library will be neutered shortly. ok jsing CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/04/15 12:45:30 Modified files: net/transmission: Makefile distinfo net/transmission/pkg: PLIST-gtk PLIST-main PLIST-qt Added files: net/transmission/patches: patch-gtk_DetailsDialog_cc Removed files: net/transmission/patches: patch-qt_qtr_pro patch-third-party_libutp_utypes_h Log message: Update to transmission 4.0.2 Switch to qt6 (now default) and cmake, stick with gtk3. Joint work with maintainer Josh Grosse Feedback sthen CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/15 12:48:52 Modified files: lib/libcrypto/rsa: rsa_eay.c rsa_pmeth.c Log message: Stop supporting the long-retired X9.31 standard This isolates the three API functions from the library so they can be easily removed and any attempt to use RSA_X931_PADDING mode will now result in an error. ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/15 12:59:49 Modified files: lib/libcrypto/man: RSA_pkey_ctx_ctrl.3 Log message: Adjust documentation of X9.31 padding mode CVSROOT: /cvs Module name: ports Changes by: op@cvs.openbsd.org 2023/04/15 13:04:46 Modified files: fonts/ibm-plex : Makefile distinfo Log message: update fonts/ibm-plex to 6.2.0; from Josiah Frentsos, thanks! CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/15 13:15:53 Modified files: lib/libcrypto/sha: sha3.c Log message: Use the same byte order tests as we do elsewhere in libcrypto. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/15 13:22:34 Modified files: lib/libcrypto/sha: sha3_internal.h Log message: Provide SHA3 length related defines. These will make EVP integration easier, as well as being used in the SHA3 implementation itself. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/15 13:27:54 Modified files: lib/libcrypto/sha: sha3.c Log message: Use memset() to zero the context, instead of zeroing manually. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/15 13:29:20 Modified files: lib/libcrypto/sha: sha3.c sha3_internal.h Log message: Mark sha3_keccakf() as static and remove prototype from header. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/15 13:30:31 Modified files: lib/libcrypto/sha: sha3.c sha3_internal.h Log message: Remove sha3() function, which will not be used or exposed. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/15 13:44:36 Modified files: lib/libcrypto/sha: sha3_internal.h Log message: Add SHA3 digest length define that was previously missed. CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/15 14:00:24 Modified files: lib/libcrypto/sha: sha3.c sha3_internal.h Log message: Use size_t rather than int. Also buy a vowel for rsiz. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/15 14:15:52 Modified files: sysutils/consolekit: Makefile Added files: sysutils/consolekit/patches: patch-src_ck-inhibit_c Log message: Don't mess up with invalid file descriptors; g_close() has become pickier about it. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/15 14:17:59 Modified files: sysutils/consolekit/patches: patch-src_ck-inhibit_c Log message: Add comment. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/15 15:53:39 Modified files: regress/lib/libcrypto/ec: ec_point_conversion.c Log message: ec_point_conversion: do not rely on ec.h pulling in bn.h CVSROOT: /cvs Module name: src Changes by: dv@cvs.openbsd.org 2023/04/15 19:50:12 Modified files: sys/arch/amd64/amd64: vmm.c Log message: vmm(4): save and restore Intel CET state on vm entry/exit. CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2023/04/15 23:39:33 Modified files: sys/arch/amd64/amd64: vector.S Log message: Both trap 21 (T_CP) and trap 17 (T_ALIGNFLT) supply an error code in hardware; use TRAP() instead of ZTRAP(). T_ALIGNFLT fixed in NetBSD on 2012-4-21 ok deraadt@ jsg@ CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2023/04/15 23:40:26 Modified files: sys/arch/i386/i386: locore.s Log message: Trap 17 (T_ALIGNFLT) supplies an error code in hardware; use TRAP() instead of ZTRAP(). T_ALIGNFLT fixed in NetBSD on 2003-12-12 ok deraadt@ jsg@ CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/16 00:06:14 Modified files: x11/vlc : Makefile Log message: Sync WANTLIB to add unibreak and atspi Diff from Brad CVSROOT: /cvs Module name: src Changes by: guenther@cvs.openbsd.org 2023/04/16 00:38:50 Modified files: sys/arch/amd64/amd64: trap.c Log message: Handle T_CP traps from userland by generating SIGILL, with code ILL_ILLOPC or ILL_BADSTK depending on the error from hardware lack of handling noted by deraadt@ ok jsg@ CVSROOT: /cvs Module name: src Changes by: jsg@cvs.openbsd.org 2023/04/16 00:43:49 Modified files: sys/arch/amd64/amd64: trap.c sys/arch/i386/i386: trap.c Log message: call default db_ktrap() with tf_err, not 0 for exception error code ok guenther@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/16 01:06:04 Added files: net/libnice/patches: patch-meson_build Log message: Unbreak; I fixed WANTLIB and bumped a couple days but forgot to cvs add that patch. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/16 01:07:09 Modified files: textproc/icu4c : Makefile distinfo textproc/icu4c/patches: patch-source_common_putil_cpp patch-source_common_unicode_umachine_h textproc/icu4c/pkg: PLIST-main Log message: Update to icu4c-73.1. CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/16 01:11:25 Modified files: textproc/py-ICU: Makefile distinfo Log message: Update to py3-ICU-2.11. CVSROOT: /cvs Module name: src Changes by: ajacoutot@cvs.openbsd.org 2023/04/16 01:16:58 Modified files: etc : changelist Log message: Add /etc/mixerctl.conf to changelist(5). ok deraadt@ kn@ semarie@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/16 01:24:54 Modified files: x11/gnome/gucharmap: Makefile distinfo Log message: Update to gucharmap-15.0.4. CVSROOT: /cvs Module name: ports Changes by: op@cvs.openbsd.org 2023/04/16 01:30:35 Modified files: lang/abcl : Makefile distinfo lang/abcl/files: abcl_completions lang/abcl/pkg : PLIST Log message: update lang/abcl to 1.9.1; from MAINTAINER Timo Myyrä, thanks! CVSROOT: /cvs Module name: ports Changes by: anton@cvs.openbsd.org 2023/04/16 01:31:37 Modified files: devel/robsd : Makefile distinfo Log message: update to robsd-17.4.2 CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 01:36:43 Modified files: lib/libcrypto/x509: pcy_int.h Log message: Make pcy_int.h pull in x509_local.h it will need it soon ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 01:49:37 Modified files: lib/libcrypto/x509: ext_dat.h Log message: Drop support for the ProxyCertInfo extension This removes the ProxyCertInfo extension from RFC 3820 from the list of supported extensions. Since it is a critical extension, this means that certificates containing it will no longer be considered valid by default. ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 01:59:57 Modified files: lib/libcrypto/x509: x509_verify.c Log message: Remove some dead code from the new verifier The new verifier API is currently unused as we still operate the verifier in legacy mode. Therefore ctx->xsc is always set and the EXFLAG_PROXY will soon be dropped from the library, so this error on encountering proxy certs is effectively doubly dead code. ok jsing CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/16 02:02:45 Modified files: sys/arch/arm64/dev: aplcpu.c Log message: The lowest performance level state for the E-cores on the M2 Pro/Max is 2 instead of 1. Handle this by taking the lowest state from the opp tables instead of hardcoding it. Fixes cpuperf on the M2 Pro/Max. ok patrick@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 02:06:42 Modified files: lib/libcrypto/x509: x509_purp.c x509_vfy.c Log message: More ProxyCertInfo tentacles go to the attic This removes ProxyCertInfo from extension caching, issuer checking and it also drops the special path validation for proxy certs from the legacy verifier. ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 02:08:34 Modified files: lib/libcrypto/x509: x509_local.h Log message: Remove the now unused ex_pcpathlen from the X509 struct ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 02:11:38 Modified files: lib/libcrypto/x509: x509v3.h Log message: Mark proxy policy API for removal in upcoming bump ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 02:14:34 Modified files: lib/libcrypto/modes: modes.h Log message: Cipher text stealing will go away. Mark it for removal. ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 02:17:04 Modified files: lib/libcrypto : ossl_typ.h Log message: The policy tree types become internal ony. Annotate them. ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 02:18:10 Modified files: lib/libcrypto/stack: safestack.h Log message: Annotate policy tree STACK_OF() goo for removal from public API ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 02:21:13 Modified files: lib/libcrypto/x509: x509_vfy.h x509v3.h Log message: Mark remaining policy tree public API for removal ok jsing CVSROOT: /cvs Module name: ports Changes by: pvk@cvs.openbsd.org 2023/04/16 02:30:17 Modified files: textproc/gsed : Makefile distinfo textproc/gsed/patches: patch-Makefile_in textproc/gsed/pkg: PLIST Log message: Update gsed 4.8 -> 4.9 Changelog: https://git.savannah.gnu.org/cgit/sed.git/plain/NEWS ok armin@wolfermann.org (maintainer) CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 02:30:21 Modified files: lib/libcrypto/x509: x509_lu.c x509_vfy.h Log message: Prepare addition of X509_STORE_CTX_get1_{certs,crls}(3) X509_STORE_get1_{certs,crls}(3) was added to the OpenSSL 1.1 API with the usual care. At some point later it was noticed that they didn't deal with an X509_STORE at all, but rather with an X509_STORE_CTX, so were misnamed. The fact that X509_STORE_CTX and X509_STORE have their roles reversed when compared to other FOO vs FOO_CTX in this API may or may not be related. Anyway, the X509_STORE versions will be demoted to compat defines and the X509_STORE_CTX will be added to match OpenSSL 1.1 API more closely. This was pointed out by schwarze a long time ago and missed in a few bumps. Hopefully we'll manage to do it this time around. ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 02:31:54 Modified files: lib/libcrypto/ts: ts.h Log message: Mark TS_VERIFY_CTX_init() for removal With opaque TS_VERIFY_CTX the init function dangerous and useless. It will be dropped. ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 02:36:13 Modified files: lib/libcrypto/ec: ec.h Log message: Mark EC_KEY_{get,insert}_method_data() for removal This is unused and in the way of some house keeping. Thus it will be relocated to the attic. ok jsing CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/16 02:45:20 Modified files: sysutils/gkrellm/plugins/sun: Makefile sysutils/gkrellm/plugins/sun/patches: patch-gkrellsun_c sysutils/gkrellm/plugins/sun/pkg: PLIST Added files: sysutils/gkrellm/plugins/sun/patches: patch-CalcEphem_c Log message: Unbreak with new Glib. CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/16 02:52:13 Modified files: math/labplot : Makefile math/labplot/patches: patch-CMakeLists_txt patch-src_CMakeLists_txt Added files: math/labplot/patches: patch-src_backend_datasources_filters_ExcelFilter_h patch-src_kdefrontend_datasources_ExcelOptionsWidget_cpp Log message: Introduce USE_SYSTEM_QXLSX Remove QXlsx and FindQXlsx.cmake from labplot source tree and introduce a cmake option to FORCE using system QXlsx. I hope this survived a aja's bulk build. Spotted again by aja in a bulk build CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 02:55:44 Modified files: lib/libcrypto/bn: bn.h lib/libcrypto/ec: ec.h Log message: Mark public bn_nist and ec_nist API for removal The faster nist code is rife with problematic C. While this is generally considered to be a pleonasm nowadays, here it specifically refers to aliasing issues and other flavors of undefined behavior. With compilers and standardization committees becoming seemingly more determined about making C even more unusable than it already is, this code has resulted in miscompilations and generally is a target rich environment for fuzzers to feast on. We're better off without it. Go look while it's still there. It's some of the very worst we have to offer. ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 03:08:20 Modified files: lib/libcrypto/bn: bn.h Log message: Various BN*init() will be removed from the public API With the corresponding structs now being opaque, the only thing they are good for outside the library are memory leaks. They will be removed completely or become internal only. ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 03:11:06 Modified files: lib/libcrypto/bn: bn.h Log message: The BN reciprocal API will also become internal-only This is unused outside of the library and could do with some reworking. That's easier without having to care about outside consumers. ok jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 03:13:46 Modified files: lib/libcrypto/bn: bn.h Log message: Mark X9.31 BN API for removal This supports a mostly forgotten, seemingly unused and long retired standard. No need for this in our public API Dyson sphere. ok jsing CVSROOT: /cvs Module name: ports Changes by: pvk@cvs.openbsd.org 2023/04/16 04:02:49 Modified files: sysutils/py-pynetbox: Makefile distinfo sysutils/py-pynetbox/pkg: PLIST Log message: Update pynetbox 6.6.1 -> 7.0.1; take maintainership Changelog: https://github.com/netbox-community/pynetbox/releases ok jasper@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/16 04:14:59 Modified files: sys/arch/arm64/arm64: process_machdep.c sig_machdep.c sys/arch/arm64/include: armreg.h Log message: Clear BTYPE bits when setting up a signal handler and when handling a PT_CONTINUE ptrace(2) request. Otherwise we would trap if userland was interrupted at a point where it is doing an indirect branch that has set the bits but before it has executed the BTI instruction at the branch target. The PT_SETREGS request may need similar treatment, at least when the PC is changed. But Linux doesn't do this and debuggers might want full control over the BTYPE bits. So leave this alone for now. ok guenther@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/16 05:14:26 Modified files: sys/arch/arm64/arm64: pmap.c sys/arch/arm64/include: pmap.h Log message: Make enabling the BTI feature a per-pmap thing by storing the ATTR_GP bit in a new pm_guarded member of struct pmap and using this member to add the bits to the PTEs ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: ajacoutot@cvs.openbsd.org 2023/04/16 05:29:33 Modified files: audio/rhythmbox: Makefile distinfo audio/rhythmbox/pkg: PLIST Log message: Update to rhythmbox-3.4.7. One less libsoup2 user. CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/16 05:34:32 Modified files: sys/dev/fdt : simplefb.c Log message: Add no-op implementations of the WSDISPLAYIO_GVIDEO and WSDISPLAYIO_SVIDEO ioctls. Everything we need from them is handled by wsdisplay(4) already, but we need to handle them here to signal that we actually implement burner support. ok tb@, tobhe@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/16 05:38:42 Modified files: sys/dev/acpi : com_acpi.c Log message: Too many ACPI implementations advertise serial ports that aren't actually implemented. This leads to hangs when we run "ttyflags -a" in /etc/rc. Add the same probe that we have in the ISA version of the driver to make sure the port is actually there. ok patrick@ CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 05:52:52 Modified files: lib/libcrypto/x509: ext_dat.h x509_lib.c Log message: Merge ext_dat.h back into x509_lib.c There is no point in having this in a separate internal header. discussed with jsing CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 05:53:40 Removed files: lib/libcrypto/x509: ext_dat.h Log message: Remove now empty/unused ext_dat.h CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 05:59:50 Modified files: lib/libcrypto/x509: x509_lib.c Log message: Fix comment formatting and grammar, drop usless and outdated comment CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 06:01:15 Modified files: lib/libcrypto/x509: x509_lib.c Log message: Use more usual version of inlined nitems(). No binary change. CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 06:05:31 Modified files: lib/libcrypto/x509: x509_lib.c Log message: Remove unnecessary prototypes in the middle of the code In addition, ext_cmp() was already prototyped earlier... CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 06:08:03 Modified files: lib/libcrypto/x509: x509_lib.c Log message: Shuffle ext_cmp() and ext_list_free() up a bit CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/16 06:09:01 Modified files: sys/arch/arm64/dev: aplpcie.c Log message: Add support for the PCIe controller found on M2 Pro/Max SoCs. While the bindings are still preliminary I don't exepect any substantial changes that would affect the driver. Hopefully the bindings will end up officially approved before OpenBSD 7.4 gets released. ok patrick@ CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/04/16 06:34:41 Modified files: net/libnice : Makefile Log message: sync LDEP as well to unbreak extract after previous; reported by naddy CVSROOT: /cvs Module name: src Changes by: dv@cvs.openbsd.org 2023/04/16 06:47:26 Modified files: usr.sbin/vmd : vmd.c vmd.h vmm.c Log message: vmd(8): clean up fd closing in vmm process. Some mild tidying of fd closing in the vmm process in prep for landing parts of my fork+exec diff. With input from guenther@ on the nuances of if/when EINTR may happen in a call to close(2). ok mlarkin@ CVSROOT: /cvs Module name: src Changes by: dv@cvs.openbsd.org 2023/04/16 06:52:54 Modified files: usr.sbin/vmd : vioraw.c Log message: vmd(8): correct comment in vioraw, cleanup formatting. Comment incorrectly mentioned returning sectors when this function returns bytes; the logic in virtio.c computes the number of 512 byte sectors after calling virtio_raw_init. While here, adjust the formatting of return's to match the rest of vmd. No functional change. CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/04/16 06:55:43 Modified files: games/0ad/base : Makefile Log message: disable tests with proper flag, zap unused bundles CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/04/16 07:10:10 Modified files: games/0ad/base : Makefile Log message: fix flag: configure takes --disable-*, premake5 takes --without-* CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/16 07:35:58 Modified files: sys/sys : exec_elf.h Log message: Add PT_GNU_PROPERTY define. ok deraadt@ CVSROOT: /cvs Module name: ports Changes by: kn@cvs.openbsd.org 2023/04/16 08:18:07 Modified files: games/0ad/base : Makefile Log message: neuter unused test lib not covered by --without-tests CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/16 08:18:45 Modified files: net/purple-matrix: Makefile distinfo Log message: net/purple-matrix: update to latest git head includes https://github.com/matrix-org/purple-matrix/pull/117, allowing one using an irssi-bitlbee-libpurple-matrix contraption to see http links inside the markdown by doing 'account X set prefer_markdown true' in the control channel of the bitlbee daemon. CVSROOT: /cvs Module name: ports Changes by: aisha@cvs.openbsd.org 2023/04/16 09:05:51 Modified files: meta : Makefile Log message: hook jitsi meta port into the build CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/16 09:25:28 Modified files: geo/pdal : Makefile distinfo Log message: geo/pdal: update to 2.5.3 see https://github.com/PDAL/PDAL/releases/tag/2.5.3 CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/16 09:32:16 Modified files: lib/libcrypto/sha: sha3.c Log message: Bounds check mdlen that is passed to sha3_init(). While here, use KECCAK_BYTE_WIDTH instead of hardcoding the value. CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/16 09:35:07 Modified files: geo/mapproxy : Makefile distinfo geo/mapproxy/pkg: PLIST Log message: geo/mapproxy: update to 1.16.0. CVSROOT: /cvs Module name: ports Changes by: jca@cvs.openbsd.org 2023/04/16 09:45:13 Modified files: devel/ocaml-menhir: Makefile devel/ocaml-menhir/pkg: PFRAG.native PLIST Log message: Move .a files to PFRAG.native to fix packaging on non-native archs (riscv64) CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/16 10:42:06 Modified files: lib/libcrypto : Makefile lib/libcrypto/evp: evp.h m_sha1.c lib/libcrypto/sha: sha_internal.h Log message: Provide EVP methods for SHA512/224 and SHA512/256. ok tb@ CVSROOT: /cvs Module name: src Changes by: jsing@cvs.openbsd.org 2023/04/16 11:06:19 Modified files: lib/libcrypto/evp: evp.h lib/libcrypto/sha: sha3_internal.h Added files: lib/libcrypto/evp: m_sha3.c Log message: Provide EVP methods for SHA3 224/256/384/512. ok tb@ CVSROOT: /cvs Module name: src Changes by: kettenis@cvs.openbsd.org 2023/04/16 11:26:14 Modified files: usr.sbin/pcidump: pcidump.c Log message: Fix (and simplify) link speed reporting. ok jsg@ CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/16 12:05:36 Modified files: x11/qt6/qt3d : Makefile x11/qt6/qt3d/pkg: PLIST Log message: Disable SIMD on all arches for now. Build on i386 failed, reported by sthen@ CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/16 12:28:11 Log message: Import x11/xfce4/xfce4-docklike 0.4.1, from Joel Carnat (thanks !) Docklike Taskbar behaves similarly to many other desktop environments and operating systems. Wherein all application windows are grouped together as an icon and can be pinned to act as a launcher when the application is not running. Commonly referred to as a dock. Status: Vendor Tag: jcarnat Release Tags: landry_20230416 N ports/x11/xfce4/xfce4-docklike/Makefile N ports/x11/xfce4/xfce4-docklike/distinfo N ports/x11/xfce4/xfce4-docklike/pkg/DESCR N ports/x11/xfce4/xfce4-docklike/pkg/PLIST No conflicts created by this import CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/16 12:29:14 Modified files: x11/xfce4 : Makefile Log message: +xfce4-docklike CVSROOT: /cvs Module name: ports Changes by: landry@cvs.openbsd.org 2023/04/16 12:29:39 Modified files: meta/xfce : Makefile Log message: meta/xfce: add xfce4-docklike to RDEP-extras CVSROOT: /cvs Module name: ports Changes by: rsadowski@cvs.openbsd.org 2023/04/16 12:33:55 Modified files: x11/qt6/qtmultimedia: Makefile Log message: Enable ffmpeg support CVSROOT: /cvs Module name: src Changes by: tb@cvs.openbsd.org 2023/04/16 12:42:30 Modified files: lib/libcrypto/x509: vpm_int.h x509_local.h Log message: Move