ui: add PiP side-camera orientation toggle

This commit is contained in:
Prabhaav Pillai
2026-08-27 11:36:58 -05:00
committed by firestar5683
parent 5882bd23ba
commit 032f085500
6 changed files with 49 additions and 4 deletions
@@ -266,6 +266,7 @@ class PipSideCamera(Widget):
self._enabled = self._params.get_bool("PIPPreviewEnabled") and self._params.get_bool("GalaxyDeveloperMode")
self._show_on_blinker = self._params.get_bool("PIPPreviewShowOnBlinker")
self._show_on_bsm = self._params.get_bool("PIPPreviewShowOnBSM")
self._flip_x_value[0] = 1 if self._params.get_bool("PIPPreviewInvert") else 0
try:
raw = self._params.get("PIPPreviewMask")
if isinstance(raw, (bytes, str)):
+30
View File
@@ -29,6 +29,36 @@ def test_pip_driver_camera_shader_mirrors_the_crop():
assert "cropCoord.x = 1.0 - cropCoord.x" in PIP_FRAGMENT_SHADER
class _FakeParams:
def __init__(self, invert: bool = False):
self._invert = invert
def get_bool(self, key: str) -> bool:
if key == "PIPPreviewInvert":
return self._invert
if key == "GalaxyDeveloperMode":
return True
return False
def get(self, key: str):
return None
def test_pip_flip_value_follows_invert_param():
camera = PipSideCamera.__new__(PipSideCamera)
camera._closed = True
camera._last_param_refresh = 0.0
camera._flip_x_value = __import__("pyray").ffi.new("int[1]", [1])
camera._params = _FakeParams(invert=False)
camera._mask = {}
camera._refresh_config(force=True)
assert camera._flip_x_value[0] == 0
camera._params = _FakeParams(invert=True)
camera._refresh_config(force=True)
assert camera._flip_x_value[0] == 1
def test_pip_driver_camera_shader_masks_before_sampling_and_keeps_two_texture_reads():
assert "fwidth(radius)" in PIP_FRAGMENT_SHADER
assert "if (radius > 1.0 + aa)" in PIP_FRAGMENT_SHADER