0x01 int main() {
0x02 for (int i = 0; i < 10; i++) {
0x03 doSomething(i);
0x04 }
0x05
This file contains hidden or 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
<!-- | |
Any copyright is dedicated to the Public Domain. | |
http://creativecommons.org/publicdomain/zero/1.0/ | |
--> | |
<!DOCTYPE HTML> | |
<html> | |
<title>Use two different pieces from the sourceImage in two different filter nodes</title> | |
<head> | |
<style> | |
.filtered { |
This file contains hidden or 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
changeset: 507540:45049f022ac7 | |
user: Markus Stange <[email protected]> | |
date: Mon Aug 13 16:09:30 2018 -0400 | |
summary: CoreAnimation patch from tnikkel | |
diff --git a/gfx/2d/MacIOSurface.cpp b/gfx/2d/MacIOSurface.cpp | |
--- a/gfx/2d/MacIOSurface.cpp | |
+++ b/gfx/2d/MacIOSurface.cpp | |
@@ -64,16 +64,17 @@ IOSurfaceContextGetSurfaceFunc MacIOS | |
CVPixelBufferGetIOSurfaceFunc MacIOSurfaceLib::sCVPixelBufferGetIOSurface; |
This file contains hidden or 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 --git a/app/build.gradle b/app/build.gradle | |
index f3c9954f..afe20096 100644 | |
--- a/app/build.gradle | |
+++ b/app/build.gradle | |
@@ -144,17 +144,17 @@ repositories { | |
// Remember the version of the artifacts. In the example above that's: 61.0.20180611134439 | |
// ARM GeckoView builds | |
- url "https://index.taskcluster.net/v1/task/gecko.v2.mozilla-beta.revision" + | |
+ url "https://index.taskcluster.net/v1/task/gecko.v2.mozilla-central.nightly.revision" + |
This file contains hidden or 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 --git a/app/build.gradle b/app/build.gradle | |
index f3c9954f..fd84f565 100644 | |
--- a/app/build.gradle | |
+++ b/app/build.gradle | |
@@ -144,17 +144,17 @@ repositories { | |
// Remember the version of the artifacts. In the example above that's: 61.0.20180611134439 | |
// ARM GeckoView builds | |
- url "https://index.taskcluster.net/v1/task/gecko.v2.mozilla-beta.revision" + | |
+ url "https://index.taskcluster.net/v1/task/gecko.v2.mozilla-central.revision" + |
This file contains hidden or 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
Markuss-MacBook-Pro:code mstange$ git clone git clone https://github.com/mozilla-mobile/focus-android | |
Markuss-MacBook-Pro:code mstange$ git clone https://github.com/mozilla-mobile/focus-android | |
Cloning into 'focus-android'... | |
remote: Counting objects: 28417, done. | |
remote: Compressing objects: 100% (84/84), done. | |
remote: Total 28417 (delta 53), reused 110 (delta 43), pack-reused 28258 | |
Receiving objects: 100% (28417/28417), 157.92 MiB | 4.34 MiB/s, done. | |
Resolving deltas: 100% (16073/16073), done. | |
Markuss-MacBook-Pro:code mstange$ cd focus-android/ | |
Markuss-MacBook-Pro:focus-android mstange$ ./gradlew clean app:assembleFocusArmDebug |
This file contains hidden or 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
# HG changeset patch | |
# Parent 6e24234c471ead579c04eb83d9d69d3b7e132977 | |
# User Markus Stange <[email protected]> | |
diff --git a/gfx/src/FilterSupport.cpp b/gfx/src/FilterSupport.cpp | |
--- a/gfx/src/FilterSupport.cpp | |
+++ b/gfx/src/FilterSupport.cpp | |
@@ -1132,23 +1132,23 @@ UpdatePrimitiveFilters(const FilterPrimi | |
} | |
} |
This file contains hidden or 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
Layout info: | |
{ | |
"id": "com.apple.keylayout.DVORAK-QWERTYCMD", | |
"lang": "en" | |
} | |
isUSStandard: false | |
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | |
| HW Code combination | Key | KeyCode combination | Pri | UI label | User settings | Electron accelerator | Dispatching string | WYSIWYG | | |
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | |
| KeyA | a | A | | A | a | A | [KeyA] | | |
This file contains hidden or 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
/** | |
* clang++ main.mm -framework Cocoa -framework OpenGL -framework IOSurface -o test && ./test | |
**/ | |
#import <Cocoa/Cocoa.h> | |
#include <OpenGL/gl.h> | |
@interface TestView: NSView | |
{ | |
NSOpenGLContext* mContext; |
NewerOlder