This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -r 4cb22dd449d6 third_party/libwebrtc/moz.build | |
--- a/third_party/libwebrtc/moz.build Mon Aug 07 08:16:50 2023 +0000 | |
+++ b/third_party/libwebrtc/moz.build Tue Aug 08 13:57:02 2023 -0700 | |
@@ -603,16 +603,26 @@ | |
"/third_party/libwebrtc/modules/desktop_capture/primitives_gn", | |
"/third_party/libwebrtc/modules/portal/portal_gn", | |
"/third_party/libwebrtc/third_party/drm/drm_gn", | |
"/third_party/libwebrtc/third_party/gbm/gbm_gn", | |
"/third_party/libwebrtc/third_party/libepoxy/libepoxy_gn", | |
"/third_party/libwebrtc/third_party/pipewire/pipewire_gn" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl -s | |
# | |
# Takes BF, emits 6502 that only clobbers PC, S, and the N and V flags | |
# Requires an assembler (I recommend xa65) | |
# | |
# Cameron Kaiser | |
# Public domain | |
# http://oldvcr.blogspot.com/2023/01/the-mos-6502-is-mostly-turing-complete.html | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -r 3a74cc97e160 dom/media/platforms/ffmpeg/FFmpegVideoDecoder.cpp | |
--- a/dom/media/platforms/ffmpeg/FFmpegVideoDecoder.cpp Fri Apr 01 19:35:34 2022 +0000 | |
+++ b/dom/media/platforms/ffmpeg/FFmpegVideoDecoder.cpp Thu Apr 07 20:21:34 2022 -0700 | |
@@ -809,17 +809,17 @@ | |
if (!PrepareFrame()) { | |
NS_WARNING("FFmpeg decoder failed to allocate frame."); | |
return MediaResult(NS_ERROR_OUT_OF_MEMORY, __func__); | |
} | |
# ifdef MOZ_WAYLAND_USE_VAAPI |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.word $4200 | |
* = $0200 | |
; kimdle version 3 | |
; guess letters a-f and 0 = o 1 = i 5 = s | |
; assembles into a KIMplement-compatible binary with xa65 | |
; (C)2022 cameron kaiser | |
; all rights reserved |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
(C)2020-1 Cameron Kaiser, ckaiser@floodgap.com | |
All rights reserved. | |
Distributed under the Floodgap Free Software License. | |
Credit to https://github.com/dobra-noc/gm1356/blob/master/PROTOCOL.md for the | |
original protocol description. | |
Linux: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
(C)2020-1 Cameron Kaiser, ckaiser@floodgap.com | |
All rights reserved. | |
Distributed under the Floodgap Free Software License. | |
Linux: | |
gcc -o thum thum.c -lhid -lusb | |
Mac OS X: | |
gcc -o thum thum.c -framework CoreFoundation -framework IOKit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* inetb: a single-process multithreaded inetd for pre-BONE BeOS R5 | |
** Intel and PowerPC compatible | |
** MAKE BEBOXES GREAT AGAIN | |
** | |
** with Metrowerks: | |
** cc -O7 -o inetb inetb.c | |
** (debugging to stderr: cc -DDEBUG -o inetb inetb.c ) | |
** (debugging to socket: cc -DSDEBUG -o inetb inetb.c ) | |
** (you can do -DDEBUG -DSDEBUG together! it's fun!) | |
** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; anaglyph sprite demo for the c64 | |
; cameron kaiser 2020 | |
; public domain | |
SPRITE = $0340 | |
VALUE = $14 | |
HVALUE = $fe | |
MODE = $15 | |
.word $0801 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; given 0-21, create a sprite sized x by x, skipping every other line | |
; cameron kaiser 2020 | |
; public domain | |
SA = $c000 | |
SPRITE = $0340 | |
* = SA | |
.word SA |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -r ac0e1ee8218f build/moz.configure/lto-pgo.configure | |
--- a/build/moz.configure/lto-pgo.configure Tue Feb 20 13:51:00 2024 +0000 | |
+++ b/build/moz.configure/lto-pgo.configure Sat Feb 24 22:47:17 2024 -0800 | |
@@ -2,17 +2,17 @@ | |
# vim: set filetype=python: | |
# This Source Code Form is subject to the terms of the Mozilla Public | |
# License, v. 2.0. If a copy of the MPL was not distributed with this | |
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | |
# PGO |
NewerOlder