Skip to content

Instantly share code, notes, and snippets.

Object was deleted while awaiting a callback
Object was deleted while awaiting a callback
Object was deleted while awaiting a callback
Object was deleted while awaiting a callback
Object was deleted while awaiting a callback
Object was deleted while awaiting a callback
Object was deleted while awaiting a callback
Object was deleted while awaiting a callback
Object was deleted while awaiting a callback
Object was deleted while awaiting a callback
CPU0
17: 496 tzic 1 Edge mmc0
22: 0 tzic 6 Edge sdma
25: 0 tzic 9 Edge 83ff4000.vpu
28: 795 tzic 12 Edge A205
30: 0 tzic 14 Edge 73f80200.usb
32: 779831 tzic 16 Edge 73f80400.usb
34: 1124030 tzic 18 Edge 73f80000.usb
46: 0 tzic 30 Edge 70014000.ssi
47: 1197 tzic 31 Edge 73fbc000.serial
./configure --prefix=/usr --disable-glx --with-platforms=drm --with-gallium-drivers=freedreno,imx
checking build system type... armv7l-unknown-linux-gnueabi
checking host system type... armv7l-unknown-linux-gnueabi
checking target system type... armv7l-unknown-linux-gnueabi
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
class BGroup {
struct BoneData {
Urho3D::Node *node;
Urho3D::Vector3 scale;
Urho3D::Vector3 translation;
Urho3D::Vector3 default_loc;
Urho3D::Vector3 default_scale;
};
Urho3D::Vector<BoneData> modifiers;
struct PreserveData {
@slapin
slapin / gist:8938407
Created February 11, 2014 16:32
batch-convert lots of PNGs to 8-bit palette
# Create an 8-bit png from our source, with a 235-color palette as an example.
convert truecolor_source.png -colors 235 palette.png
# Create an 8-bit png from an arbitrary image and use the palette in palette.png
convert sample.png -map palette.png output.png