Skip to content

Instantly share code, notes, and snippets.

View ds-hwang's full-sized avatar

Dongseong Hwang ds-hwang

View GitHub Profile
@ds-hwang
ds-hwang / gist:26e765892240aeb6e56b
Last active August 29, 2015 14:03
Data and code to measure CopyTextureChromium vs CopyTexImage2D
Measure time of coping texture by 1000x times between CopyTextureChromium (i.e. GL Drawing) and CopyTexImage2D
Linux (Intel IvyBridge i7-3520M)
GL Drawing TexImage2D
14060 5107
14110 5568
14837 5614
14963 5636
14997 5713
15015 5726
export GYP_GENERATOR_FLAGS="output_dir=out_android"
export GYP_DEFINES='werror= dcheck_always_on=1 OS=android fastbuild=1 clang=1 component=shared_library'
ninja -C out_android/Release $option chrome_shell_apk libwebviewchromium android_webview_apk content_shell_apk blink_tests
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-drawer-panel/core-drawer-panel.html">
<polymer-element name="my-element">
<template>
<style>
</style>
@ds-hwang
ds-hwang / gist:9638319
Created March 19, 2014 09:23
icecc gcc
diff --git a/build/common.gypi b/build/common.gypi
index 03ec5df..2b4c302 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -3109,7 +3109,7 @@
}],
# http://gcc.gnu.org/wiki/DebugFission
# Requires gold and gcc >= 4.8 or clang.
- ['linux_use_gold_flags==1 and (clang==1 or gcc_version>=48) and binutils_version>=223', {
+ ['linux_use_gold_flags==1 and (clang==1 or gcc_version>=49) and binutils_version>=223', {