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 --git a/.SRCINFO b/.SRCINFO | |
index 19ddc83..c04f1eb 100644 | |
--- a/.SRCINFO | |
+++ b/.SRCINFO | |
@@ -1,7 +1,7 @@ | |
pkgbase = chromium-vaapi | |
pkgdesc = Chromium with VA-API support to enable hardware acceleration | |
pkgver = 72.0.3626.81 | |
- pkgrel = 1 | |
+ pkgrel = 2 |
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
render_id: 17 | |
player_id: 27 | |
origin_url: https://www.youtube.com/ | |
frame_url: https://www.youtube.com/watch?v=dzefLHZsRW8 | |
frame_title: YouTube | |
surface_layer_mode: kOnDemand | |
url: blob:https://www.youtube.com/665a4354-3d0a-4ac9-b043-d3d34a7b4bca | |
info: Selected FFmpegVideoDecoder for video decoding, config: codec: h264, format: PIXEL_FORMAT_I420, profile: h264 high, coded size: [1920,1080], visible rect: [0,0,1920,1080], natural size: [1920,1080], has extra data: false, encryption scheme: Unencrypted, rotation: 0° | |
pipeline_state: kPlaying | |
found_video_stream: true |
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 --git a/.SRCINFO b/.SRCINFO | |
index 8ded5e5..b929892 100644 | |
--- a/.SRCINFO | |
+++ b/.SRCINFO | |
@@ -1,7 +1,7 @@ | |
pkgbase = chromium-vaapi | |
pkgdesc = Chromium with VA-API support to enable hardware acceleration | |
- pkgver = 71.0.3578.98 | |
- pkgrel = 3 | |
+ pkgver = 72.0.3626.81 |
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
def compose(*funs): | |
""" Takes functions as arguments and their composition as a single function. """ | |
def compose2(f, g): | |
return lambda x: f(g(x)) | |
return reduce(compose2, funs, lambda x: x) | |
def curry(func): | |
""" Currying decorator. """ | |
def curried(*args, **kwargs): | |
if len(args) + len(kwargs) >= func.__code__.co_argcount: |
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
from shutil import copytree | |
import argparse | |
parser = argparse.ArgumentParser(description='Copy 3rd party Frameworks into application bundle.') | |
parser.add_argument('--app', nargs='?', help='app package location') | |
parser.add_argument('--framework', nargs='?', help='framework location') | |
args = parser.parse_args() |
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
cmake_minimum_required(VERSION 2.8.4) | |
cmake_policy(SET CMP0042 NEW) | |
project(emptyExample) | |
set(APP_NAME emptyExample) | |
set(BUNDLE_NAME "emptyExample") | |
# ===================== oF Directory ===================== | |
set(OF_DIRECTORY "!!!!!!!!!!! ENTER YOUT OPENFRAMEWORKS DIRECTORY !!!!!!!!!!!") | |
# ======================================================== |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.