- Arranger: Hirokazu Tanaka
- Copyright: 1989 Nintendo
- In the Chiptrack Web Player.
- In the desktop version from a command line prompt:
chiptrack https://gist.github.com/jturcotte/f7ddbe243c9290222c63b00bb43131a2
chiptrack https://gist.github.com/jturcotte/f7ddbe243c9290222c63b00bb43131a2
chiptrack https://gist.github.com/jturcotte/206548ec74b77ed97adb3f4326ebe10c
chiptrack https://gist.github.com/jturcotte/3adba9f9cddaf60ad1cacf41027b10a5
[package] | |
name = "skia-text-align" | |
version = "0.1.0" | |
edition = "2021" | |
[[bin]] | |
name = "skia-text-align" | |
path = "main.rs" | |
[dependencies.slint] |
I hereby claim:
To claim this, I am signing this object:
From cf4dbaadeff8be28607c74c9d4bfea010af92d95 Mon Sep 17 00:00:00 2001 | |
From: Jocelyn Turcotte <[email protected]> | |
Date: Fri, 24 Jun 2016 16:22:09 +0200 | |
Subject: [PATCH] Support EGL_ANGLE_surface_orientation to avoid an extra blit | |
on each frame | |
This adds an UseOptimalOrientation option to QSurfaceFormat to let | |
EGL tell ANGLE that the application will take care of using Y-flipped | |
coordinates instead of having to do it through an intermediate surface | |
at the end. |
From 3adadda878f63fcca6892c49c4ddc82143d59b66 Mon Sep 17 00:00:00 2001 | |
From: Jocelyn Turcotte <[email protected]> | |
Date: Thu, 9 Jul 2015 21:52:43 +0200 | |
Subject: [PATCH] Add a backgroundColor property | |
This also allows setting a transparent color to see through | |
the web view's body if its background color isn't specified. | |
The color is initially held by the top API view and is pulled | |
by the WebContentsAdapter in order to set it on the RenderView. |
From 5a7b154e70a14a7ce0df1170d9e8e8e9b8342c8b Mon Sep 17 00:00:00 2001 | |
From: Jocelyn Turcotte <[email protected]> | |
Date: Fri, 27 Mar 2015 10:07:01 +0100 | |
Subject: [PATCH] Add a multipart put test to see if this can improve | |
performances | |
--- | |
performance-tests-c++/main.cpp | 36 ++++++++++++++++++++++++++++++++++++ | |
1 file changed, 36 insertions(+) |
import QtQuick 2.1 | |
Rectangle { | |
height: 600 | |
width: 800 | |
color: "red" | |
ShaderEffect { | |
height: parent.height / 4 | |
width: parent.width / 4 |
#!/usr/bin/python | |
import subprocess | |
import sys | |
import re | |
import json | |
localCommit = sys.argv[1] | |
gitShow = subprocess.check_output(['git', 'show', '--no-patch', localCommit]) | |
for line in gitShow.decode().splitlines(): |