This is a wrap above DrawNode
and https://gist.github.com/dontangg/a7c3acec4bf05e61dd58. Use like this:
auto myRoundedBox = RoundedBox::create(Vec2(500, 500), 60);
readiter = function(h, size) | |
return function() | |
return h:read(size) | |
end; | |
end; | |
--[[ | |
Using: for var in readiter(fileh, size) do your_code end | |
size -- one of supported formats to file:read() | |
file -- vaule getted using io.open(filename, 'r') -- read mode required! | |
]]-- |
This is a wrap above DrawNode
and https://gist.github.com/dontangg/a7c3acec4bf05e61dd58. Use like this:
auto myRoundedBox = RoundedBox::create(Vec2(500, 500), 60);
#!/usr/bin/lua | |
local AVD_BINARY = '/home/v/compile/android-sdk-linux/tools/qemu/linux-x86_64/qemu-system-x86_64' | |
local ADB_BINARY = '/home/v/compile/android-sdk-linux/platform-tools/adb' | |
-- I know, hardcoding is bad, but any other way is too expensive :-( | |
local colors | |
do | |
local ok |
<!-- Sample of code generated -->
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="RGQ8NSYPA59FL">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/pt_BR/i/scr/pixel.gif" width="1" height="1">
v@v-xubuntu:~/compile/tld_calc$ valgrind glade | |
==9781== Memcheck, a memory error detector | |
==9781== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. | |
==9781== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info | |
==9781== Command: glade | |
==9781== | |
GladeUI-Message: 18:51:45.168: 1 missing displayable value for GtkWidget::events | |
GladeUI-Message: 18:51:45.205: 1 missing displayable value for GtkWidget::AtkObject::accessible-role | |
GladeUI-Message: 18:51:47.372: 2 missing displayable value for GtkEntry::input-hints | |
GladeUI-Message: 18:51:51.143: No displayable values for property GtkMenu::anchor-hints |
#!/bin/bash | |
assetstriger=false | |
codetriger=false | |
compiler=g++ | |
. /etc/stk-update | |
startupdate(){ | |
if zenity --question --title=SuperTuxKart --text='Есть обновления SuperTuxKart. Поставить?' --icon-name=supertuxkart --ok-label=Поставить --cancel-label=Потом --modal | |
then | |
BUILD_DIR="$BASEDIR"/stk-code/cmake_build |
#0 0x0000000000a3cbf4 in OnlineProfileFriends::compareFriends(int, int) () | |
#1 0x0000000000a3e1fe in void std::__final_insertion_sort<__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >, __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(int, int)> >(__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >, __gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >, __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(int, int)>) () | |
#2 0x0000000000a3b971 in OnlineProfileFriends::displayResults() () | |
#3 0x00000000007fee88 in GUIEngine::render(float) () | |
#4 0x0000000000758bb4 in IrrDriver::update(float) () | |
#5 0x00000000008f115b in MainLoop::run() () | |
#6 0x00000000008ed691 in main () |
#0 0x000000000097e469 in std::pair<irr::core::string<wchar_t, irr::core::irrAllocator<wchar_t> >, irr::core::string<wchar_t, irr::core::irrAllocator<wchar_t> > >::pair<irr::core::string<wchar_t, irr::core::irrAllocator<wchar_t> >, irr::core::string<wchar_t, irr::core::irrAllocator<wchar_t> >, true>(irr::core::string<wchar_t, irr::core::irrAllocator<wchar_t> > const&, irr::core::string<wchar_t, irr::core::irrAllocator<wchar_t> > const&) () | |
#1 0x000000000097e2c8 in void std::vector<std::pair<irr::core::string<wchar_t, irr::core::irrAllocator<wchar_t> >, irr::core::string<wchar_t, irr::core::irrAllocator<wchar_t> > >, std::allocator<std::pair<irr::core::string<wchar_t, irr::core::irrAllocator<wchar_t> >, irr::core::string<wchar_t, irr::core::irrAllocator<wchar_t> > > > >::_M_realloc_insert<irr::core::string<wchar_t, irr::core::irrAllocator<wchar_t> > const&, irr::core::string<wchar_t, irr::core::irrAllocator<wchar_t> > const&>(__gnu_cxx::__normal_iterator<std::pair<irr::core::string<wchar_t, irr::core::irrAllo |
// Show image using dots and spaces in terminal | |
#define STB_IMAGE_IMPLEMENTATION | |
#include "stb_image.h" | |
#include <iostream> | |
int main(int argc, char *argv[]) { | |
if (argc != 2) { std::cerr << "Only one argument should be image file" << std::endl; return 1; }; | |
int x, y, n; | |
unsigned char *data = stbi_load(argv[1], &x, &y, &n, 1); |
set(_GLSLang_Include_Path "") | |
set(_GLSLang_Library_Path "") | |
set(_GLSLang_Components_Found "") | |
function(_GLSLang_Add_Component COMPONENT) | |
list(APPEND _GLSLang_Components_Found ${COMPONENT}) | |
endfunction() | |
if(WIN32) |