BDO Welfare gear
Welfare gear
BDO gear
Cheap gear
Core gear
| #include <windows.h> | |
| #include <commctrl.h> | |
| #include <iostream> | |
| int main(void) { | |
| HWND hTrayWnd = FindWindowEx( | |
| FindWindowEx( | |
| FindWindowEx( | |
| FindWindow("Shell_TrayWnd", NULL) | |
| , NULL, "TrayNotifyWnd", NULL) | |
| , NULL, "SysPager", NULL) |
| #clang++ main.cpp -I/usr/include -L/usr/lib64 -lSDL2main -lSDL2 -Xlinker /subsystem:windows | |
| project('hello-triangle', 'cpp') | |
| compiler = meson.get_compiler('cpp') | |
| incdirs = ['C:\usr\include'] | |
| libdirs = ['C:\usr\lib64'] | |
| libs = ['SDL2', 'SDL2main'] | |
| sources = ['main.cpp'] | |
| deps = [] |
| GCC CFLAGS CCFLAGS CXXFLAGS LDFLAGS | |
| # -Wl,-O1 is unstable on rk3399 | |
| Performance | |
| CFLAGS="-march=native -mtune=native -Ofast -pipe -fno-plt -fvisibility=hidden -flto -Wl,-lfto -s" | |
| LDFLAGS="-Wl,--hash-style=both -Wl,-znow -Wl,-O1 -Wl,--as-needed -Wl,--sort-common -Wl,--relax -Wl,--enable-new-dtags -Wl,-flto -Wl,-s" | |
| Debug | |
| CFLAGS="-march=native -g3 -ggdb3 -Og -fvisibility=default" |
| project('min-e-calc', 'c') | |
| compiler = meson.get_compiler('c') | |
| incdirs = ['/usr/include/efl-1', | |
| '/usr/include/efl-1/interfaces', | |
| '/usr/include/ecore-1', | |
| '/usr/include/eina-1', | |
| '/usr/include/eina-1/eina', | |
| '/usr/include/eo-1', | |
| '/usr/include/elementary-1', |
| src/Makefile.am | 2 - | |
| src/image.c | 15 +---- | |
| src/meson.build | 2 - | |
| src/tiled_yuv.S | 185 -------------------------------------------------------- | |
| src/tiled_yuv.h | 30 --------- | |
| 5 files changed, 3 insertions(+), 231 deletions(-) | |
| diff --git a/src/Makefile.am b/src/Makefile.am | |
| index 6448884..9615ded 100644 | |
| --- a/src/Makefile.am |
| src/Makefile.am | 2 - | |
| src/image.c | 15 +---- | |
| src/meson.build | 2 - | |
| src/tiled_yuv.S | 185 -------------------------------------------------------- | |
| src/tiled_yuv.h | 30 --------- | |
| 5 files changed, 3 insertions(+), 231 deletions(-) | |
| diff --git a/src/Makefile.am b/src/Makefile.am | |
| index 6448884..9615ded 100644 | |
| --- a/src/Makefile.am |
| # Maintainer: Zhang Hai <dreaming.in.code.zh@gmail.com> | |
| # Contributor: Alexander F Rødseth <xyproto@archlinux.org> | |
| # Contributor: Daniel Micay <danielmicay@gmail.com> | |
| # Contributor: Gordin <9ordin@gmail.com> | |
| # Finding dependencies: | |
| # ELF dependencies: | |
| # cd /lib/ && find /opt/android-sdk/tools/ -type f -executable \ | |
| # | LANG=C xargs readelf -d 2>/dev/null \ | |
| # | grep -oP '(?<=Shared library: \[).*(?=\])' | LANG=C xargs pacman -Qo \ |
| char (*sentence_array)[MAX_STR_LEN] = malloc(sizeof(char) * MAX_STR_LEN * sentence_count); |
| /* bezier-spline.js | |
| * | |
| * computes cubic bezier coefficients to generate a smooth | |
| * line through specified points. couples with SVG graphics | |
| * for interactive processing. | |
| * | |
| * For more info see: | |
| * http://www.particleincell.com/2012/bezier-splines/ | |
| * | |
| * Lubos Brieda, Particle In Cell Consulting LLC, 2012 |
BDO Welfare gear
Welfare gear
BDO gear
Cheap gear
Core gear