This file contains hidden or 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
N = 1024 Accel: 0.05265 FFTW: 0.026213 | |
N = 2048 Accel: 0.042565 FFTW: 0.049334 | |
N = 4096 Accel: 0.049206 FFTW: 0.082782 | |
N = 8192 Accel: 0.118918 FFTW: 0.173506 | |
N = 16384 Accel: 0.200201 FFTW: 0.371488 | |
N = 32768 Accel: 0.356826 FFTW: 1.01589 | |
N = 65536 Accel: 0.844955 FFTW: 1.79316 | |
N = 131072 Accel: 1.95759 FFTW: 3.99565 | |
N = 262144 Accel: 4.34179 FFTW: 9.87287 | |
N = 524288 Accel: 9.31858 FFTW: 19.6675 |
This file contains hidden or 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
/* | |
============================================================================== | |
CenteredEditableLabel.h | |
Created: 4 May 2017 10:37:43am | |
Author: Adam Wilson | |
============================================================================== | |
*/ |
This file contains hidden or 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
// | |
// MTCEmitter.cpp | |
// XDAT | |
// | |
// Created by Arvid Rosén on 2012-02-09. | |
// Copyright (c) 2012 Arvid Rosén. All rights reserved. | |
// | |
#include <iostream> | |
#include "MTCEmitter.h" |
This file contains hidden or 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
/* | |
============================================================================== | |
PaddleSetup.cpp | |
Created: 23 Sep 2017 9:15:20pm | |
Author: Adam Wilson | |
============================================================================== | |
*/ |
This file contains hidden or 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
curl -g -X PUT http://username:[email protected]:5984/dbname/_design/validate_read_only -d \'{\"validate_doc_update\": \""$(tr -d '\n' < validate_doc_update.js | sed 's/"/\\"/g')"\"}\' |
This file contains hidden or 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
#pragma once | |
#ifdef __APPLE__ | |
struct OSXUIUtils | |
{ | |
static void setDarkTheme(void* view); | |
}; |
This file contains hidden or 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
#pragma once | |
#include <JuceHeader.h> | |
#if JUCE_IOS | |
class NSDataUtils | |
{ | |
public: | |
static String toString(void* data); | |
static void* fromString(String dataAsString); |
This file contains hidden or 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
#pragma once | |
#include <JuceHeader.h> | |
#if JUCE_IOS | |
class NSURLUtils | |
{ | |
public: | |
static URL URLfromBookmark (void* bookmark); | |
static void* bookmarkFromURL (URL& url); |
This file contains hidden or 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
/** | |
* Usage: | |
* ``` | |
* std::function<void(int32)> callback; // This should be stored as e.g. class member | |
* ... | |
* addInt32Callback (wrapCallable<int32>(callback), &callback); | |
* ``` | |
* @tparam T | |
* @tparam Callable | |
* @return function pointer |