Browse Source

initial import

incandenza 2 years ago
commit
0798e9ac17

+ 13 - 0
Makefile

@@ -0,0 +1,13 @@
+# Attempt to load a config.make file.
+# If none is found, project defaults in config.project.make will be used.
+ifneq ($(wildcard config.make),)
+	include config.make
+endif
+
+# make sure the the OF_ROOT location is defined
+ifndef OF_ROOT
+	OF_ROOT=$(realpath ../../..)
+endif
+
+# call the project makefile!
+include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk

+ 0 - 0
addons.make


BIN
audioInputExample.gif


+ 74 - 0
audioInputExample.qbs

@@ -0,0 +1,74 @@
+import qbs
+import qbs.Process
+import qbs.File
+import qbs.FileInfo
+import qbs.TextFile
+import "../../../libs/openFrameworksCompiled/project/qtcreator/ofApp.qbs" as ofApp
+
+Project{
+    property string of_root: "../../.."
+
+    ofApp {
+        name: { return FileInfo.baseName(sourceDirectory) }
+
+        files: [
+            "src/mnglitches/glitch.cpp",
+            "src/mnglitches/glitch.h",
+            "src/mnglitches/line.cpp",
+            "src/mnglitches/line.h",
+            "src/mnglitches/randomness.h",
+            "src/main.cpp",
+            "src/ofApp.cpp",
+            "src/ofApp.h",
+        ]
+
+        of.addons: [
+           // 'ofxFft','ofxVoronoi2D'
+             'ofxFft'
+        ]
+
+        // additional flags for the project. the of module sets some
+        // flags by default to add the core libraries, search paths...
+        // this flags can be augmented through the following properties:
+        of.pkgConfigs: []       // list of additional system pkgs to include
+        of.includePaths: []     // include search paths
+        of.cFlags: []           // flags passed to the c compiler
+        of.cxxFlags: []         // flags passed to the c++ compiler
+        of.linkerFlags: []      // flags passed to the linker
+        of.defines: []          // defines are passed as -D to the compiler
+                                // and can be checked with #ifdef or #if in the code
+        of.frameworks: []       // osx only, additional frameworks to link with the project
+        of.staticLibraries: []  // static libraries
+        of.dynamicLibraries: [] // dynamic libraries
+
+        // other flags can be set through the cpp module: http://doc.qt.io/qbs/cpp-module.html
+        // eg: this will enable ccache when compiling
+        //
+        // cpp.compilerWrapper: 'ccache'
+
+        Depends{
+            name: "cpp"
+        }
+
+        // common rules that parse the include search paths, core libraries...
+        Depends{
+            name: "of"
+        }
+
+        // dependency with the OF library
+        Depends{
+            name: "openFrameworks"
+        }
+    }
+
+    property bool makeOF: true  // use makfiles to compile the OF library
+                                // will compile OF only once for all your projects
+                                // otherwise compiled per project with qbs
+    
+
+    property bool precompileOfMain: false  // precompile ofMain.h
+                                           // faster to recompile when including ofMain.h 
+                                           // but might use a lot of space per project
+
+    references: [FileInfo.joinPaths(of_root, "/libs/openFrameworksCompiled/project/qtcreator/openFrameworks.qbs")]
+}

+ 283 - 0
audioInputExample.qbs.user

@@ -0,0 +1,283 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE QtCreatorProject>
+<!-- Written by QtCreator 4.15.1, 2021-07-13T08:27:24. -->
+<qtcreator>
+ <data>
+  <variable>EnvironmentId</variable>
+  <value type="QByteArray">{72eb1593-388b-4307-9bc7-5cc6063e004f}</value>
+ </data>
+ <data>
+  <variable>ProjectExplorer.Project.ActiveTarget</variable>
+  <value type="int">0</value>
+ </data>
+ <data>
+  <variable>ProjectExplorer.Project.EditorSettings</variable>
+  <valuemap type="QVariantMap">
+   <value type="bool" key="EditorConfiguration.AutoIndent">true</value>
+   <value type="bool" key="EditorConfiguration.AutoSpacesForTabs">false</value>
+   <value type="bool" key="EditorConfiguration.CamelCaseNavigation">true</value>
+   <valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.0">
+    <value type="QString" key="language">Cpp</value>
+    <valuemap type="QVariantMap" key="value">
+     <value type="QByteArray" key="CurrentPreferences">CppGlobal</value>
+    </valuemap>
+   </valuemap>
+   <valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.1">
+    <value type="QString" key="language">QmlJS</value>
+    <valuemap type="QVariantMap" key="value">
+     <value type="QByteArray" key="CurrentPreferences">QmlJSGlobal</value>
+    </valuemap>
+   </valuemap>
+   <value type="int" key="EditorConfiguration.CodeStyle.Count">2</value>
+   <value type="QByteArray" key="EditorConfiguration.Codec">UTF-8</value>
+   <value type="bool" key="EditorConfiguration.ConstrainTooltips">false</value>
+   <value type="int" key="EditorConfiguration.IndentSize">4</value>
+   <value type="bool" key="EditorConfiguration.KeyboardTooltips">false</value>
+   <value type="int" key="EditorConfiguration.MarginColumn">80</value>
+   <value type="bool" key="EditorConfiguration.MouseHiding">true</value>
+   <value type="bool" key="EditorConfiguration.MouseNavigation">true</value>
+   <value type="int" key="EditorConfiguration.PaddingMode">1</value>
+   <value type="bool" key="EditorConfiguration.PreferSingleLineComments">false</value>
+   <value type="bool" key="EditorConfiguration.ScrollWheelZooming">true</value>
+   <value type="bool" key="EditorConfiguration.ShowMargin">false</value>
+   <value type="int" key="EditorConfiguration.SmartBackspaceBehavior">0</value>
+   <value type="bool" key="EditorConfiguration.SmartSelectionChanging">true</value>
+   <value type="bool" key="EditorConfiguration.SpacesForTabs">true</value>
+   <value type="int" key="EditorConfiguration.TabKeyBehavior">0</value>
+   <value type="int" key="EditorConfiguration.TabSize">8</value>
+   <value type="bool" key="EditorConfiguration.UseGlobal">true</value>
+   <value type="bool" key="EditorConfiguration.UseIndenter">false</value>
+   <value type="int" key="EditorConfiguration.Utf8BomBehavior">1</value>
+   <value type="bool" key="EditorConfiguration.addFinalNewLine">true</value>
+   <value type="bool" key="EditorConfiguration.cleanIndentation">true</value>
+   <value type="bool" key="EditorConfiguration.cleanWhitespace">true</value>
+   <value type="QString" key="EditorConfiguration.ignoreFileTypes">*.md, *.MD, Makefile</value>
+   <value type="bool" key="EditorConfiguration.inEntireDocument">false</value>
+   <value type="bool" key="EditorConfiguration.skipTrailingWhitespace">true</value>
+  </valuemap>
+ </data>
+ <data>
+  <variable>ProjectExplorer.Project.PluginSettings</variable>
+  <valuemap type="QVariantMap">
+   <valuemap type="QVariantMap" key="AutoTest.ActiveFrameworks">
+    <value type="bool" key="AutoTest.Framework.Boost">true</value>
+    <value type="bool" key="AutoTest.Framework.CTest">false</value>
+    <value type="bool" key="AutoTest.Framework.Catch">true</value>
+    <value type="bool" key="AutoTest.Framework.GTest">true</value>
+    <value type="bool" key="AutoTest.Framework.QtQuickTest">true</value>
+    <value type="bool" key="AutoTest.Framework.QtTest">true</value>
+   </valuemap>
+   <valuemap type="QVariantMap" key="AutoTest.CheckStates"/>
+   <value type="int" key="AutoTest.RunAfterBuild">0</value>
+   <value type="bool" key="AutoTest.UseGlobal">true</value>
+   <valuelist type="QVariantList" key="ClangCodeModel.CustomCommandLineKey"/>
+   <value type="bool" key="ClangCodeModel.UseGlobalConfig">true</value>
+   <value type="QString" key="ClangCodeModel.WarningConfigId">Builtin.Questionable</value>
+   <valuemap type="QVariantMap" key="ClangTools">
+    <value type="bool" key="ClangTools.AnalyzeOpenFiles">true</value>
+    <value type="bool" key="ClangTools.BuildBeforeAnalysis">true</value>
+    <value type="QString" key="ClangTools.DiagnosticConfig">Builtin.DefaultTidyAndClazy</value>
+    <value type="int" key="ClangTools.ParallelJobs">2</value>
+    <valuelist type="QVariantList" key="ClangTools.SelectedDirs"/>
+    <valuelist type="QVariantList" key="ClangTools.SelectedFiles"/>
+    <valuelist type="QVariantList" key="ClangTools.SuppressedDiagnostics"/>
+    <value type="bool" key="ClangTools.UseGlobalSettings">true</value>
+   </valuemap>
+  </valuemap>
+ </data>
+ <data>
+  <variable>ProjectExplorer.Project.Target.0</variable>
+  <valuemap type="QVariantMap">
+   <value type="QString" key="DeviceType">Desktop</value>
+   <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Desktop</value>
+   <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop</value>
+   <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">{182db797-8316-41ba-8d0a-920bd9c70b7a}</value>
+   <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
+   <value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
+   <value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
+   <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
+    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/opt/openFrameworks/examples/sound/build-audioInputExample-Desktop-Debug</value>
+    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
+     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
+      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Qbs Build</value>
+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qbs.BuildStep</value>
+      <valuemap type="QVariantMap" key="Qbs.Configuration">
+       <value type="QString" key="qbs.defaultBuildVariant">debug</value>
+       <value type="QString" key="qbs.profile">qtc_Desktop_253ec7a4</value>
+       <value type="bool" key="qbspm.forceProbes">false</value>
+      </valuemap>
+      <value type="bool" key="Qbs.Install">true</value>
+      <value type="qlonglong" key="Qbs.MaxJobs">4</value>
+     </valuemap>
+     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
+    </valuemap>
+    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
+     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
+      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Qbs Clean</value>
+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qbs.CleanStep</value>
+     </valuemap>
+     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Clean</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
+    </valuemap>
+    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
+    <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
+    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
+    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges">
+     <value type="QString">LD_LIBRARY_PATH=/opt/openFrameworks/libs/fmod/lib/linux64/</value>
+    </valuelist>
+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Debug</value>
+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qbs.QbsBuildConfiguration</value>
+    <value type="QString" key="Qbs.configName">Debug_Desktop_038b678e9426a45b</value>
+   </valuemap>
+   <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.1">
+    <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/opt/openFrameworks/examples/sound/build-audioInputExample-Desktop-Release</value>
+    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
+     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
+      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Qbs Build</value>
+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qbs.BuildStep</value>
+      <valuemap type="QVariantMap" key="Qbs.Configuration">
+       <value type="QString" key="qbs.defaultBuildVariant">release</value>
+       <value type="QString" key="qbs.profile">qtc_Desktop_253ec7a4</value>
+       <value type="bool" key="qbspm.forceProbes">false</value>
+      </valuemap>
+      <value type="bool" key="Qbs.Install">true</value>
+      <value type="qlonglong" key="Qbs.MaxJobs">4</value>
+     </valuemap>
+     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Build</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
+    </valuemap>
+    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
+     <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
+      <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Qbs Clean</value>
+      <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qbs.CleanStep</value>
+     </valuemap>
+     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Clean</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
+    </valuemap>
+    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
+    <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
+    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/>
+    <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges">
+     <value type="QString">LD_LIBRARY_PATH=/opt/openFrameworks/libs/fmod/lib/linux64/</value>
+     <value type="QString">&lt;VARIABLE&gt;=&lt;VALUE&gt;</value>
+    </valuelist>
+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Release</value>
+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qbs.QbsBuildConfiguration</value>
+    <value type="QString" key="Qbs.configName">Release_Desktop_9467cca98300890e</value>
+   </valuemap>
+   <value type="int" key="ProjectExplorer.Target.BuildConfigurationCount">2</value>
+   <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
+    <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
+     <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Deploy</value>
+     <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>
+    </valuemap>
+    <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">1</value>
+    <valuemap type="QVariantMap" key="ProjectExplorer.DeployConfiguration.CustomData"/>
+    <value type="bool" key="ProjectExplorer.DeployConfiguration.CustomDataEnabled">false</value>
+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.DefaultDeployConfiguration</value>
+   </valuemap>
+   <value type="int" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
+   <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
+    <value type="QString" key="Analyzer.Perf.CallgraphMode">dwarf</value>
+    <valuelist type="QVariantList" key="Analyzer.Perf.Events">
+     <value type="QString">cpu-cycles</value>
+    </valuelist>
+    <valuelist type="QVariantList" key="Analyzer.Perf.ExtraArguments"/>
+    <value type="int" key="Analyzer.Perf.Frequency">250</value>
+    <valuelist type="QVariantList" key="Analyzer.Perf.RecordArguments">
+     <value type="QString">-e</value>
+     <value type="QString">cpu-cycles</value>
+     <value type="QString">--call-graph</value>
+     <value type="QString">dwarf,4096</value>
+     <value type="QString">-F</value>
+     <value type="QString">250</value>
+    </valuelist>
+    <value type="QString" key="Analyzer.Perf.SampleMode">-F</value>
+    <value type="bool" key="Analyzer.Perf.Settings.UseGlobalSettings">true</value>
+    <value type="int" key="Analyzer.Perf.StackSize">4096</value>
+    <value type="bool" key="Analyzer.QmlProfiler.AggregateTraces">false</value>
+    <value type="bool" key="Analyzer.QmlProfiler.FlushEnabled">false</value>
+    <value type="uint" key="Analyzer.QmlProfiler.FlushInterval">1000</value>
+    <value type="QString" key="Analyzer.QmlProfiler.LastTraceFile"></value>
+    <value type="bool" key="Analyzer.QmlProfiler.Settings.UseGlobalSettings">true</value>
+    <valuelist type="QVariantList" key="Analyzer.Valgrind.AddedSuppressionFiles"/>
+    <value type="QString" key="Analyzer.Valgrind.Callgrind.Arguments"></value>
+    <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectBusEvents">false</value>
+    <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectSystime">false</value>
+    <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableBranchSim">false</value>
+    <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableCacheSim">false</value>
+    <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableEventToolTips">true</value>
+    <value type="double" key="Analyzer.Valgrind.Callgrind.MinimumCostRatio">0.01</value>
+    <value type="double" key="Analyzer.Valgrind.Callgrind.VisualisationMinimumCostRatio">10</value>
+    <value type="bool" key="Analyzer.Valgrind.FilterExternalIssues">true</value>
+    <value type="QString" key="Analyzer.Valgrind.KCachegrindExecutable">kcachegrind</value>
+    <value type="int" key="Analyzer.Valgrind.LeakCheckOnFinish">1</value>
+    <value type="QString" key="Analyzer.Valgrind.Memcheck.Arguments"></value>
+    <value type="int" key="Analyzer.Valgrind.NumCallers">25</value>
+    <valuelist type="QVariantList" key="Analyzer.Valgrind.RemovedSuppressionFiles"/>
+    <value type="int" key="Analyzer.Valgrind.SelfModifyingCodeDetection">1</value>
+    <value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
+    <value type="bool" key="Analyzer.Valgrind.ShowReachable">false</value>
+    <value type="bool" key="Analyzer.Valgrind.TrackOrigins">true</value>
+    <value type="QString" key="Analyzer.Valgrind.ValgrindArguments"></value>
+    <value type="QString" key="Analyzer.Valgrind.ValgrindExecutable">valgrind</value>
+    <valuelist type="QVariantList" key="Analyzer.Valgrind.VisibleErrorKinds">
+     <value type="int">0</value>
+     <value type="int">1</value>
+     <value type="int">2</value>
+     <value type="int">3</value>
+     <value type="int">4</value>
+     <value type="int">5</value>
+     <value type="int">6</value>
+     <value type="int">7</value>
+     <value type="int">8</value>
+     <value type="int">9</value>
+     <value type="int">10</value>
+     <value type="int">11</value>
+     <value type="int">12</value>
+     <value type="int">13</value>
+     <value type="int">14</value>
+    </valuelist>
+    <valuelist type="QVariantList" key="CustomOutputParsers"/>
+    <value type="int" key="PE.EnvironmentAspect.Base">2</value>
+    <valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
+    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qbs.RunConfiguration:audioInputExample.</value>
+    <value type="QString" key="ProjectExplorer.RunConfiguration.BuildKey">audioInputExample.</value>
+    <value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
+    <value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
+    <value type="bool" key="RunConfiguration.UseLibrarySearchPath">true</value>
+    <value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
+    <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
+    <value type="QString" key="RunConfiguration.WorkingDirectory.default">/opt/openFrameworks/examples/sound/audioInputExample/bin</value>
+   </valuemap>
+   <value type="int" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
+  </valuemap>
+ </data>
+ <data>
+  <variable>ProjectExplorer.Project.TargetCount</variable>
+  <value type="int">1</value>
+ </data>
+ <data>
+  <variable>ProjectExplorer.Project.Updater.FileVersion</variable>
+  <value type="int">22</value>
+ </data>
+ <data>
+  <variable>Version</variable>
+  <value type="int">22</value>
+ </data>
+</qtcreator>

+ 0 - 0
bin/data/.gitkeep


BIN
bin/libfmod.so


+ 141 - 0
config.make

@@ -0,0 +1,141 @@
+################################################################################
+# CONFIGURE PROJECT MAKEFILE (optional)
+#   This file is where we make project specific configurations.
+################################################################################
+
+################################################################################
+# OF ROOT
+#   The location of your root openFrameworks installation
+#       (default) OF_ROOT = ../../.. 
+################################################################################
+# OF_ROOT = ../../../
+
+################################################################################
+# PROJECT ROOT
+#   The location of the project - a starting place for searching for files
+#       (default) PROJECT_ROOT = . (this directory)
+#    
+################################################################################
+# PROJECT_ROOT = .
+
+################################################################################
+# PROJECT SPECIFIC CHECKS
+#   This is a project defined section to create internal makefile flags to 
+#   conditionally enable or disable the addition of various features within 
+#   this makefile.  For instance, if you want to make changes based on whether
+#   GTK is installed, one might test that here and create a variable to check. 
+################################################################################
+# None
+
+################################################################################
+# PROJECT EXTERNAL SOURCE PATHS
+#   These are fully qualified paths that are not within the PROJECT_ROOT folder.
+#   Like source folders in the PROJECT_ROOT, these paths are subject to 
+#   exlclusion via the PROJECT_EXLCUSIONS list.
+#
+#     (default) PROJECT_EXTERNAL_SOURCE_PATHS = (blank) 
+#
+#   Note: Leave a leading space when adding list items with the += operator
+################################################################################
+# PROJECT_EXTERNAL_SOURCE_PATHS = 
+
+################################################################################
+# PROJECT EXCLUSIONS
+#   These makefiles assume that all folders in your current project directory 
+#   and any listed in the PROJECT_EXTERNAL_SOURCH_PATHS are are valid locations
+#   to look for source code. The any folders or files that match any of the 
+#   items in the PROJECT_EXCLUSIONS list below will be ignored.
+#
+#   Each item in the PROJECT_EXCLUSIONS list will be treated as a complete 
+#   string unless teh user adds a wildcard (%) operator to match subdirectories.
+#   GNU make only allows one wildcard for matching.  The second wildcard (%) is
+#   treated literally.
+#
+#      (default) PROJECT_EXCLUSIONS = (blank)
+#
+#		Will automatically exclude the following:
+#
+#			$(PROJECT_ROOT)/bin%
+#			$(PROJECT_ROOT)/obj%
+#			$(PROJECT_ROOT)/%.xcodeproj
+#
+#   Note: Leave a leading space when adding list items with the += operator
+################################################################################
+# PROJECT_EXCLUSIONS =
+
+################################################################################
+# PROJECT LINKER FLAGS
+#	These flags will be sent to the linker when compiling the executable.
+#
+#		(default) PROJECT_LDFLAGS = -Wl,-rpath=./libs
+#
+#   Note: Leave a leading space when adding list items with the += operator
+#
+# Currently, shared libraries that are needed are copied to the 
+# $(PROJECT_ROOT)/bin/libs directory.  The following LDFLAGS tell the linker to
+# add a runtime path to search for those shared libraries, since they aren't 
+# incorporated directly into the final executable application binary.
+################################################################################
+# PROJECT_LDFLAGS=-Wl,-rpath=./libs
+
+################################################################################
+# PROJECT DEFINES
+#   Create a space-delimited list of DEFINES. The list will be converted into 
+#   CFLAGS with the "-D" flag later in the makefile.
+#
+#		(default) PROJECT_DEFINES = (blank)
+#
+#   Note: Leave a leading space when adding list items with the += operator
+################################################################################
+# PROJECT_DEFINES = 
+
+################################################################################
+# PROJECT CFLAGS
+#   This is a list of fully qualified CFLAGS required when compiling for this 
+#   project.  These CFLAGS will be used IN ADDITION TO the PLATFORM_CFLAGS 
+#   defined in your platform specific core configuration files. These flags are
+#   presented to the compiler BEFORE the PROJECT_OPTIMIZATION_CFLAGS below. 
+#
+#		(default) PROJECT_CFLAGS = (blank)
+#
+#   Note: Before adding PROJECT_CFLAGS, note that the PLATFORM_CFLAGS defined in 
+#   your platform specific configuration file will be applied by default and 
+#   further flags here may not be needed.
+#
+#   Note: Leave a leading space when adding list items with the += operator
+################################################################################
+PROJECT_CFLAGS = -DOFX_FFT_USE_FFTW
+
+################################################################################
+# PROJECT OPTIMIZATION CFLAGS
+#   These are lists of CFLAGS that are target-specific.  While any flags could 
+#   be conditionally added, they are usually limited to optimization flags. 
+#   These flags are added BEFORE the PROJECT_CFLAGS.
+#
+#   PROJECT_OPTIMIZATION_CFLAGS_RELEASE flags are only applied to RELEASE targets.
+#
+#		(default) PROJECT_OPTIMIZATION_CFLAGS_RELEASE = (blank)
+#
+#   PROJECT_OPTIMIZATION_CFLAGS_DEBUG flags are only applied to DEBUG targets.
+#
+#		(default) PROJECT_OPTIMIZATION_CFLAGS_DEBUG = (blank)
+#
+#   Note: Before adding PROJECT_OPTIMIZATION_CFLAGS, please note that the 
+#   PLATFORM_OPTIMIZATION_CFLAGS defined in your platform specific configuration 
+#   file will be applied by default and further optimization flags here may not 
+#   be needed.
+#
+#   Note: Leave a leading space when adding list items with the += operator
+################################################################################
+# PROJECT_OPTIMIZATION_CFLAGS_RELEASE = 
+# PROJECT_OPTIMIZATION_CFLAGS_DEBUG = 
+
+################################################################################
+# PROJECT COMPILERS
+#   Custom compilers can be set for CC and CXX
+#		(default) PROJECT_CXX = (blank)
+#		(default) PROJECT_CC = (blank)
+#   Note: Leave a leading space when adding list items with the += operator
+################################################################################
+# PROJECT_CXX = 
+# PROJECT_CC = 

File diff suppressed because it is too large
+ 0 - 0
obj/linux64/Release/.compiler_flags


+ 1064 - 0
obj/linux64/Release/src/main.d

@@ -0,0 +1,1064 @@
+obj/linux64/Release/src/main.o: \
+ /opt/openFrameworks/examples/sound/audioInputExample/src/main.cpp \
+ /opt/openFrameworks/libs/openFrameworks/ofMain.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofConstants.h \
+ /opt/openFrameworks/libs/tess2/include/tesselator.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofFileUtils.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofLog.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofSystemUtils.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofURLFileLoader.h \
+ /opt/openFrameworks/libs/openFrameworks/events/ofEvents.h \
+ /opt/openFrameworks/libs/openFrameworks/events/ofEventUtils.h \
+ /opt/openFrameworks/libs/openFrameworks/events/ofEvent.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofTimer.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofUtils.h \
+ /opt/openFrameworks/libs/utf8/include/utf8.h \
+ /opt/openFrameworks/libs/utf8/include/utf8/checked.h \
+ /opt/openFrameworks/libs/utf8/include/utf8/core.h \
+ /opt/openFrameworks/libs/utf8/include/utf8/unchecked.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofFpsCounter.h \
+ /opt/openFrameworks/libs/glm/include/glm/vec2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/qualifier.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../simd/platform.h \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec2.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/./compute_vector_relational.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/./setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool2_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_float2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_float2_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_double2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_double2_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_int2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_int2_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint2_precision.hpp \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofThread.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofThreadChannel.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofJson.h \
+ /opt/openFrameworks/libs/json/include/json.hpp \
+ /opt/openFrameworks/libs/openFrameworks/types/ofParameter.h \
+ /opt/openFrameworks/libs/openFrameworks/types/ofPoint.h \
+ /opt/openFrameworks/libs/openFrameworks/math/ofVec3f.h \
+ /opt/openFrameworks/libs/openFrameworks/math/ofVec2f.h \
+ /opt/openFrameworks/libs/openFrameworks/math/ofMathConstants.h \
+ /opt/openFrameworks/libs/glm/include/glm/fwd.hpp \
+ /opt/openFrameworks/libs/openFrameworks/math/ofVec4f.h \
+ /opt/openFrameworks/libs/glm/include/glm/vec4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec4.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_float4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_float4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_double4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_double4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_int4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_int4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/vec3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec3.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool3_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_float3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_float3_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_double3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_double3_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_int3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_int3_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint3_precision.hpp \
+ /opt/openFrameworks/libs/openFrameworks/types/ofRectangle.h \
+ /opt/openFrameworks/libs/openFrameworks/types/ofColor.h \
+ /opt/openFrameworks/libs/glm/include/glm/common.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/detail/_fixes.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/detail/func_common.inl \
+ /opt/openFrameworks/libs/glm/include/glm/detail/../vector_relational.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/detail/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/detail/../detail/func_vector_relational.inl \
+ /opt/openFrameworks/libs/glm/include/glm/detail/compute_common.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/detail/type_vec1.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/detail/type_vec1.inl \
+ /opt/openFrameworks/libs/glm/include/glm/detail/_vectorize.hpp \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofXml.h \
+ /opt/openFrameworks/libs/pugixml/include/pugixml.hpp \
+ /opt/openFrameworks/libs/pugixml/include/pugiconfig.hpp \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofGraphicsBaseTypes.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofGraphicsConstants.h \
+ /opt/openFrameworks/libs/openFrameworks/types/ofTypes.h \
+ /opt/openFrameworks/libs/openFrameworks/types/ofParameterGroup.h \
+ /opt/openFrameworks/libs/openFrameworks/math/ofMath.h \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/constants.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/scalar_constants.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/scalar_constants.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/constants.inl \
+ /opt/openFrameworks/libs/openFrameworks/math/ofVectorMath.h \
+ /opt/openFrameworks/libs/glm/include/glm/mat3x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/matrix_double3x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_mat3x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_mat3x3.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../matrix.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat2x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x2.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x2_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x2_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat2x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x3.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x3_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x3_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat2x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x4.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat3x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double3x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat3x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat3x2.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double3x2_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float3x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float3x2_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat3x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double3x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat3x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat3x4.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double3x4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float3x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float3x4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat4x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x2.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x2_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x2_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat4x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x3.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x3_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x3_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat4x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x4.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/func_matrix.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/../geometric.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/../detail/func_geometric.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/../detail/../exponential.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/../detail/../detail/func_exponential.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/matrix_double3x3_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/matrix_float3x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/matrix_float3x3_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/trigonometric.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/detail/func_trigonometric.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/matrix_transform.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_projection.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_projection.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_clip_space.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_clip_space.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_transform.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_transform.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/matrix_transform.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/matrix_inverse.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/matrix_inverse.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/quaternion.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/vector_relational.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/vector_relational.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/type_float.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_common.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../ext/quaternion_geometric.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../ext/quaternion_geometric.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_common.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_float.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/type_quat.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/../ext/quaternion_relational.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/../ext/quaternion_relational.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/type_quat.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_float_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_double.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_double_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_trigonometric.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_trigonometric.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_transform.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_transform.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/quaternion.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/epsilon.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/epsilon.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/norm.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/quaternion.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../glm.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/_fixes.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../packing.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/func_packing.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/type_half.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/type_half.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../integer.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/func_integer.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../ext/quaternion_exponential.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../ext/quaternion_exponential.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/quaternion.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/component_wise.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/component_wise.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/norm.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/perpendicular.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/projection.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/projection.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/perpendicular.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/rotate_vector.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/transform.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/transform.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/rotate_vector.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/spline.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/optimum_pow.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/optimum_pow.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/spline.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/vector_angle.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/vector_angle.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/scalar_multiplication.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/type_ptr.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/vec1.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_bool1.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_bool1_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_float1.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_float1_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_double1.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_double1_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_int1.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_int1_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_uint1.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_uint1_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/type_ptr.inl \
+ /opt/openFrameworks/libs/openFrameworks/math/ofMatrix3x3.h \
+ /opt/openFrameworks/libs/openFrameworks/math/ofMatrix4x4.h \
+ /opt/openFrameworks/libs/openFrameworks/math/ofQuaternion.h \
+ /opt/openFrameworks/libs/openFrameworks/communication/ofSerial.h \
+ /opt/openFrameworks/libs/openFrameworks/communication/ofArduino.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofFbo.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofTexture.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofGLBaseTypes.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofGLRenderer.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofPolyline.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofPolyline.inl \
+ /opt/openFrameworks/libs/openFrameworks/app/ofAppRunner.h \
+ /opt/openFrameworks/libs/openFrameworks/app/ofWindowSettings.h \
+ /opt/openFrameworks/libs/openFrameworks/app/ofMainLoop.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/of3dGraphics.h \
+ /opt/openFrameworks/libs/openFrameworks/3d/of3dPrimitives.h \
+ /opt/openFrameworks/libs/openFrameworks/3d/ofMesh.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofGLUtils.h \
+ /opt/openFrameworks/libs/openFrameworks/3d/ofMesh.inl \
+ /opt/openFrameworks/libs/openFrameworks/3d/ofNode.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofBitmapFont.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofPixels.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofGraphics.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofMatrixStack.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofPath.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofPolyline.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofVboMesh.h \
+ /opt/openFrameworks/libs/openFrameworks/3d/ofMesh.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofVbo.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofBufferObject.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofTessellator.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofLight.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofMaterial.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofShader.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofCairoRenderer.h \
+ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \
+ /usr/include/cairo/cairo-features.h \
+ /usr/include/cairo/cairo-deprecated.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofImage.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofRendererCollection.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofTrueTypeFont.h \
+ /opt/openFrameworks/libs/openFrameworks/app/ofBaseApp.h \
+ /opt/openFrameworks/libs/openFrameworks/sound/ofSoundBaseTypes.h \
+ /opt/openFrameworks/libs/openFrameworks/app/ofAppBaseWindow.h \
+ /opt/openFrameworks/libs/openFrameworks/app/ofAppGLFWWindow.h \
+ /opt/openFrameworks/libs/openFrameworks/app/ofAppGlutWindow.h \
+ /opt/openFrameworks/libs/openFrameworks/sound/ofSoundStream.h \
+ /opt/openFrameworks/libs/openFrameworks/sound/ofSoundPlayer.h \
+ /opt/openFrameworks/libs/openFrameworks/sound/ofOpenALSoundPlayer.h \
+ /opt/openFrameworks/libs/kiss/include/kiss_fft.h \
+ /opt/openFrameworks/libs/kiss/include/kiss_fftr.h \
+ /opt/openFrameworks/libs/kiss/include/kiss_fft.h \
+ /opt/openFrameworks/libs/openFrameworks/sound/ofSoundBuffer.h \
+ /opt/openFrameworks/libs/openFrameworks/video/ofVideoGrabber.h \
+ /opt/openFrameworks/libs/openFrameworks/video/ofVideoBaseTypes.h \
+ /opt/openFrameworks/libs/openFrameworks/video/ofGstVideoGrabber.h \
+ /opt/openFrameworks/libs/openFrameworks/video/ofGstUtils.h \
+ /usr/include/gstreamer-1.0/gst/gst.h /usr/include/glib-2.0/glib.h \
+ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \
+ /usr/lib/glib-2.0/include/glibconfig.h \
+ /usr/include/glib-2.0/glib/gmacros.h \
+ /usr/include/glib-2.0/glib/gversionmacros.h \
+ /usr/include/glib-2.0/glib/garray.h \
+ /usr/include/glib-2.0/glib/gasyncqueue.h \
+ /usr/include/glib-2.0/glib/gthread.h \
+ /usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \
+ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \
+ /usr/include/glib-2.0/glib/gbacktrace.h \
+ /usr/include/glib-2.0/glib/gbase64.h \
+ /usr/include/glib-2.0/glib/gbitlock.h \
+ /usr/include/glib-2.0/glib/gbookmarkfile.h \
+ /usr/include/glib-2.0/glib/gdatetime.h \
+ /usr/include/glib-2.0/glib/gtimezone.h \
+ /usr/include/glib-2.0/glib/gbytes.h \
+ /usr/include/glib-2.0/glib/gcharset.h \
+ /usr/include/glib-2.0/glib/gchecksum.h \
+ /usr/include/glib-2.0/glib/gconvert.h \
+ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \
+ /usr/include/glib-2.0/glib/gdir.h /usr/include/glib-2.0/glib/genviron.h \
+ /usr/include/glib-2.0/glib/gfileutils.h \
+ /usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \
+ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \
+ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \
+ /usr/include/glib-2.0/glib/gchecksum.h \
+ /usr/include/glib-2.0/glib/ghook.h \
+ /usr/include/glib-2.0/glib/ghostutils.h \
+ /usr/include/glib-2.0/glib/giochannel.h \
+ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \
+ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \
+ /usr/include/glib-2.0/glib/gunicode.h \
+ /usr/include/glib-2.0/glib/gkeyfile.h \
+ /usr/include/glib-2.0/glib/gmappedfile.h \
+ /usr/include/glib-2.0/glib/gmarkup.h \
+ /usr/include/glib-2.0/glib/gmessages.h \
+ /usr/include/glib-2.0/glib/gvariant.h \
+ /usr/include/glib-2.0/glib/gvarianttype.h \
+ /usr/include/glib-2.0/glib/goption.h \
+ /usr/include/glib-2.0/glib/gpattern.h \
+ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \
+ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \
+ /usr/include/glib-2.0/glib/grcbox.h \
+ /usr/include/glib-2.0/glib/grefcount.h \
+ /usr/include/glib-2.0/glib/grefstring.h \
+ /usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gmacros.h \
+ /usr/include/glib-2.0/glib/gregex.h \
+ /usr/include/glib-2.0/glib/gscanner.h \
+ /usr/include/glib-2.0/glib/gsequence.h \
+ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \
+ /usr/include/glib-2.0/glib/gspawn.h \
+ /usr/include/glib-2.0/glib/gstrfuncs.h \
+ /usr/include/glib-2.0/glib/gstringchunk.h \
+ /usr/include/glib-2.0/glib/gstrvbuilder.h \
+ /usr/include/glib-2.0/glib/gtestutils.h \
+ /usr/include/glib-2.0/glib/gthreadpool.h \
+ /usr/include/glib-2.0/glib/gtimer.h \
+ /usr/include/glib-2.0/glib/gtrashstack.h \
+ /usr/include/glib-2.0/glib/gtree.h /usr/include/glib-2.0/glib/guri.h \
+ /usr/include/glib-2.0/glib/guuid.h /usr/include/glib-2.0/glib/gversion.h \
+ /usr/include/glib-2.0/glib/deprecated/gallocator.h \
+ /usr/include/glib-2.0/glib/deprecated/gcache.h \
+ /usr/include/glib-2.0/glib/deprecated/gcompletion.h \
+ /usr/include/glib-2.0/glib/deprecated/gmain.h \
+ /usr/include/glib-2.0/glib/deprecated/grel.h \
+ /usr/include/glib-2.0/glib/deprecated/gthread.h \
+ /usr/include/glib-2.0/glib/glib-autocleanups.h \
+ /usr/include/gstreamer-1.0/gst/glib-compat.h \
+ /usr/include/gstreamer-1.0/gst/gstenumtypes.h \
+ /usr/include/glib-2.0/glib-object.h \
+ /usr/include/glib-2.0/gobject/gbinding.h \
+ /usr/include/glib-2.0/gobject/gobject.h \
+ /usr/include/glib-2.0/gobject/gtype.h \
+ /usr/include/glib-2.0/gobject/gvalue.h \
+ /usr/include/glib-2.0/gobject/gparam.h \
+ /usr/include/glib-2.0/gobject/gclosure.h \
+ /usr/include/glib-2.0/gobject/gsignal.h \
+ /usr/include/glib-2.0/gobject/gmarshal.h \
+ /usr/include/glib-2.0/gobject/gboxed.h \
+ /usr/include/glib-2.0/gobject/glib-types.h \
+ /usr/include/glib-2.0/gobject/genums.h \
+ /usr/include/glib-2.0/gobject/glib-enumtypes.h \
+ /usr/include/glib-2.0/gobject/gparamspecs.h \
+ /usr/include/glib-2.0/gobject/gsourceclosure.h \
+ /usr/include/glib-2.0/gobject/gtypemodule.h \
+ /usr/include/glib-2.0/gobject/gtypeplugin.h \
+ /usr/include/glib-2.0/gobject/gvaluearray.h \
+ /usr/include/glib-2.0/gobject/gvaluetypes.h \
+ /usr/include/glib-2.0/gobject/gobject-autocleanups.h \
+ /usr/include/gstreamer-1.0/gst/gstconfig.h \
+ /usr/include/gstreamer-1.0/gst/gstversion.h \
+ /usr/include/gstreamer-1.0/gst/gstatomicqueue.h \
+ /usr/include/gstreamer-1.0/gst/gstbin.h \
+ /usr/include/gstreamer-1.0/gst/gstelement.h \
+ /usr/include/gstreamer-1.0/gst/gstobject.h \
+ /usr/include/gstreamer-1.0/gst/gstcontrolbinding.h \
+ /usr/include/gstreamer-1.0/gst/gstcontrolsource.h \
+ /usr/include/gstreamer-1.0/gst/gstclock.h \
+ /usr/include/gstreamer-1.0/gst/gstpad.h \
+ /usr/include/gstreamer-1.0/gst/gstbuffer.h \
+ /usr/include/gstreamer-1.0/gst/gstminiobject.h \
+ /usr/include/gstreamer-1.0/gst/gstallocator.h \
+ /usr/include/gstreamer-1.0/gst/gstmemory.h \
+ /usr/include/gstreamer-1.0/gst/gstcaps.h \
+ /usr/include/gstreamer-1.0/gst/gststructure.h \
+ /usr/include/gstreamer-1.0/gst/gstdatetime.h \
+ /usr/include/gstreamer-1.0/gst/gstcapsfeatures.h \
+ /usr/include/gstreamer-1.0/gst/gstmeta.h \
+ /usr/include/gstreamer-1.0/gst/gstbufferlist.h \
+ /usr/include/gstreamer-1.0/gst/gstpadtemplate.h \
+ /usr/include/gstreamer-1.0/gst/gstevent.h \
+ /usr/include/gstreamer-1.0/gst/gstformat.h \
+ /usr/include/gstreamer-1.0/gst/gstiterator.h \
+ /usr/include/gstreamer-1.0/gst/gsttaglist.h \
+ /usr/include/gstreamer-1.0/gst/gstsample.h \
+ /usr/include/gstreamer-1.0/gst/gstsegment.h \
+ /usr/include/gstreamer-1.0/gst/gstmessage.h \
+ /usr/include/gstreamer-1.0/gst/gstquery.h \
+ /usr/include/gstreamer-1.0/gst/gsttoc.h \
+ /usr/include/gstreamer-1.0/gst/gstcontext.h \
+ /usr/include/gstreamer-1.0/gst/gstdevice.h \
+ /usr/include/gstreamer-1.0/gst/gststreams.h \
+ /usr/include/gstreamer-1.0/gst/gststreamcollection.h \
+ /usr/include/gstreamer-1.0/gst/gsttask.h \
+ /usr/include/gstreamer-1.0/gst/gsttaskpool.h \
+ /usr/include/gstreamer-1.0/gst/gstbus.h \
+ /usr/include/gstreamer-1.0/gst/gstelementfactory.h \
+ /usr/include/gstreamer-1.0/gst/gstplugin.h \
+ /usr/include/gstreamer-1.0/gst/gstmacros.h \
+ /usr/include/gstreamer-1.0/gst/gstpluginfeature.h \
+ /usr/include/gstreamer-1.0/gst/gsturi.h \
+ /usr/include/gstreamer-1.0/gst/gstminiobject.h \
+ /usr/include/gstreamer-1.0/gst/gstbufferpool.h \
+ /usr/include/gstreamer-1.0/gst/gstchildproxy.h \
+ /usr/include/gstreamer-1.0/gst/gstdebugutils.h \
+ /usr/include/gstreamer-1.0/gst/gstdevicemonitor.h \
+ /usr/include/gstreamer-1.0/gst/gstdeviceprovider.h \
+ /usr/include/gstreamer-1.0/gst/gstdeviceproviderfactory.h \
+ /usr/include/gstreamer-1.0/gst/gstdynamictypefactory.h \
+ /usr/include/gstreamer-1.0/gst/gstelementmetadata.h \
+ /usr/include/gstreamer-1.0/gst/gsterror.h \
+ /usr/include/gstreamer-1.0/gst/gstghostpad.h \
+ /usr/include/gstreamer-1.0/gst/gstinfo.h \
+ /usr/include/gstreamer-1.0/gst/gstparamspecs.h \
+ /usr/include/gstreamer-1.0/gst/gstvalue.h \
+ /usr/include/gstreamer-1.0/gst/gstpipeline.h \
+ /usr/include/gstreamer-1.0/gst/gstpoll.h \
+ /usr/include/gstreamer-1.0/gst/gstpreset.h \
+ /usr/include/gstreamer-1.0/gst/gstprotection.h \
+ /usr/include/gstreamer-1.0/gst/gstregistry.h \
+ /usr/include/gstreamer-1.0/gst/gstpromise.h \
+ /usr/include/gstreamer-1.0/gst/gstsystemclock.h \
+ /usr/include/gstreamer-1.0/gst/gsttagsetter.h \
+ /usr/include/gstreamer-1.0/gst/gsttocsetter.h \
+ /usr/include/gstreamer-1.0/gst/gsttracer.h \
+ /usr/include/gstreamer-1.0/gst/gsttracerfactory.h \
+ /usr/include/gstreamer-1.0/gst/gsttracerrecord.h \
+ /usr/include/gstreamer-1.0/gst/gsttypefind.h \
+ /usr/include/gstreamer-1.0/gst/gsttypefindfactory.h \
+ /usr/include/gstreamer-1.0/gst/gstutils.h \
+ /usr/include/gstreamer-1.0/gst/gstparse.h \
+ /usr/include/gstreamer-1.0/gst/gstcompat.h \
+ /usr/include/gstreamer-1.0/gst/video/video.h \
+ /usr/include/gstreamer-1.0/gst/video/video-prelude.h \
+ /usr/include/gstreamer-1.0/gst/video/video-format.h \
+ /usr/include/gstreamer-1.0/gst/video/video-enumtypes.h \
+ /usr/include/gstreamer-1.0/gst/video/video-tile.h \
+ /usr/include/gstreamer-1.0/gst/video/video-chroma.h \
+ /usr/include/gstreamer-1.0/gst/video/video-color.h \
+ /usr/include/gstreamer-1.0/gst/video/video-dither.h \
+ /usr/include/gstreamer-1.0/gst/video/video-info.h \
+ /usr/include/gstreamer-1.0/gst/video/video-frame.h \
+ /usr/include/gstreamer-1.0/gst/video/video-converter.h \
+ /usr/include/gstreamer-1.0/gst/video/video-scaler.h \
+ /usr/include/gstreamer-1.0/gst/video/video-resampler.h \
+ /usr/include/gstreamer-1.0/gst/video/video-multiview.h \
+ /usr/include/gstreamer-1.0/gst/video/colorbalancechannel.h \
+ /usr/include/gstreamer-1.0/gst/video/colorbalance.h \
+ /usr/include/gstreamer-1.0/gst/video/gstvideoaggregator.h \
+ /usr/include/gstreamer-1.0/gst/base/gstaggregator.h \
+ /usr/include/gstreamer-1.0/gst/base/base-prelude.h \
+ /usr/include/gstreamer-1.0/gst/video/gstvideodecoder.h \
+ /usr/include/gstreamer-1.0/gst/base/gstadapter.h \
+ /usr/include/gstreamer-1.0/gst/video/gstvideoutils.h \
+ /usr/include/gstreamer-1.0/gst/video/gstvideoencoder.h \
+ /usr/include/gstreamer-1.0/gst/video/gstvideofilter.h \
+ /usr/include/gstreamer-1.0/gst/base/gstbasetransform.h \
+ /usr/include/gstreamer-1.0/gst/video/gstvideometa.h \
+ /usr/include/gstreamer-1.0/gst/video/gstvideotimecode.h \
+ /usr/include/gstreamer-1.0/gst/video/gstvideopool.h \
+ /usr/include/gstreamer-1.0/gst/video/gstvideosink.h \
+ /usr/include/gstreamer-1.0/gst/base/gstbasesink.h \
+ /usr/include/gstreamer-1.0/gst/video/navigation.h \
+ /usr/include/gstreamer-1.0/gst/video/video-blend.h \
+ /usr/include/gstreamer-1.0/gst/video/video-event.h \
+ /usr/include/gstreamer-1.0/gst/video/videodirection.h \
+ /usr/include/gstreamer-1.0/gst/video/videoorientation.h \
+ /usr/include/gstreamer-1.0/gst/video/video-overlay-composition.h \
+ /usr/include/gstreamer-1.0/gst/video/videooverlay.h \
+ /usr/include/gstreamer-1.0/gst/video/gstvideoaffinetransformationmeta.h \
+ /usr/include/gstreamer-1.0/gst/video/video-anc.h \
+ /usr/include/gstreamer-1.0/gst/video/video-hdr.h \
+ /opt/openFrameworks/libs/openFrameworks/video/ofVideoPlayer.h \
+ /opt/openFrameworks/libs/openFrameworks/video/ofGstVideoPlayer.h \
+ /opt/openFrameworks/libs/openFrameworks/3d/of3dUtils.h \
+ /opt/openFrameworks/libs/openFrameworks/3d/ofCamera.h \
+ /opt/openFrameworks/libs/openFrameworks/3d/ofEasyCam.h \
+ /opt/openFrameworks/examples/sound/audioInputExample/src/ofApp.h
+/opt/openFrameworks/libs/openFrameworks/ofMain.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofConstants.h:
+/opt/openFrameworks/libs/tess2/include/tesselator.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofFileUtils.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofLog.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofSystemUtils.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofURLFileLoader.h:
+/opt/openFrameworks/libs/openFrameworks/events/ofEvents.h:
+/opt/openFrameworks/libs/openFrameworks/events/ofEventUtils.h:
+/opt/openFrameworks/libs/openFrameworks/events/ofEvent.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofTimer.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofUtils.h:
+/opt/openFrameworks/libs/utf8/include/utf8.h:
+/opt/openFrameworks/libs/utf8/include/utf8/checked.h:
+/opt/openFrameworks/libs/utf8/include/utf8/core.h:
+/opt/openFrameworks/libs/utf8/include/utf8/unchecked.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofFpsCounter.h:
+/opt/openFrameworks/libs/glm/include/glm/vec2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/qualifier.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../simd/platform.h:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec2.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/./compute_vector_relational.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/./setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool2_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_float2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_float2_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_double2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_double2_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_int2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_int2_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint2_precision.hpp:
+/opt/openFrameworks/libs/openFrameworks/utils/ofThread.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofThreadChannel.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofJson.h:
+/opt/openFrameworks/libs/json/include/json.hpp:
+/opt/openFrameworks/libs/openFrameworks/types/ofParameter.h:
+/opt/openFrameworks/libs/openFrameworks/types/ofPoint.h:
+/opt/openFrameworks/libs/openFrameworks/math/ofVec3f.h:
+/opt/openFrameworks/libs/openFrameworks/math/ofVec2f.h:
+/opt/openFrameworks/libs/openFrameworks/math/ofMathConstants.h:
+/opt/openFrameworks/libs/glm/include/glm/fwd.hpp:
+/opt/openFrameworks/libs/openFrameworks/math/ofVec4f.h:
+/opt/openFrameworks/libs/glm/include/glm/vec4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec4.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_float4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_float4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_double4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_double4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_int4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_int4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/vec3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec3.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool3_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_float3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_float3_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_double3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_double3_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_int3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_int3_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint3_precision.hpp:
+/opt/openFrameworks/libs/openFrameworks/types/ofRectangle.h:
+/opt/openFrameworks/libs/openFrameworks/types/ofColor.h:
+/opt/openFrameworks/libs/glm/include/glm/common.hpp:
+/opt/openFrameworks/libs/glm/include/glm/detail/_fixes.hpp:
+/opt/openFrameworks/libs/glm/include/glm/detail/func_common.inl:
+/opt/openFrameworks/libs/glm/include/glm/detail/../vector_relational.hpp:
+/opt/openFrameworks/libs/glm/include/glm/detail/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/detail/../detail/func_vector_relational.inl:
+/opt/openFrameworks/libs/glm/include/glm/detail/compute_common.hpp:
+/opt/openFrameworks/libs/glm/include/glm/detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/detail/type_vec1.hpp:
+/opt/openFrameworks/libs/glm/include/glm/detail/type_vec1.inl:
+/opt/openFrameworks/libs/glm/include/glm/detail/_vectorize.hpp:
+/opt/openFrameworks/libs/openFrameworks/utils/ofXml.h:
+/opt/openFrameworks/libs/pugixml/include/pugixml.hpp:
+/opt/openFrameworks/libs/pugixml/include/pugiconfig.hpp:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofGraphicsBaseTypes.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofGraphicsConstants.h:
+/opt/openFrameworks/libs/openFrameworks/types/ofTypes.h:
+/opt/openFrameworks/libs/openFrameworks/types/ofParameterGroup.h:
+/opt/openFrameworks/libs/openFrameworks/math/ofMath.h:
+/opt/openFrameworks/libs/glm/include/glm/gtc/constants.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/scalar_constants.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/scalar_constants.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/constants.inl:
+/opt/openFrameworks/libs/openFrameworks/math/ofVectorMath.h:
+/opt/openFrameworks/libs/glm/include/glm/mat3x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/matrix_double3x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_mat3x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_mat3x3.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../matrix.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat2x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x2.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x2_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x2_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat2x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x3.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x3_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x3_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat2x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x4.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat3x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double3x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat3x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat3x2.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double3x2_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float3x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float3x2_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat3x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double3x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat3x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat3x4.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double3x4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float3x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float3x4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat4x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x2.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x2_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x2_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat4x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x3.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x3_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x3_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat4x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x4.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/func_matrix.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/../geometric.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/../detail/func_geometric.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/../detail/../exponential.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/../detail/../detail/func_exponential.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/matrix_double3x3_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/matrix_float3x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/matrix_float3x3_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/trigonometric.hpp:
+/opt/openFrameworks/libs/glm/include/glm/detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/detail/func_trigonometric.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/matrix_transform.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_projection.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_projection.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_clip_space.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_clip_space.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_transform.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_transform.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/matrix_transform.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/matrix_inverse.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/matrix_inverse.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/quaternion.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/vector_relational.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/vector_relational.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/type_float.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_common.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../ext/quaternion_geometric.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../ext/quaternion_geometric.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_common.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_float.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/type_quat.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/../ext/quaternion_relational.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/../ext/quaternion_relational.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/type_quat.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_float_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_double.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_double_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_trigonometric.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_trigonometric.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_transform.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_transform.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/quaternion.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/epsilon.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/epsilon.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/norm.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/quaternion.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../glm.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/_fixes.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../packing.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/func_packing.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/type_half.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/type_half.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../integer.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/func_integer.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../ext/quaternion_exponential.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../ext/quaternion_exponential.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/quaternion.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/component_wise.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/component_wise.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/norm.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/perpendicular.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/projection.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/projection.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/perpendicular.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/rotate_vector.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/transform.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/transform.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/rotate_vector.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/spline.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/optimum_pow.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/optimum_pow.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/spline.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/vector_angle.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/vector_angle.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/scalar_multiplication.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/type_ptr.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/vec1.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_bool1.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_bool1_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_float1.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_float1_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_double1.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_double1_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_int1.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_int1_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_uint1.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_uint1_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/type_ptr.inl:
+/opt/openFrameworks/libs/openFrameworks/math/ofMatrix3x3.h:
+/opt/openFrameworks/libs/openFrameworks/math/ofMatrix4x4.h:
+/opt/openFrameworks/libs/openFrameworks/math/ofQuaternion.h:
+/opt/openFrameworks/libs/openFrameworks/communication/ofSerial.h:
+/opt/openFrameworks/libs/openFrameworks/communication/ofArduino.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofFbo.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofTexture.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofGLBaseTypes.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofGLRenderer.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofPolyline.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofPolyline.inl:
+/opt/openFrameworks/libs/openFrameworks/app/ofAppRunner.h:
+/opt/openFrameworks/libs/openFrameworks/app/ofWindowSettings.h:
+/opt/openFrameworks/libs/openFrameworks/app/ofMainLoop.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/of3dGraphics.h:
+/opt/openFrameworks/libs/openFrameworks/3d/of3dPrimitives.h:
+/opt/openFrameworks/libs/openFrameworks/3d/ofMesh.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofGLUtils.h:
+/opt/openFrameworks/libs/openFrameworks/3d/ofMesh.inl:
+/opt/openFrameworks/libs/openFrameworks/3d/ofNode.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofBitmapFont.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofPixels.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofGraphics.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofMatrixStack.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofPath.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofPolyline.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofVboMesh.h:
+/opt/openFrameworks/libs/openFrameworks/3d/ofMesh.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofVbo.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofBufferObject.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofTessellator.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofLight.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofMaterial.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofShader.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofCairoRenderer.h:
+/usr/include/cairo/cairo.h:
+/usr/include/cairo/cairo-version.h:
+/usr/include/cairo/cairo-features.h:
+/usr/include/cairo/cairo-deprecated.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofImage.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofRendererCollection.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofTrueTypeFont.h:
+/opt/openFrameworks/libs/openFrameworks/app/ofBaseApp.h:
+/opt/openFrameworks/libs/openFrameworks/sound/ofSoundBaseTypes.h:
+/opt/openFrameworks/libs/openFrameworks/app/ofAppBaseWindow.h:
+/opt/openFrameworks/libs/openFrameworks/app/ofAppGLFWWindow.h:
+/opt/openFrameworks/libs/openFrameworks/app/ofAppGlutWindow.h:
+/opt/openFrameworks/libs/openFrameworks/sound/ofSoundStream.h:
+/opt/openFrameworks/libs/openFrameworks/sound/ofSoundPlayer.h:
+/opt/openFrameworks/libs/openFrameworks/sound/ofOpenALSoundPlayer.h:
+/opt/openFrameworks/libs/kiss/include/kiss_fft.h:
+/opt/openFrameworks/libs/kiss/include/kiss_fftr.h:
+/opt/openFrameworks/libs/kiss/include/kiss_fft.h:
+/opt/openFrameworks/libs/openFrameworks/sound/ofSoundBuffer.h:
+/opt/openFrameworks/libs/openFrameworks/video/ofVideoGrabber.h:
+/opt/openFrameworks/libs/openFrameworks/video/ofVideoBaseTypes.h:
+/opt/openFrameworks/libs/openFrameworks/video/ofGstVideoGrabber.h:
+/opt/openFrameworks/libs/openFrameworks/video/ofGstUtils.h:
+/usr/include/gstreamer-1.0/gst/gst.h:
+/usr/include/glib-2.0/glib.h:
+/usr/include/glib-2.0/glib/galloca.h:
+/usr/include/glib-2.0/glib/gtypes.h:
+/usr/lib/glib-2.0/include/glibconfig.h:
+/usr/include/glib-2.0/glib/gmacros.h:
+/usr/include/glib-2.0/glib/gversionmacros.h:
+/usr/include/glib-2.0/glib/garray.h:
+/usr/include/glib-2.0/glib/gasyncqueue.h:
+/usr/include/glib-2.0/glib/gthread.h:
+/usr/include/glib-2.0/glib/gatomic.h:
+/usr/include/glib-2.0/glib/gerror.h:
+/usr/include/glib-2.0/glib/gquark.h:
+/usr/include/glib-2.0/glib/gutils.h:
+/usr/include/glib-2.0/glib/gbacktrace.h:
+/usr/include/glib-2.0/glib/gbase64.h:
+/usr/include/glib-2.0/glib/gbitlock.h:
+/usr/include/glib-2.0/glib/gbookmarkfile.h:
+/usr/include/glib-2.0/glib/gdatetime.h:
+/usr/include/glib-2.0/glib/gtimezone.h:
+/usr/include/glib-2.0/glib/gbytes.h:
+/usr/include/glib-2.0/glib/gcharset.h:
+/usr/include/glib-2.0/glib/gchecksum.h:
+/usr/include/glib-2.0/glib/gconvert.h:
+/usr/include/glib-2.0/glib/gdataset.h:
+/usr/include/glib-2.0/glib/gdate.h:
+/usr/include/glib-2.0/glib/gdir.h:
+/usr/include/glib-2.0/glib/genviron.h:
+/usr/include/glib-2.0/glib/gfileutils.h:
+/usr/include/glib-2.0/glib/ggettext.h:
+/usr/include/glib-2.0/glib/ghash.h:
+/usr/include/glib-2.0/glib/glist.h:
+/usr/include/glib-2.0/glib/gmem.h:
+/usr/include/glib-2.0/glib/gnode.h:
+/usr/include/glib-2.0/glib/ghmac.h:
+/usr/include/glib-2.0/glib/gchecksum.h:
+/usr/include/glib-2.0/glib/ghook.h:
+/usr/include/glib-2.0/glib/ghostutils.h:
+/usr/include/glib-2.0/glib/giochannel.h:
+/usr/include/glib-2.0/glib/gmain.h:
+/usr/include/glib-2.0/glib/gpoll.h:
+/usr/include/glib-2.0/glib/gslist.h:
+/usr/include/glib-2.0/glib/gstring.h:
+/usr/include/glib-2.0/glib/gunicode.h:
+/usr/include/glib-2.0/glib/gkeyfile.h:
+/usr/include/glib-2.0/glib/gmappedfile.h:
+/usr/include/glib-2.0/glib/gmarkup.h:
+/usr/include/glib-2.0/glib/gmessages.h:
+/usr/include/glib-2.0/glib/gvariant.h:
+/usr/include/glib-2.0/glib/gvarianttype.h:
+/usr/include/glib-2.0/glib/goption.h:
+/usr/include/glib-2.0/glib/gpattern.h:
+/usr/include/glib-2.0/glib/gprimes.h:
+/usr/include/glib-2.0/glib/gqsort.h:
+/usr/include/glib-2.0/glib/gqueue.h:
+/usr/include/glib-2.0/glib/grand.h:
+/usr/include/glib-2.0/glib/grcbox.h:
+/usr/include/glib-2.0/glib/grefcount.h:
+/usr/include/glib-2.0/glib/grefstring.h:
+/usr/include/glib-2.0/glib/gmem.h:
+/usr/include/glib-2.0/glib/gmacros.h:
+/usr/include/glib-2.0/glib/gregex.h:
+/usr/include/glib-2.0/glib/gscanner.h:
+/usr/include/glib-2.0/glib/gsequence.h:
+/usr/include/glib-2.0/glib/gshell.h:
+/usr/include/glib-2.0/glib/gslice.h:
+/usr/include/glib-2.0/glib/gspawn.h:
+/usr/include/glib-2.0/glib/gstrfuncs.h:
+/usr/include/glib-2.0/glib/gstringchunk.h:
+/usr/include/glib-2.0/glib/gstrvbuilder.h:
+/usr/include/glib-2.0/glib/gtestutils.h:
+/usr/include/glib-2.0/glib/gthreadpool.h:
+/usr/include/glib-2.0/glib/gtimer.h:
+/usr/include/glib-2.0/glib/gtrashstack.h:
+/usr/include/glib-2.0/glib/gtree.h:
+/usr/include/glib-2.0/glib/guri.h:
+/usr/include/glib-2.0/glib/guuid.h:
+/usr/include/glib-2.0/glib/gversion.h:
+/usr/include/glib-2.0/glib/deprecated/gallocator.h:
+/usr/include/glib-2.0/glib/deprecated/gcache.h:
+/usr/include/glib-2.0/glib/deprecated/gcompletion.h:
+/usr/include/glib-2.0/glib/deprecated/gmain.h:
+/usr/include/glib-2.0/glib/deprecated/grel.h:
+/usr/include/glib-2.0/glib/deprecated/gthread.h:
+/usr/include/glib-2.0/glib/glib-autocleanups.h:
+/usr/include/gstreamer-1.0/gst/glib-compat.h:
+/usr/include/gstreamer-1.0/gst/gstenumtypes.h:
+/usr/include/glib-2.0/glib-object.h:
+/usr/include/glib-2.0/gobject/gbinding.h:
+/usr/include/glib-2.0/gobject/gobject.h:
+/usr/include/glib-2.0/gobject/gtype.h:
+/usr/include/glib-2.0/gobject/gvalue.h:
+/usr/include/glib-2.0/gobject/gparam.h:
+/usr/include/glib-2.0/gobject/gclosure.h:
+/usr/include/glib-2.0/gobject/gsignal.h:
+/usr/include/glib-2.0/gobject/gmarshal.h:
+/usr/include/glib-2.0/gobject/gboxed.h:
+/usr/include/glib-2.0/gobject/glib-types.h:
+/usr/include/glib-2.0/gobject/genums.h:
+/usr/include/glib-2.0/gobject/glib-enumtypes.h:
+/usr/include/glib-2.0/gobject/gparamspecs.h:
+/usr/include/glib-2.0/gobject/gsourceclosure.h:
+/usr/include/glib-2.0/gobject/gtypemodule.h:
+/usr/include/glib-2.0/gobject/gtypeplugin.h:
+/usr/include/glib-2.0/gobject/gvaluearray.h:
+/usr/include/glib-2.0/gobject/gvaluetypes.h:
+/usr/include/glib-2.0/gobject/gobject-autocleanups.h:
+/usr/include/gstreamer-1.0/gst/gstconfig.h:
+/usr/include/gstreamer-1.0/gst/gstversion.h:
+/usr/include/gstreamer-1.0/gst/gstatomicqueue.h:
+/usr/include/gstreamer-1.0/gst/gstbin.h:
+/usr/include/gstreamer-1.0/gst/gstelement.h:
+/usr/include/gstreamer-1.0/gst/gstobject.h:
+/usr/include/gstreamer-1.0/gst/gstcontrolbinding.h:
+/usr/include/gstreamer-1.0/gst/gstcontrolsource.h:
+/usr/include/gstreamer-1.0/gst/gstclock.h:
+/usr/include/gstreamer-1.0/gst/gstpad.h:
+/usr/include/gstreamer-1.0/gst/gstbuffer.h:
+/usr/include/gstreamer-1.0/gst/gstminiobject.h:
+/usr/include/gstreamer-1.0/gst/gstallocator.h:
+/usr/include/gstreamer-1.0/gst/gstmemory.h:
+/usr/include/gstreamer-1.0/gst/gstcaps.h:
+/usr/include/gstreamer-1.0/gst/gststructure.h:
+/usr/include/gstreamer-1.0/gst/gstdatetime.h:
+/usr/include/gstreamer-1.0/gst/gstcapsfeatures.h:
+/usr/include/gstreamer-1.0/gst/gstmeta.h:
+/usr/include/gstreamer-1.0/gst/gstbufferlist.h:
+/usr/include/gstreamer-1.0/gst/gstpadtemplate.h:
+/usr/include/gstreamer-1.0/gst/gstevent.h:
+/usr/include/gstreamer-1.0/gst/gstformat.h:
+/usr/include/gstreamer-1.0/gst/gstiterator.h:
+/usr/include/gstreamer-1.0/gst/gsttaglist.h:
+/usr/include/gstreamer-1.0/gst/gstsample.h:
+/usr/include/gstreamer-1.0/gst/gstsegment.h:
+/usr/include/gstreamer-1.0/gst/gstmessage.h:
+/usr/include/gstreamer-1.0/gst/gstquery.h:
+/usr/include/gstreamer-1.0/gst/gsttoc.h:
+/usr/include/gstreamer-1.0/gst/gstcontext.h:
+/usr/include/gstreamer-1.0/gst/gstdevice.h:
+/usr/include/gstreamer-1.0/gst/gststreams.h:
+/usr/include/gstreamer-1.0/gst/gststreamcollection.h:
+/usr/include/gstreamer-1.0/gst/gsttask.h:
+/usr/include/gstreamer-1.0/gst/gsttaskpool.h:
+/usr/include/gstreamer-1.0/gst/gstbus.h:
+/usr/include/gstreamer-1.0/gst/gstelementfactory.h:
+/usr/include/gstreamer-1.0/gst/gstplugin.h:
+/usr/include/gstreamer-1.0/gst/gstmacros.h:
+/usr/include/gstreamer-1.0/gst/gstpluginfeature.h:
+/usr/include/gstreamer-1.0/gst/gsturi.h:
+/usr/include/gstreamer-1.0/gst/gstminiobject.h:
+/usr/include/gstreamer-1.0/gst/gstbufferpool.h:
+/usr/include/gstreamer-1.0/gst/gstchildproxy.h:
+/usr/include/gstreamer-1.0/gst/gstdebugutils.h:
+/usr/include/gstreamer-1.0/gst/gstdevicemonitor.h:
+/usr/include/gstreamer-1.0/gst/gstdeviceprovider.h:
+/usr/include/gstreamer-1.0/gst/gstdeviceproviderfactory.h:
+/usr/include/gstreamer-1.0/gst/gstdynamictypefactory.h:
+/usr/include/gstreamer-1.0/gst/gstelementmetadata.h:
+/usr/include/gstreamer-1.0/gst/gsterror.h:
+/usr/include/gstreamer-1.0/gst/gstghostpad.h:
+/usr/include/gstreamer-1.0/gst/gstinfo.h:
+/usr/include/gstreamer-1.0/gst/gstparamspecs.h:
+/usr/include/gstreamer-1.0/gst/gstvalue.h:
+/usr/include/gstreamer-1.0/gst/gstpipeline.h:
+/usr/include/gstreamer-1.0/gst/gstpoll.h:
+/usr/include/gstreamer-1.0/gst/gstpreset.h:
+/usr/include/gstreamer-1.0/gst/gstprotection.h:
+/usr/include/gstreamer-1.0/gst/gstregistry.h:
+/usr/include/gstreamer-1.0/gst/gstpromise.h:
+/usr/include/gstreamer-1.0/gst/gstsystemclock.h:
+/usr/include/gstreamer-1.0/gst/gsttagsetter.h:
+/usr/include/gstreamer-1.0/gst/gsttocsetter.h:
+/usr/include/gstreamer-1.0/gst/gsttracer.h:
+/usr/include/gstreamer-1.0/gst/gsttracerfactory.h:
+/usr/include/gstreamer-1.0/gst/gsttracerrecord.h:
+/usr/include/gstreamer-1.0/gst/gsttypefind.h:
+/usr/include/gstreamer-1.0/gst/gsttypefindfactory.h:
+/usr/include/gstreamer-1.0/gst/gstutils.h:
+/usr/include/gstreamer-1.0/gst/gstparse.h:
+/usr/include/gstreamer-1.0/gst/gstcompat.h:
+/usr/include/gstreamer-1.0/gst/video/video.h:
+/usr/include/gstreamer-1.0/gst/video/video-prelude.h:
+/usr/include/gstreamer-1.0/gst/video/video-format.h:
+/usr/include/gstreamer-1.0/gst/video/video-enumtypes.h:
+/usr/include/gstreamer-1.0/gst/video/video-tile.h:
+/usr/include/gstreamer-1.0/gst/video/video-chroma.h:
+/usr/include/gstreamer-1.0/gst/video/video-color.h:
+/usr/include/gstreamer-1.0/gst/video/video-dither.h:
+/usr/include/gstreamer-1.0/gst/video/video-info.h:
+/usr/include/gstreamer-1.0/gst/video/video-frame.h:
+/usr/include/gstreamer-1.0/gst/video/video-converter.h:
+/usr/include/gstreamer-1.0/gst/video/video-scaler.h:
+/usr/include/gstreamer-1.0/gst/video/video-resampler.h:
+/usr/include/gstreamer-1.0/gst/video/video-multiview.h:
+/usr/include/gstreamer-1.0/gst/video/colorbalancechannel.h:
+/usr/include/gstreamer-1.0/gst/video/colorbalance.h:
+/usr/include/gstreamer-1.0/gst/video/gstvideoaggregator.h:
+/usr/include/gstreamer-1.0/gst/base/gstaggregator.h:
+/usr/include/gstreamer-1.0/gst/base/base-prelude.h:
+/usr/include/gstreamer-1.0/gst/video/gstvideodecoder.h:
+/usr/include/gstreamer-1.0/gst/base/gstadapter.h:
+/usr/include/gstreamer-1.0/gst/video/gstvideoutils.h:
+/usr/include/gstreamer-1.0/gst/video/gstvideoencoder.h:
+/usr/include/gstreamer-1.0/gst/video/gstvideofilter.h:
+/usr/include/gstreamer-1.0/gst/base/gstbasetransform.h:
+/usr/include/gstreamer-1.0/gst/video/gstvideometa.h:
+/usr/include/gstreamer-1.0/gst/video/gstvideotimecode.h:
+/usr/include/gstreamer-1.0/gst/video/gstvideopool.h:
+/usr/include/gstreamer-1.0/gst/video/gstvideosink.h:
+/usr/include/gstreamer-1.0/gst/base/gstbasesink.h:
+/usr/include/gstreamer-1.0/gst/video/navigation.h:
+/usr/include/gstreamer-1.0/gst/video/video-blend.h:
+/usr/include/gstreamer-1.0/gst/video/video-event.h:
+/usr/include/gstreamer-1.0/gst/video/videodirection.h:
+/usr/include/gstreamer-1.0/gst/video/videoorientation.h:
+/usr/include/gstreamer-1.0/gst/video/video-overlay-composition.h:
+/usr/include/gstreamer-1.0/gst/video/videooverlay.h:
+/usr/include/gstreamer-1.0/gst/video/gstvideoaffinetransformationmeta.h:
+/usr/include/gstreamer-1.0/gst/video/video-anc.h:
+/usr/include/gstreamer-1.0/gst/video/video-hdr.h:
+/opt/openFrameworks/libs/openFrameworks/video/ofVideoPlayer.h:
+/opt/openFrameworks/libs/openFrameworks/video/ofGstVideoPlayer.h:
+/opt/openFrameworks/libs/openFrameworks/3d/of3dUtils.h:
+/opt/openFrameworks/libs/openFrameworks/3d/ofCamera.h:
+/opt/openFrameworks/libs/openFrameworks/3d/ofEasyCam.h:
+/opt/openFrameworks/examples/sound/audioInputExample/src/ofApp.h:

BIN
obj/linux64/Release/src/main.o


+ 1064 - 0
obj/linux64/Release/src/ofApp.d

@@ -0,0 +1,1064 @@
+obj/linux64/Release/src/ofApp.o: \
+ /opt/openFrameworks/examples/sound/audioInputExample/src/ofApp.cpp \
+ /opt/openFrameworks/examples/sound/audioInputExample/src/ofApp.h \
+ /opt/openFrameworks/libs/openFrameworks/ofMain.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofConstants.h \
+ /opt/openFrameworks/libs/tess2/include/tesselator.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofFileUtils.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofLog.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofSystemUtils.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofURLFileLoader.h \
+ /opt/openFrameworks/libs/openFrameworks/events/ofEvents.h \
+ /opt/openFrameworks/libs/openFrameworks/events/ofEventUtils.h \
+ /opt/openFrameworks/libs/openFrameworks/events/ofEvent.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofTimer.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofUtils.h \
+ /opt/openFrameworks/libs/utf8/include/utf8.h \
+ /opt/openFrameworks/libs/utf8/include/utf8/checked.h \
+ /opt/openFrameworks/libs/utf8/include/utf8/core.h \
+ /opt/openFrameworks/libs/utf8/include/utf8/unchecked.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofFpsCounter.h \
+ /opt/openFrameworks/libs/glm/include/glm/vec2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/qualifier.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../simd/platform.h \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec2.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/./compute_vector_relational.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/./setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool2_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_float2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_float2_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_double2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_double2_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_int2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_int2_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint2_precision.hpp \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofThread.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofThreadChannel.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofJson.h \
+ /opt/openFrameworks/libs/json/include/json.hpp \
+ /opt/openFrameworks/libs/openFrameworks/types/ofParameter.h \
+ /opt/openFrameworks/libs/openFrameworks/types/ofPoint.h \
+ /opt/openFrameworks/libs/openFrameworks/math/ofVec3f.h \
+ /opt/openFrameworks/libs/openFrameworks/math/ofVec2f.h \
+ /opt/openFrameworks/libs/openFrameworks/math/ofMathConstants.h \
+ /opt/openFrameworks/libs/glm/include/glm/fwd.hpp \
+ /opt/openFrameworks/libs/openFrameworks/math/ofVec4f.h \
+ /opt/openFrameworks/libs/glm/include/glm/vec4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec4.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_float4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_float4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_double4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_double4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_int4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_int4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/vec3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec3.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool3_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_float3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_float3_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_double3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_double3_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_int3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_int3_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint3_precision.hpp \
+ /opt/openFrameworks/libs/openFrameworks/types/ofRectangle.h \
+ /opt/openFrameworks/libs/openFrameworks/types/ofColor.h \
+ /opt/openFrameworks/libs/glm/include/glm/common.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/detail/_fixes.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/detail/func_common.inl \
+ /opt/openFrameworks/libs/glm/include/glm/detail/../vector_relational.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/detail/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/detail/../detail/func_vector_relational.inl \
+ /opt/openFrameworks/libs/glm/include/glm/detail/compute_common.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/detail/type_vec1.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/detail/type_vec1.inl \
+ /opt/openFrameworks/libs/glm/include/glm/detail/_vectorize.hpp \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofXml.h \
+ /opt/openFrameworks/libs/pugixml/include/pugixml.hpp \
+ /opt/openFrameworks/libs/pugixml/include/pugiconfig.hpp \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofGraphicsBaseTypes.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofGraphicsConstants.h \
+ /opt/openFrameworks/libs/openFrameworks/types/ofTypes.h \
+ /opt/openFrameworks/libs/openFrameworks/types/ofParameterGroup.h \
+ /opt/openFrameworks/libs/openFrameworks/math/ofMath.h \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/constants.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/scalar_constants.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/scalar_constants.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/constants.inl \
+ /opt/openFrameworks/libs/openFrameworks/math/ofVectorMath.h \
+ /opt/openFrameworks/libs/glm/include/glm/mat3x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/matrix_double3x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_mat3x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_mat3x3.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../matrix.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat2x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x2.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x2_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x2_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat2x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x3.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x3_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x3_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat2x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x4.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat3x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double3x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat3x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat3x2.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double3x2_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float3x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float3x2_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat3x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double3x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat3x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat3x4.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double3x4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float3x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float3x4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat4x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x2.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x2_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x2.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x2_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat4x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x3.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x3_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x3_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat4x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x4.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x4.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x4_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/func_matrix.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/../geometric.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/../detail/func_geometric.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/../detail/../exponential.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/../detail/../detail/func_exponential.inl \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/matrix_double3x3_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/matrix_float3x3.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/./ext/matrix_float3x3_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/trigonometric.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/detail/func_trigonometric.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/matrix_transform.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_projection.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_projection.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_clip_space.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_clip_space.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_transform.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_transform.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/matrix_transform.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/matrix_inverse.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/matrix_inverse.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/quaternion.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/vector_relational.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/vector_relational.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/type_float.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_common.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../ext/quaternion_geometric.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../ext/quaternion_geometric.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_common.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_float.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/type_quat.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/../ext/quaternion_relational.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/../ext/quaternion_relational.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/type_quat.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_float_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_double.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_double_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_trigonometric.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_trigonometric.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_transform.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_transform.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/quaternion.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/epsilon.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/epsilon.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/norm.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/quaternion.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../glm.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/_fixes.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../packing.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/func_packing.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/type_half.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/type_half.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../integer.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/func_integer.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../ext/quaternion_exponential.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../ext/quaternion_exponential.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/quaternion.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/component_wise.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/component_wise.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/norm.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/perpendicular.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/projection.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/projection.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/perpendicular.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/rotate_vector.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/transform.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/transform.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/rotate_vector.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/spline.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/optimum_pow.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/optimum_pow.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/spline.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/vector_angle.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/vector_angle.inl \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/scalar_multiplication.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtx/../detail/setup.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/type_ptr.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/vec1.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_bool1.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_bool1_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_float1.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_float1_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_double1.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_double1_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_int1.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_int1_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_uint1.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_uint1_precision.hpp \
+ /opt/openFrameworks/libs/glm/include/glm/gtc/type_ptr.inl \
+ /opt/openFrameworks/libs/openFrameworks/math/ofMatrix3x3.h \
+ /opt/openFrameworks/libs/openFrameworks/math/ofMatrix4x4.h \
+ /opt/openFrameworks/libs/openFrameworks/math/ofQuaternion.h \
+ /opt/openFrameworks/libs/openFrameworks/communication/ofSerial.h \
+ /opt/openFrameworks/libs/openFrameworks/communication/ofArduino.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofFbo.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofTexture.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofGLBaseTypes.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofGLRenderer.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofPolyline.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofPolyline.inl \
+ /opt/openFrameworks/libs/openFrameworks/app/ofAppRunner.h \
+ /opt/openFrameworks/libs/openFrameworks/app/ofWindowSettings.h \
+ /opt/openFrameworks/libs/openFrameworks/app/ofMainLoop.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/of3dGraphics.h \
+ /opt/openFrameworks/libs/openFrameworks/3d/of3dPrimitives.h \
+ /opt/openFrameworks/libs/openFrameworks/3d/ofMesh.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofGLUtils.h \
+ /opt/openFrameworks/libs/openFrameworks/3d/ofMesh.inl \
+ /opt/openFrameworks/libs/openFrameworks/3d/ofNode.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofBitmapFont.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofPixels.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofGraphics.h \
+ /opt/openFrameworks/libs/openFrameworks/utils/ofMatrixStack.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofPath.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofPolyline.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofVboMesh.h \
+ /opt/openFrameworks/libs/openFrameworks/3d/ofMesh.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofVbo.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofBufferObject.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofTessellator.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofLight.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofMaterial.h \
+ /opt/openFrameworks/libs/openFrameworks/gl/ofShader.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofCairoRenderer.h \
+ /usr/include/cairo/cairo.h /usr/include/cairo/cairo-version.h \
+ /usr/include/cairo/cairo-features.h \
+ /usr/include/cairo/cairo-deprecated.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofImage.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofRendererCollection.h \
+ /opt/openFrameworks/libs/openFrameworks/graphics/ofTrueTypeFont.h \
+ /opt/openFrameworks/libs/openFrameworks/app/ofBaseApp.h \
+ /opt/openFrameworks/libs/openFrameworks/sound/ofSoundBaseTypes.h \
+ /opt/openFrameworks/libs/openFrameworks/app/ofAppBaseWindow.h \
+ /opt/openFrameworks/libs/openFrameworks/app/ofAppGLFWWindow.h \
+ /opt/openFrameworks/libs/openFrameworks/app/ofAppGlutWindow.h \
+ /opt/openFrameworks/libs/openFrameworks/sound/ofSoundStream.h \
+ /opt/openFrameworks/libs/openFrameworks/sound/ofSoundPlayer.h \
+ /opt/openFrameworks/libs/openFrameworks/sound/ofOpenALSoundPlayer.h \
+ /opt/openFrameworks/libs/kiss/include/kiss_fft.h \
+ /opt/openFrameworks/libs/kiss/include/kiss_fftr.h \
+ /opt/openFrameworks/libs/kiss/include/kiss_fft.h \
+ /opt/openFrameworks/libs/openFrameworks/sound/ofSoundBuffer.h \
+ /opt/openFrameworks/libs/openFrameworks/video/ofVideoGrabber.h \
+ /opt/openFrameworks/libs/openFrameworks/video/ofVideoBaseTypes.h \
+ /opt/openFrameworks/libs/openFrameworks/video/ofGstVideoGrabber.h \
+ /opt/openFrameworks/libs/openFrameworks/video/ofGstUtils.h \
+ /usr/include/gstreamer-1.0/gst/gst.h /usr/include/glib-2.0/glib.h \
+ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \
+ /usr/lib/glib-2.0/include/glibconfig.h \
+ /usr/include/glib-2.0/glib/gmacros.h \
+ /usr/include/glib-2.0/glib/gversionmacros.h \
+ /usr/include/glib-2.0/glib/garray.h \
+ /usr/include/glib-2.0/glib/gasyncqueue.h \
+ /usr/include/glib-2.0/glib/gthread.h \
+ /usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \
+ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \
+ /usr/include/glib-2.0/glib/gbacktrace.h \
+ /usr/include/glib-2.0/glib/gbase64.h \
+ /usr/include/glib-2.0/glib/gbitlock.h \
+ /usr/include/glib-2.0/glib/gbookmarkfile.h \
+ /usr/include/glib-2.0/glib/gdatetime.h \
+ /usr/include/glib-2.0/glib/gtimezone.h \
+ /usr/include/glib-2.0/glib/gbytes.h \
+ /usr/include/glib-2.0/glib/gcharset.h \
+ /usr/include/glib-2.0/glib/gchecksum.h \
+ /usr/include/glib-2.0/glib/gconvert.h \
+ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \
+ /usr/include/glib-2.0/glib/gdir.h /usr/include/glib-2.0/glib/genviron.h \
+ /usr/include/glib-2.0/glib/gfileutils.h \
+ /usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \
+ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \
+ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \
+ /usr/include/glib-2.0/glib/gchecksum.h \
+ /usr/include/glib-2.0/glib/ghook.h \
+ /usr/include/glib-2.0/glib/ghostutils.h \
+ /usr/include/glib-2.0/glib/giochannel.h \
+ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \
+ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \
+ /usr/include/glib-2.0/glib/gunicode.h \
+ /usr/include/glib-2.0/glib/gkeyfile.h \
+ /usr/include/glib-2.0/glib/gmappedfile.h \
+ /usr/include/glib-2.0/glib/gmarkup.h \
+ /usr/include/glib-2.0/glib/gmessages.h \
+ /usr/include/glib-2.0/glib/gvariant.h \
+ /usr/include/glib-2.0/glib/gvarianttype.h \
+ /usr/include/glib-2.0/glib/goption.h \
+ /usr/include/glib-2.0/glib/gpattern.h \
+ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \
+ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \
+ /usr/include/glib-2.0/glib/grcbox.h \
+ /usr/include/glib-2.0/glib/grefcount.h \
+ /usr/include/glib-2.0/glib/grefstring.h \
+ /usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gmacros.h \
+ /usr/include/glib-2.0/glib/gregex.h \
+ /usr/include/glib-2.0/glib/gscanner.h \
+ /usr/include/glib-2.0/glib/gsequence.h \
+ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \
+ /usr/include/glib-2.0/glib/gspawn.h \
+ /usr/include/glib-2.0/glib/gstrfuncs.h \
+ /usr/include/glib-2.0/glib/gstringchunk.h \
+ /usr/include/glib-2.0/glib/gstrvbuilder.h \
+ /usr/include/glib-2.0/glib/gtestutils.h \
+ /usr/include/glib-2.0/glib/gthreadpool.h \
+ /usr/include/glib-2.0/glib/gtimer.h \
+ /usr/include/glib-2.0/glib/gtrashstack.h \
+ /usr/include/glib-2.0/glib/gtree.h /usr/include/glib-2.0/glib/guri.h \
+ /usr/include/glib-2.0/glib/guuid.h /usr/include/glib-2.0/glib/gversion.h \
+ /usr/include/glib-2.0/glib/deprecated/gallocator.h \
+ /usr/include/glib-2.0/glib/deprecated/gcache.h \
+ /usr/include/glib-2.0/glib/deprecated/gcompletion.h \
+ /usr/include/glib-2.0/glib/deprecated/gmain.h \
+ /usr/include/glib-2.0/glib/deprecated/grel.h \
+ /usr/include/glib-2.0/glib/deprecated/gthread.h \
+ /usr/include/glib-2.0/glib/glib-autocleanups.h \
+ /usr/include/gstreamer-1.0/gst/glib-compat.h \
+ /usr/include/gstreamer-1.0/gst/gstenumtypes.h \
+ /usr/include/glib-2.0/glib-object.h \
+ /usr/include/glib-2.0/gobject/gbinding.h \
+ /usr/include/glib-2.0/gobject/gobject.h \
+ /usr/include/glib-2.0/gobject/gtype.h \
+ /usr/include/glib-2.0/gobject/gvalue.h \
+ /usr/include/glib-2.0/gobject/gparam.h \
+ /usr/include/glib-2.0/gobject/gclosure.h \
+ /usr/include/glib-2.0/gobject/gsignal.h \
+ /usr/include/glib-2.0/gobject/gmarshal.h \
+ /usr/include/glib-2.0/gobject/gboxed.h \
+ /usr/include/glib-2.0/gobject/glib-types.h \
+ /usr/include/glib-2.0/gobject/genums.h \
+ /usr/include/glib-2.0/gobject/glib-enumtypes.h \
+ /usr/include/glib-2.0/gobject/gparamspecs.h \
+ /usr/include/glib-2.0/gobject/gsourceclosure.h \
+ /usr/include/glib-2.0/gobject/gtypemodule.h \
+ /usr/include/glib-2.0/gobject/gtypeplugin.h \
+ /usr/include/glib-2.0/gobject/gvaluearray.h \
+ /usr/include/glib-2.0/gobject/gvaluetypes.h \
+ /usr/include/glib-2.0/gobject/gobject-autocleanups.h \
+ /usr/include/gstreamer-1.0/gst/gstconfig.h \
+ /usr/include/gstreamer-1.0/gst/gstversion.h \
+ /usr/include/gstreamer-1.0/gst/gstatomicqueue.h \
+ /usr/include/gstreamer-1.0/gst/gstbin.h \
+ /usr/include/gstreamer-1.0/gst/gstelement.h \
+ /usr/include/gstreamer-1.0/gst/gstobject.h \
+ /usr/include/gstreamer-1.0/gst/gstcontrolbinding.h \
+ /usr/include/gstreamer-1.0/gst/gstcontrolsource.h \
+ /usr/include/gstreamer-1.0/gst/gstclock.h \
+ /usr/include/gstreamer-1.0/gst/gstpad.h \
+ /usr/include/gstreamer-1.0/gst/gstbuffer.h \
+ /usr/include/gstreamer-1.0/gst/gstminiobject.h \
+ /usr/include/gstreamer-1.0/gst/gstallocator.h \
+ /usr/include/gstreamer-1.0/gst/gstmemory.h \
+ /usr/include/gstreamer-1.0/gst/gstcaps.h \
+ /usr/include/gstreamer-1.0/gst/gststructure.h \
+ /usr/include/gstreamer-1.0/gst/gstdatetime.h \
+ /usr/include/gstreamer-1.0/gst/gstcapsfeatures.h \
+ /usr/include/gstreamer-1.0/gst/gstmeta.h \
+ /usr/include/gstreamer-1.0/gst/gstbufferlist.h \
+ /usr/include/gstreamer-1.0/gst/gstpadtemplate.h \
+ /usr/include/gstreamer-1.0/gst/gstevent.h \
+ /usr/include/gstreamer-1.0/gst/gstformat.h \
+ /usr/include/gstreamer-1.0/gst/gstiterator.h \
+ /usr/include/gstreamer-1.0/gst/gsttaglist.h \
+ /usr/include/gstreamer-1.0/gst/gstsample.h \
+ /usr/include/gstreamer-1.0/gst/gstsegment.h \
+ /usr/include/gstreamer-1.0/gst/gstmessage.h \
+ /usr/include/gstreamer-1.0/gst/gstquery.h \
+ /usr/include/gstreamer-1.0/gst/gsttoc.h \
+ /usr/include/gstreamer-1.0/gst/gstcontext.h \
+ /usr/include/gstreamer-1.0/gst/gstdevice.h \
+ /usr/include/gstreamer-1.0/gst/gststreams.h \
+ /usr/include/gstreamer-1.0/gst/gststreamcollection.h \
+ /usr/include/gstreamer-1.0/gst/gsttask.h \
+ /usr/include/gstreamer-1.0/gst/gsttaskpool.h \
+ /usr/include/gstreamer-1.0/gst/gstbus.h \
+ /usr/include/gstreamer-1.0/gst/gstelementfactory.h \
+ /usr/include/gstreamer-1.0/gst/gstplugin.h \
+ /usr/include/gstreamer-1.0/gst/gstmacros.h \
+ /usr/include/gstreamer-1.0/gst/gstpluginfeature.h \
+ /usr/include/gstreamer-1.0/gst/gsturi.h \
+ /usr/include/gstreamer-1.0/gst/gstminiobject.h \
+ /usr/include/gstreamer-1.0/gst/gstbufferpool.h \
+ /usr/include/gstreamer-1.0/gst/gstchildproxy.h \
+ /usr/include/gstreamer-1.0/gst/gstdebugutils.h \
+ /usr/include/gstreamer-1.0/gst/gstdevicemonitor.h \
+ /usr/include/gstreamer-1.0/gst/gstdeviceprovider.h \
+ /usr/include/gstreamer-1.0/gst/gstdeviceproviderfactory.h \
+ /usr/include/gstreamer-1.0/gst/gstdynamictypefactory.h \
+ /usr/include/gstreamer-1.0/gst/gstelementmetadata.h \
+ /usr/include/gstreamer-1.0/gst/gsterror.h \
+ /usr/include/gstreamer-1.0/gst/gstghostpad.h \
+ /usr/include/gstreamer-1.0/gst/gstinfo.h \
+ /usr/include/gstreamer-1.0/gst/gstparamspecs.h \
+ /usr/include/gstreamer-1.0/gst/gstvalue.h \
+ /usr/include/gstreamer-1.0/gst/gstpipeline.h \
+ /usr/include/gstreamer-1.0/gst/gstpoll.h \
+ /usr/include/gstreamer-1.0/gst/gstpreset.h \
+ /usr/include/gstreamer-1.0/gst/gstprotection.h \
+ /usr/include/gstreamer-1.0/gst/gstregistry.h \
+ /usr/include/gstreamer-1.0/gst/gstpromise.h \
+ /usr/include/gstreamer-1.0/gst/gstsystemclock.h \
+ /usr/include/gstreamer-1.0/gst/gsttagsetter.h \
+ /usr/include/gstreamer-1.0/gst/gsttocsetter.h \
+ /usr/include/gstreamer-1.0/gst/gsttracer.h \
+ /usr/include/gstreamer-1.0/gst/gsttracerfactory.h \
+ /usr/include/gstreamer-1.0/gst/gsttracerrecord.h \
+ /usr/include/gstreamer-1.0/gst/gsttypefind.h \
+ /usr/include/gstreamer-1.0/gst/gsttypefindfactory.h \
+ /usr/include/gstreamer-1.0/gst/gstutils.h \
+ /usr/include/gstreamer-1.0/gst/gstparse.h \
+ /usr/include/gstreamer-1.0/gst/gstcompat.h \
+ /usr/include/gstreamer-1.0/gst/video/video.h \
+ /usr/include/gstreamer-1.0/gst/video/video-prelude.h \
+ /usr/include/gstreamer-1.0/gst/video/video-format.h \
+ /usr/include/gstreamer-1.0/gst/video/video-enumtypes.h \
+ /usr/include/gstreamer-1.0/gst/video/video-tile.h \
+ /usr/include/gstreamer-1.0/gst/video/video-chroma.h \
+ /usr/include/gstreamer-1.0/gst/video/video-color.h \
+ /usr/include/gstreamer-1.0/gst/video/video-dither.h \
+ /usr/include/gstreamer-1.0/gst/video/video-info.h \
+ /usr/include/gstreamer-1.0/gst/video/video-frame.h \
+ /usr/include/gstreamer-1.0/gst/video/video-converter.h \
+ /usr/include/gstreamer-1.0/gst/video/video-scaler.h \
+ /usr/include/gstreamer-1.0/gst/video/video-resampler.h \
+ /usr/include/gstreamer-1.0/gst/video/video-multiview.h \
+ /usr/include/gstreamer-1.0/gst/video/colorbalancechannel.h \
+ /usr/include/gstreamer-1.0/gst/video/colorbalance.h \
+ /usr/include/gstreamer-1.0/gst/video/gstvideoaggregator.h \
+ /usr/include/gstreamer-1.0/gst/base/gstaggregator.h \
+ /usr/include/gstreamer-1.0/gst/base/base-prelude.h \
+ /usr/include/gstreamer-1.0/gst/video/gstvideodecoder.h \
+ /usr/include/gstreamer-1.0/gst/base/gstadapter.h \
+ /usr/include/gstreamer-1.0/gst/video/gstvideoutils.h \
+ /usr/include/gstreamer-1.0/gst/video/gstvideoencoder.h \
+ /usr/include/gstreamer-1.0/gst/video/gstvideofilter.h \
+ /usr/include/gstreamer-1.0/gst/base/gstbasetransform.h \
+ /usr/include/gstreamer-1.0/gst/video/gstvideometa.h \
+ /usr/include/gstreamer-1.0/gst/video/gstvideotimecode.h \
+ /usr/include/gstreamer-1.0/gst/video/gstvideopool.h \
+ /usr/include/gstreamer-1.0/gst/video/gstvideosink.h \
+ /usr/include/gstreamer-1.0/gst/base/gstbasesink.h \
+ /usr/include/gstreamer-1.0/gst/video/navigation.h \
+ /usr/include/gstreamer-1.0/gst/video/video-blend.h \
+ /usr/include/gstreamer-1.0/gst/video/video-event.h \
+ /usr/include/gstreamer-1.0/gst/video/videodirection.h \
+ /usr/include/gstreamer-1.0/gst/video/videoorientation.h \
+ /usr/include/gstreamer-1.0/gst/video/video-overlay-composition.h \
+ /usr/include/gstreamer-1.0/gst/video/videooverlay.h \
+ /usr/include/gstreamer-1.0/gst/video/gstvideoaffinetransformationmeta.h \
+ /usr/include/gstreamer-1.0/gst/video/video-anc.h \
+ /usr/include/gstreamer-1.0/gst/video/video-hdr.h \
+ /opt/openFrameworks/libs/openFrameworks/video/ofVideoPlayer.h \
+ /opt/openFrameworks/libs/openFrameworks/video/ofGstVideoPlayer.h \
+ /opt/openFrameworks/libs/openFrameworks/3d/of3dUtils.h \
+ /opt/openFrameworks/libs/openFrameworks/3d/ofCamera.h \
+ /opt/openFrameworks/libs/openFrameworks/3d/ofEasyCam.h
+/opt/openFrameworks/examples/sound/audioInputExample/src/ofApp.h:
+/opt/openFrameworks/libs/openFrameworks/ofMain.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofConstants.h:
+/opt/openFrameworks/libs/tess2/include/tesselator.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofFileUtils.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofLog.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofSystemUtils.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofURLFileLoader.h:
+/opt/openFrameworks/libs/openFrameworks/events/ofEvents.h:
+/opt/openFrameworks/libs/openFrameworks/events/ofEventUtils.h:
+/opt/openFrameworks/libs/openFrameworks/events/ofEvent.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofTimer.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofUtils.h:
+/opt/openFrameworks/libs/utf8/include/utf8.h:
+/opt/openFrameworks/libs/utf8/include/utf8/checked.h:
+/opt/openFrameworks/libs/utf8/include/utf8/core.h:
+/opt/openFrameworks/libs/utf8/include/utf8/unchecked.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofFpsCounter.h:
+/opt/openFrameworks/libs/glm/include/glm/vec2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/qualifier.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../simd/platform.h:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec2.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/./compute_vector_relational.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/./setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool2_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_float2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_float2_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_double2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_double2_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_int2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_int2_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint2_precision.hpp:
+/opt/openFrameworks/libs/openFrameworks/utils/ofThread.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofThreadChannel.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofJson.h:
+/opt/openFrameworks/libs/json/include/json.hpp:
+/opt/openFrameworks/libs/openFrameworks/types/ofParameter.h:
+/opt/openFrameworks/libs/openFrameworks/types/ofPoint.h:
+/opt/openFrameworks/libs/openFrameworks/math/ofVec3f.h:
+/opt/openFrameworks/libs/openFrameworks/math/ofVec2f.h:
+/opt/openFrameworks/libs/openFrameworks/math/ofMathConstants.h:
+/opt/openFrameworks/libs/glm/include/glm/fwd.hpp:
+/opt/openFrameworks/libs/openFrameworks/math/ofVec4f.h:
+/opt/openFrameworks/libs/glm/include/glm/vec4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec4.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_float4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_float4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_double4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_double4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_int4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_int4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/vec3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_vec3.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_bool3_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_float3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_float3_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_double3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_double3_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_int3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_int3_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/vector_uint3_precision.hpp:
+/opt/openFrameworks/libs/openFrameworks/types/ofRectangle.h:
+/opt/openFrameworks/libs/openFrameworks/types/ofColor.h:
+/opt/openFrameworks/libs/glm/include/glm/common.hpp:
+/opt/openFrameworks/libs/glm/include/glm/detail/_fixes.hpp:
+/opt/openFrameworks/libs/glm/include/glm/detail/func_common.inl:
+/opt/openFrameworks/libs/glm/include/glm/detail/../vector_relational.hpp:
+/opt/openFrameworks/libs/glm/include/glm/detail/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/detail/../detail/func_vector_relational.inl:
+/opt/openFrameworks/libs/glm/include/glm/detail/compute_common.hpp:
+/opt/openFrameworks/libs/glm/include/glm/detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/detail/type_vec1.hpp:
+/opt/openFrameworks/libs/glm/include/glm/detail/type_vec1.inl:
+/opt/openFrameworks/libs/glm/include/glm/detail/_vectorize.hpp:
+/opt/openFrameworks/libs/openFrameworks/utils/ofXml.h:
+/opt/openFrameworks/libs/pugixml/include/pugixml.hpp:
+/opt/openFrameworks/libs/pugixml/include/pugiconfig.hpp:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofGraphicsBaseTypes.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofGraphicsConstants.h:
+/opt/openFrameworks/libs/openFrameworks/types/ofTypes.h:
+/opt/openFrameworks/libs/openFrameworks/types/ofParameterGroup.h:
+/opt/openFrameworks/libs/openFrameworks/math/ofMath.h:
+/opt/openFrameworks/libs/glm/include/glm/gtc/constants.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/scalar_constants.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/scalar_constants.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/constants.inl:
+/opt/openFrameworks/libs/openFrameworks/math/ofVectorMath.h:
+/opt/openFrameworks/libs/glm/include/glm/mat3x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/matrix_double3x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_mat3x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/type_mat3x3.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../matrix.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat2x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x2.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x2_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x2_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat2x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x3.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x3_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x3_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat2x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat2x4.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double2x4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float2x4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat3x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double3x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat3x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat3x2.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double3x2_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float3x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float3x2_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat3x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double3x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat3x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat3x4.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double3x4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float3x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float3x4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat4x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x2.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x2_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x2.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x2_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat4x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x3.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x3_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x3_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../mat4x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/../detail/type_mat4x4.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_double4x4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x4.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/.././ext/matrix_float4x4_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/func_matrix.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/../geometric.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/../detail/func_geometric.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/../detail/../exponential.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/../detail/../detail/../detail/../detail/func_exponential.inl:
+/opt/openFrameworks/libs/glm/include/glm/./ext/matrix_double3x3_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/matrix_float3x3.hpp:
+/opt/openFrameworks/libs/glm/include/glm/./ext/matrix_float3x3_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/trigonometric.hpp:
+/opt/openFrameworks/libs/glm/include/glm/detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/detail/func_trigonometric.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/matrix_transform.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_projection.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_projection.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_clip_space.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_clip_space.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_transform.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/matrix_transform.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/matrix_transform.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/matrix_inverse.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/matrix_inverse.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/quaternion.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/vector_relational.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/vector_relational.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/type_float.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_common.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../ext/quaternion_geometric.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../ext/quaternion_geometric.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_common.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_float.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/type_quat.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/../ext/quaternion_relational.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/../ext/quaternion_relational.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/../detail/type_quat.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_float_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_double.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_double_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_trigonometric.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_trigonometric.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_transform.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../ext/quaternion_transform.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/quaternion.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtc/epsilon.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/epsilon.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/norm.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/quaternion.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../glm.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/_fixes.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../packing.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/func_packing.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/type_half.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/type_half.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../integer.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/func_integer.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../ext/quaternion_exponential.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../ext/quaternion_exponential.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/quaternion.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/component_wise.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/component_wise.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/norm.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/perpendicular.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/projection.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/projection.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/perpendicular.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/rotate_vector.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/transform.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/transform.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/rotate_vector.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/spline.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/optimum_pow.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../gtx/optimum_pow.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/spline.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/vector_angle.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/vector_angle.inl:
+/opt/openFrameworks/libs/glm/include/glm/gtx/scalar_multiplication.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtx/../detail/setup.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/type_ptr.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/vec1.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_bool1.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_bool1_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_float1.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_float1_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_double1.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_double1_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_int1.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_int1_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_uint1.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/../gtc/../ext/vector_uint1_precision.hpp:
+/opt/openFrameworks/libs/glm/include/glm/gtc/type_ptr.inl:
+/opt/openFrameworks/libs/openFrameworks/math/ofMatrix3x3.h:
+/opt/openFrameworks/libs/openFrameworks/math/ofMatrix4x4.h:
+/opt/openFrameworks/libs/openFrameworks/math/ofQuaternion.h:
+/opt/openFrameworks/libs/openFrameworks/communication/ofSerial.h:
+/opt/openFrameworks/libs/openFrameworks/communication/ofArduino.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofFbo.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofTexture.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofGLBaseTypes.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofGLRenderer.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofPolyline.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofPolyline.inl:
+/opt/openFrameworks/libs/openFrameworks/app/ofAppRunner.h:
+/opt/openFrameworks/libs/openFrameworks/app/ofWindowSettings.h:
+/opt/openFrameworks/libs/openFrameworks/app/ofMainLoop.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/of3dGraphics.h:
+/opt/openFrameworks/libs/openFrameworks/3d/of3dPrimitives.h:
+/opt/openFrameworks/libs/openFrameworks/3d/ofMesh.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofGLUtils.h:
+/opt/openFrameworks/libs/openFrameworks/3d/ofMesh.inl:
+/opt/openFrameworks/libs/openFrameworks/3d/ofNode.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofBitmapFont.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofPixels.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofGraphics.h:
+/opt/openFrameworks/libs/openFrameworks/utils/ofMatrixStack.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofPath.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofPolyline.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofVboMesh.h:
+/opt/openFrameworks/libs/openFrameworks/3d/ofMesh.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofVbo.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofBufferObject.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofTessellator.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofLight.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofMaterial.h:
+/opt/openFrameworks/libs/openFrameworks/gl/ofShader.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofCairoRenderer.h:
+/usr/include/cairo/cairo.h:
+/usr/include/cairo/cairo-version.h:
+/usr/include/cairo/cairo-features.h:
+/usr/include/cairo/cairo-deprecated.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofImage.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofRendererCollection.h:
+/opt/openFrameworks/libs/openFrameworks/graphics/ofTrueTypeFont.h:
+/opt/openFrameworks/libs/openFrameworks/app/ofBaseApp.h:
+/opt/openFrameworks/libs/openFrameworks/sound/ofSoundBaseTypes.h:
+/opt/openFrameworks/libs/openFrameworks/app/ofAppBaseWindow.h:
+/opt/openFrameworks/libs/openFrameworks/app/ofAppGLFWWindow.h:
+/opt/openFrameworks/libs/openFrameworks/app/ofAppGlutWindow.h:
+/opt/openFrameworks/libs/openFrameworks/sound/ofSoundStream.h:
+/opt/openFrameworks/libs/openFrameworks/sound/ofSoundPlayer.h:
+/opt/openFrameworks/libs/openFrameworks/sound/ofOpenALSoundPlayer.h:
+/opt/openFrameworks/libs/kiss/include/kiss_fft.h:
+/opt/openFrameworks/libs/kiss/include/kiss_fftr.h:
+/opt/openFrameworks/libs/kiss/include/kiss_fft.h:
+/opt/openFrameworks/libs/openFrameworks/sound/ofSoundBuffer.h:
+/opt/openFrameworks/libs/openFrameworks/video/ofVideoGrabber.h:
+/opt/openFrameworks/libs/openFrameworks/video/ofVideoBaseTypes.h:
+/opt/openFrameworks/libs/openFrameworks/video/ofGstVideoGrabber.h:
+/opt/openFrameworks/libs/openFrameworks/video/ofGstUtils.h:
+/usr/include/gstreamer-1.0/gst/gst.h:
+/usr/include/glib-2.0/glib.h:
+/usr/include/glib-2.0/glib/galloca.h:
+/usr/include/glib-2.0/glib/gtypes.h:
+/usr/lib/glib-2.0/include/glibconfig.h:
+/usr/include/glib-2.0/glib/gmacros.h:
+/usr/include/glib-2.0/glib/gversionmacros.h:
+/usr/include/glib-2.0/glib/garray.h:
+/usr/include/glib-2.0/glib/gasyncqueue.h:
+/usr/include/glib-2.0/glib/gthread.h:
+/usr/include/glib-2.0/glib/gatomic.h:
+/usr/include/glib-2.0/glib/gerror.h:
+/usr/include/glib-2.0/glib/gquark.h:
+/usr/include/glib-2.0/glib/gutils.h:
+/usr/include/glib-2.0/glib/gbacktrace.h:
+/usr/include/glib-2.0/glib/gbase64.h:
+/usr/include/glib-2.0/glib/gbitlock.h:
+/usr/include/glib-2.0/glib/gbookmarkfile.h:
+/usr/include/glib-2.0/glib/gdatetime.h:
+/usr/include/glib-2.0/glib/gtimezone.h:
+/usr/include/glib-2.0/glib/gbytes.h:
+/usr/include/glib-2.0/glib/gcharset.h:
+/usr/include/glib-2.0/glib/gchecksum.h:
+/usr/include/glib-2.0/glib/gconvert.h:
+/usr/include/glib-2.0/glib/gdataset.h:
+/usr/include/glib-2.0/glib/gdate.h:
+/usr/include/glib-2.0/glib/gdir.h:
+/usr/include/glib-2.0/glib/genviron.h:
+/usr/include/glib-2.0/glib/gfileutils.h:
+/usr/include/glib-2.0/glib/ggettext.h:
+/usr/include/glib-2.0/glib/ghash.h:
+/usr/include/glib-2.0/glib/glist.h:
+/usr/include/glib-2.0/glib/gmem.h:
+/usr/include/glib-2.0/glib/gnode.h:
+/usr/include/glib-2.0/glib/ghmac.h:
+/usr/include/glib-2.0/glib/gchecksum.h:
+/usr/include/glib-2.0/glib/ghook.h:
+/usr/include/glib-2.0/glib/ghostutils.h:
+/usr/include/glib-2.0/glib/giochannel.h:
+/usr/include/glib-2.0/glib/gmain.h:
+/usr/include/glib-2.0/glib/gpoll.h:
+/usr/include/glib-2.0/glib/gslist.h:
+/usr/include/glib-2.0/glib/gstring.h:
+/usr/include/glib-2.0/glib/gunicode.h:
+/usr/include/glib-2.0/glib/gkeyfile.h:
+/usr/include/glib-2.0/glib/gmappedfile.h:
+/usr/include/glib-2.0/glib/gmarkup.h:
+/usr/include/glib-2.0/glib/gmessages.h:
+/usr/include/glib-2.0/glib/gvariant.h:
+/usr/include/glib-2.0/glib/gvarianttype.h:
+/usr/include/glib-2.0/glib/goption.h:
+/usr/include/glib-2.0/glib/gpattern.h:
+/usr/include/glib-2.0/glib/gprimes.h:
+/usr/include/glib-2.0/glib/gqsort.h:
+/usr/include/glib-2.0/glib/gqueue.h:
+/usr/include/glib-2.0/glib/grand.h:
+/usr/include/glib-2.0/glib/grcbox.h:
+/usr/include/glib-2.0/glib/grefcount.h:
+/usr/include/glib-2.0/glib/grefstring.h:
+/usr/include/glib-2.0/glib/gmem.h:
+/usr/include/glib-2.0/glib/gmacros.h:
+/usr/include/glib-2.0/glib/gregex.h:
+/usr/include/glib-2.0/glib/gscanner.h:
+/usr/include/glib-2.0/glib/gsequence.h:
+/usr/include/glib-2.0/glib/gshell.h:
+/usr/include/glib-2.0/glib/gslice.h:
+/usr/include/glib-2.0/glib/gspawn.h:
+/usr/include/glib-2.0/glib/gstrfuncs.h:
+/usr/include/glib-2.0/glib/gstringchunk.h:
+/usr/include/glib-2.0/glib/gstrvbuilder.h:
+/usr/include/glib-2.0/glib/gtestutils.h:
+/usr/include/glib-2.0/glib/gthreadpool.h:
+/usr/include/glib-2.0/glib/gtimer.h:
+/usr/include/glib-2.0/glib/gtrashstack.h:
+/usr/include/glib-2.0/glib/gtree.h:
+/usr/include/glib-2.0/glib/guri.h:
+/usr/include/glib-2.0/glib/guuid.h:
+/usr/include/glib-2.0/glib/gversion.h:
+/usr/include/glib-2.0/glib/deprecated/gallocator.h:
+/usr/include/glib-2.0/glib/deprecated/gcache.h:
+/usr/include/glib-2.0/glib/deprecated/gcompletion.h:
+/usr/include/glib-2.0/glib/deprecated/gmain.h:
+/usr/include/glib-2.0/glib/deprecated/grel.h:
+/usr/include/glib-2.0/glib/deprecated/gthread.h:
+/usr/include/glib-2.0/glib/glib-autocleanups.h:
+/usr/include/gstreamer-1.0/gst/glib-compat.h:
+/usr/include/gstreamer-1.0/gst/gstenumtypes.h:
+/usr/include/glib-2.0/glib-object.h:
+/usr/include/glib-2.0/gobject/gbinding.h:
+/usr/include/glib-2.0/gobject/gobject.h:
+/usr/include/glib-2.0/gobject/gtype.h:
+/usr/include/glib-2.0/gobject/gvalue.h:
+/usr/include/glib-2.0/gobject/gparam.h:
+/usr/include/glib-2.0/gobject/gclosure.h:
+/usr/include/glib-2.0/gobject/gsignal.h:
+/usr/include/glib-2.0/gobject/gmarshal.h:
+/usr/include/glib-2.0/gobject/gboxed.h:
+/usr/include/glib-2.0/gobject/glib-types.h:
+/usr/include/glib-2.0/gobject/genums.h:
+/usr/include/glib-2.0/gobject/glib-enumtypes.h:
+/usr/include/glib-2.0/gobject/gparamspecs.h:
+/usr/include/glib-2.0/gobject/gsourceclosure.h:
+/usr/include/glib-2.0/gobject/gtypemodule.h:
+/usr/include/glib-2.0/gobject/gtypeplugin.h:
+/usr/include/glib-2.0/gobject/gvaluearray.h:
+/usr/include/glib-2.0/gobject/gvaluetypes.h:
+/usr/include/glib-2.0/gobject/gobject-autocleanups.h:
+/usr/include/gstreamer-1.0/gst/gstconfig.h:
+/usr/include/gstreamer-1.0/gst/gstversion.h:
+/usr/include/gstreamer-1.0/gst/gstatomicqueue.h:
+/usr/include/gstreamer-1.0/gst/gstbin.h:
+/usr/include/gstreamer-1.0/gst/gstelement.h:
+/usr/include/gstreamer-1.0/gst/gstobject.h:
+/usr/include/gstreamer-1.0/gst/gstcontrolbinding.h:
+/usr/include/gstreamer-1.0/gst/gstcontrolsource.h:
+/usr/include/gstreamer-1.0/gst/gstclock.h:
+/usr/include/gstreamer-1.0/gst/gstpad.h:
+/usr/include/gstreamer-1.0/gst/gstbuffer.h:
+/usr/include/gstreamer-1.0/gst/gstminiobject.h:
+/usr/include/gstreamer-1.0/gst/gstallocator.h:
+/usr/include/gstreamer-1.0/gst/gstmemory.h:
+/usr/include/gstreamer-1.0/gst/gstcaps.h:
+/usr/include/gstreamer-1.0/gst/gststructure.h:
+/usr/include/gstreamer-1.0/gst/gstdatetime.h:
+/usr/include/gstreamer-1.0/gst/gstcapsfeatures.h:
+/usr/include/gstreamer-1.0/gst/gstmeta.h:
+/usr/include/gstreamer-1.0/gst/gstbufferlist.h:
+/usr/include/gstreamer-1.0/gst/gstpadtemplate.h:
+/usr/include/gstreamer-1.0/gst/gstevent.h:
+/usr/include/gstreamer-1.0/gst/gstformat.h:
+/usr/include/gstreamer-1.0/gst/gstiterator.h:
+/usr/include/gstreamer-1.0/gst/gsttaglist.h:
+/usr/include/gstreamer-1.0/gst/gstsample.h:
+/usr/include/gstreamer-1.0/gst/gstsegment.h:
+/usr/include/gstreamer-1.0/gst/gstmessage.h:
+/usr/include/gstreamer-1.0/gst/gstquery.h:
+/usr/include/gstreamer-1.0/gst/gsttoc.h:
+/usr/include/gstreamer-1.0/gst/gstcontext.h:
+/usr/include/gstreamer-1.0/gst/gstdevice.h:
+/usr/include/gstreamer-1.0/gst/gststreams.h:
+/usr/include/gstreamer-1.0/gst/gststreamcollection.h:
+/usr/include/gstreamer-1.0/gst/gsttask.h:
+/usr/include/gstreamer-1.0/gst/gsttaskpool.h:
+/usr/include/gstreamer-1.0/gst/gstbus.h:
+/usr/include/gstreamer-1.0/gst/gstelementfactory.h:
+/usr/include/gstreamer-1.0/gst/gstplugin.h:
+/usr/include/gstreamer-1.0/gst/gstmacros.h:
+/usr/include/gstreamer-1.0/gst/gstpluginfeature.h:
+/usr/include/gstreamer-1.0/gst/gsturi.h:
+/usr/include/gstreamer-1.0/gst/gstminiobject.h:
+/usr/include/gstreamer-1.0/gst/gstbufferpool.h:
+/usr/include/gstreamer-1.0/gst/gstchildproxy.h:
+/usr/include/gstreamer-1.0/gst/gstdebugutils.h:
+/usr/include/gstreamer-1.0/gst/gstdevicemonitor.h:
+/usr/include/gstreamer-1.0/gst/gstdeviceprovider.h:
+/usr/include/gstreamer-1.0/gst/gstdeviceproviderfactory.h:
+/usr/include/gstreamer-1.0/gst/gstdynamictypefactory.h:
+/usr/include/gstreamer-1.0/gst/gstelementmetadata.h:
+/usr/include/gstreamer-1.0/gst/gsterror.h:
+/usr/include/gstreamer-1.0/gst/gstghostpad.h:
+/usr/include/gstreamer-1.0/gst/gstinfo.h:
+/usr/include/gstreamer-1.0/gst/gstparamspecs.h:
+/usr/include/gstreamer-1.0/gst/gstvalue.h:
+/usr/include/gstreamer-1.0/gst/gstpipeline.h:
+/usr/include/gstreamer-1.0/gst/gstpoll.h:
+/usr/include/gstreamer-1.0/gst/gstpreset.h:
+/usr/include/gstreamer-1.0/gst/gstprotection.h:
+/usr/include/gstreamer-1.0/gst/gstregistry.h:
+/usr/include/gstreamer-1.0/gst/gstpromise.h:
+/usr/include/gstreamer-1.0/gst/gstsystemclock.h:
+/usr/include/gstreamer-1.0/gst/gsttagsetter.h:
+/usr/include/gstreamer-1.0/gst/gsttocsetter.h:
+/usr/include/gstreamer-1.0/gst/gsttracer.h:
+/usr/include/gstreamer-1.0/gst/gsttracerfactory.h:
+/usr/include/gstreamer-1.0/gst/gsttracerrecord.h:
+/usr/include/gstreamer-1.0/gst/gsttypefind.h:
+/usr/include/gstreamer-1.0/gst/gsttypefindfactory.h:
+/usr/include/gstreamer-1.0/gst/gstutils.h:
+/usr/include/gstreamer-1.0/gst/gstparse.h:
+/usr/include/gstreamer-1.0/gst/gstcompat.h:
+/usr/include/gstreamer-1.0/gst/video/video.h:
+/usr/include/gstreamer-1.0/gst/video/video-prelude.h:
+/usr/include/gstreamer-1.0/gst/video/video-format.h:
+/usr/include/gstreamer-1.0/gst/video/video-enumtypes.h:
+/usr/include/gstreamer-1.0/gst/video/video-tile.h:
+/usr/include/gstreamer-1.0/gst/video/video-chroma.h:
+/usr/include/gstreamer-1.0/gst/video/video-color.h:
+/usr/include/gstreamer-1.0/gst/video/video-dither.h:
+/usr/include/gstreamer-1.0/gst/video/video-info.h:
+/usr/include/gstreamer-1.0/gst/video/video-frame.h:
+/usr/include/gstreamer-1.0/gst/video/video-converter.h:
+/usr/include/gstreamer-1.0/gst/video/video-scaler.h:
+/usr/include/gstreamer-1.0/gst/video/video-resampler.h:
+/usr/include/gstreamer-1.0/gst/video/video-multiview.h:
+/usr/include/gstreamer-1.0/gst/video/colorbalancechannel.h:
+/usr/include/gstreamer-1.0/gst/video/colorbalance.h:
+/usr/include/gstreamer-1.0/gst/video/gstvideoaggregator.h:
+/usr/include/gstreamer-1.0/gst/base/gstaggregator.h:
+/usr/include/gstreamer-1.0/gst/base/base-prelude.h:
+/usr/include/gstreamer-1.0/gst/video/gstvideodecoder.h:
+/usr/include/gstreamer-1.0/gst/base/gstadapter.h:
+/usr/include/gstreamer-1.0/gst/video/gstvideoutils.h:
+/usr/include/gstreamer-1.0/gst/video/gstvideoencoder.h:
+/usr/include/gstreamer-1.0/gst/video/gstvideofilter.h:
+/usr/include/gstreamer-1.0/gst/base/gstbasetransform.h:
+/usr/include/gstreamer-1.0/gst/video/gstvideometa.h:
+/usr/include/gstreamer-1.0/gst/video/gstvideotimecode.h:
+/usr/include/gstreamer-1.0/gst/video/gstvideopool.h:
+/usr/include/gstreamer-1.0/gst/video/gstvideosink.h:
+/usr/include/gstreamer-1.0/gst/base/gstbasesink.h:
+/usr/include/gstreamer-1.0/gst/video/navigation.h:
+/usr/include/gstreamer-1.0/gst/video/video-blend.h:
+/usr/include/gstreamer-1.0/gst/video/video-event.h:
+/usr/include/gstreamer-1.0/gst/video/videodirection.h:
+/usr/include/gstreamer-1.0/gst/video/videoorientation.h:
+/usr/include/gstreamer-1.0/gst/video/video-overlay-composition.h:
+/usr/include/gstreamer-1.0/gst/video/videooverlay.h:
+/usr/include/gstreamer-1.0/gst/video/gstvideoaffinetransformationmeta.h:
+/usr/include/gstreamer-1.0/gst/video/video-anc.h:
+/usr/include/gstreamer-1.0/gst/video/video-hdr.h:
+/opt/openFrameworks/libs/openFrameworks/video/ofVideoPlayer.h:
+/opt/openFrameworks/libs/openFrameworks/video/ofGstVideoPlayer.h:
+/opt/openFrameworks/libs/openFrameworks/3d/of3dUtils.h:
+/opt/openFrameworks/libs/openFrameworks/3d/ofCamera.h:
+/opt/openFrameworks/libs/openFrameworks/3d/ofEasyCam.h:

BIN
obj/linux64/Release/src/ofApp.o


+ 38 - 0
readme.md

@@ -0,0 +1,38 @@
+#audioInputExample
+--
+![Screenshot of Example](audioInputExample.gif)
+
+### Learning Objectives
+
+This openFrameworks example is designed to demonstrate how to access, extract, and draw from your audio input's raw data.
+
+Studying the code behind this example will help you understand:
+
+* How to list all available audio devices with `soundStream.printDeviceList()` and set a specific audio input device for OF app with `settings.setInDevice(devices[0])`
+* How audio functions work independent from draw and update loop by observe `bufferCounter` and `drawCounter`
+* How to roughly calculate volume by using RMS (root mean square) value in `void audioIn` 
+* How to record data overtime with vector with `vector <float> volHistory`
+
+
+### Expected Behavior
+
+When launching this app, you should see 
+
+* Fast moving curve lines on the left, and big circle on the right that reacts to live audio input
+* Graph of recorded volume data overtime under the big circle
+* Text that shows difference in draw vs buffer counter
+
+Instructions for use:
+
+* make some noise or touch your microphone to see how sound manipulate the drawing.
+* press `e` to stop live audio input, `s` to continue 
+
+
+
+
+### Classes used in this example
+
+This example uses the following classes: 
+
+* ``ofSoundStream``
+* ``ofSoundStreamSettings``

+ 14 - 0
src/main.cpp

@@ -0,0 +1,14 @@
+#include "ofMain.h"
+#include "ofApp.h"
+
+//========================================================================
+int main( ){
+
+	ofSetupOpenGL(1024,768, OF_WINDOW);			// <-------- setup the GL context
+
+	// this kicks off the running of my app
+	// can be OF_WINDOW or OF_FULLSCREEN
+	// pass in width and height too:
+	ofRunApp( new ofApp());
+
+}

+ 23 - 0
src/mnglitches/glitch.cpp

@@ -0,0 +1,23 @@
+#include "glitch.h"
+
+Glitch::Glitch()
+{
+    setX(0);
+    setY(0);
+}
+
+Glitch::Glitch(const float & x, const float & y)
+{
+    setX(x);
+    setY(y);
+}
+
+//destructor
+Glitch::~Glitch() {}
+
+
+//accessors
+float Glitch::getX(){ return _x; }
+float Glitch::getY(){ return _y; }
+void Glitch::setX(const float & x){_x = x;}
+void Glitch::setY(const float & y){_y = y;}

+ 36 - 0
src/mnglitches/glitch.h

@@ -0,0 +1,36 @@
+#ifndef GLITCH_H
+#define GLITCH_H
+
+
+#include "ofMain.h" // we need to include this to have a reference to the openFrameworks framework
+#include "randomness.h"
+class Glitch {
+
+    public: // place public functions or variables declarations here
+        //constructor
+        //const reference pass because the values w and h don't change and reference avoid the time it takes to copy large
+        //  objects by value (if there were any)
+        Glitch();
+        Glitch(const float & x, const float & y);
+
+        //destructor
+        virtual ~Glitch();
+
+        //accessors
+        float getX();
+        float getY();
+        void setX(const float & x);
+        void setY(const float & y);
+
+
+        // methods, equivalent to specific functions of your class objects
+        virtual void setup() = 0;    // setup method, use this to setup your object's initial state
+        virtual void update(const Randomness *rthings) = 0;  // update method, used to refresh your objects properties
+        virtual void draw() = 0;    // draw method, this where you'll do the object's drawing
+
+
+    private:
+         float _x, _y;
+
+};
+#endif // GLITCH_H

+ 30 - 0
src/mnglitches/line.cpp

@@ -0,0 +1,30 @@
+#include "line.h"
+#include "randomness.h"
+#include "glitch.h"
+
+
+Line::Line()
+{
+    setX(0);
+    setY(0);
+}
+Line::Line(float &x, float &y)
+{
+    setX(x);
+    setY(y);
+}
+
+//destructor
+Line::~Line() {}
+
+void Line::setup(){
+
+};
+
+void Line::draw(){
+
+};
+
+void Line::update(const Randomness *rthings){
+
+}

+ 24 - 0
src/mnglitches/line.h

@@ -0,0 +1,24 @@
+#ifndef LINE_H
+#define LINE_H
+
+#include "glitch.h"
+#include "randomness.h"
+
+class Line : public Glitch
+{
+    public:
+        //contructor
+        Line();
+        Line(float &x, float &y);
+
+        //destructor
+        ~Line();
+
+
+        void setup();    // setup method, use this to setup your object's initial state
+        void update(const Randomness *rthings);  // update method, used to refresh your objects properties
+        void draw();    // draw method, this where you'll do the object's drawing
+
+};
+
+#endif // LINE_H

+ 11 - 0
src/mnglitches/randomness.h

@@ -0,0 +1,11 @@
+#ifndef RANDOMNESS_H
+#define RANDOMNESS_H
+
+class Randomness{
+
+    public:
+        Randomness();
+
+};
+
+#endif // RANDOMNESS_H

+ 226 - 0
src/ofApp.cpp

@@ -0,0 +1,226 @@
+#include "ofApp.h"
+
+//--------------------------------------------------------------
+void ofApp::setup(){	 
+    ofSetFrameRate(24);
+
+    // ofEnableAntiAliasing();
+    ofEnableBlendMode(OF_BLENDMODE_ALPHA);
+    // ofEnableSmoothing();
+    // voronoi.setMinDist(std::epsilon<float>());
+
+	ofSetVerticalSync(true);
+	ofSetCircleResolution(80);
+	ofBackground(54, 54, 54);	
+	
+	soundStream.printDeviceList();
+	
+	int bufferSize = 256;
+
+	left.assign(bufferSize, 0.0);
+	right.assign(bufferSize, 0.0);
+	volHistory.assign(400, 0.0);
+	
+	bufferCounter	= 0;
+	drawCounter		= 0;
+	smoothedVol     = 0.0;
+	scaledVol		= 0.0;
+
+
+	ofSoundStreamSettings settings;
+
+//	// if you want to set the device id to be different than the default
+
+       auto devices = soundStream.getDeviceList(ofSoundDevice::Api::JACK);
+//	// settings.device = devices[4];
+
+//	// you can also get devices for an specific api
+//	// auto devices = soundStream.getDevicesByApi(ofSoundDevice::Api::PULSE);
+//	// settings.device = devices[0];
+
+//	// or get the default device for an specific api:
+//	// settings.api = ofSoundDevice::Api::PULSE;
+
+//	// or by name
+////	auto devices = soundStream.getMatchingDevices("default");
+   //auto devices = soundStream.getDevicesByApi(ofSoundDevice::Api::JACK);
+//    settings.device = devices[0];
+
+    if(!devices.empty()){
+        settings.setInDevice(devices[0]);
+    }
+
+    settings.setInListener(this);
+    settings.sampleRate = 48000;
+    settings.numOutputChannels = 0;
+    settings.numInputChannels = 2;
+    settings.bufferSize = bufferSize;
+    soundStream.setup(settings);
+//    audioAnalyzer.setup(48000, bufferSize, 2);
+}
+
+//--------------------------------------------------------------
+void ofApp::update(){
+//	//lets scale the vol up to a 0-1 range
+//	scaledVol = ofMap(smoothedVol, 0.0, 0.17, 0.0, 1.0, true);
+
+//	//lets record the volume into an array
+//	volHistory.push_back( scaledVol );
+	
+//	//if we are bigger the the size we want to record - lets drop the oldest value
+//	if( volHistory.size() >= 400 ){
+//		volHistory.erase(volHistory.begin(), volHistory.begin()+1);
+//	}
+   coinToss= ofRandom(0, 3.0);
+}
+
+//--------------------------------------------------------------
+void ofApp::draw(){
+//---------- VONOROI -----------
+    // draw background
+     ofColor centerColor = ofColor(85, 78, 68);
+     ofColor edgeColor(0, 0, 0);
+     ofBackgroundGradient(centerColor, edgeColor, OF_GRADIENT_CIRCULAR);
+     ofSetColor(255,255,255);
+
+
+         if(coinToss <= 1){
+             ofSetLineWidth( map(coinToss,0,3,1,5));
+             ofDrawLine(glm::vec2(ofRandom(0,ofGetWidth()),ofRandom(0,ofGetHeight())),glm::vec2(ofRandom(0,ofGetWidth()),ofRandom(0,ofGetHeight())));
+         }
+
+
+}
+
+//--------------------------------------------------------------
+void ofApp::audioIn(ofSoundBuffer & input){
+	
+	float curVol = 0.0;
+	
+	// samples are "interleaved"
+	int numCounted = 0;	
+
+	//lets go through each sample and calculate the root mean square which is a rough way to calculate volume	
+	for (size_t i = 0; i < input.getNumFrames(); i++){
+		left[i]		= input[i*2]*0.5;
+		right[i]	= input[i*2+1]*0.5;
+
+		curVol += left[i] * left[i];
+		curVol += right[i] * right[i];
+		numCounted+=2;
+	}
+	
+	//this is how we get the mean of rms :) 
+	curVol /= (float)numCounted;
+	
+	// this is how we get the root of rms :) 
+	curVol = sqrt( curVol );
+	
+	smoothedVol *= 0.93;
+	smoothedVol += 0.07 * curVol;
+	
+	bufferCounter++;
+	
+}
+//--------------------------------------------------------------
+void ofApp::audioReceived(float* input, int bufferSize, int nChannels) {
+    float maxValue = 0;
+    for(int i = 0; i < bufferSize; i++) {
+        if(abs(input[i]) > maxValue) {
+            maxValue = abs(input[i]);
+        }
+    }
+    for(int i = 0; i < bufferSize; i++) {
+        input[i] /= maxValue;
+    }
+
+    fft->setSignal(input);
+
+    float* curFft = fft->getAmplitude();
+    memcpy(&audioBins[0], curFft, sizeof(float) * fft->getBinSize());
+
+    maxValue = 0;
+    for(int i = 0; i < fft->getBinSize(); i++) {
+        if(abs(audioBins[i]) > maxValue) {
+            maxValue = abs(audioBins[i]);
+        }
+    }
+    for(int i = 0; i < fft->getBinSize(); i++) {
+        audioBins[i] /= maxValue;
+    }
+
+    soundMutex.lock();
+    middleBins = audioBins;
+    soundMutex.unlock();
+}
+//--------------------------------------------------------------
+void ofApp::keyPressed  (int key){ 
+       std::cout << "Pressed " << char(key) << " (int=" << key << ")\n";
+     switch(key){
+
+       case 'f':
+         ofToggleFullscreen();
+         break;
+       case 's':
+         soundStream.start();
+         break;
+       case 'e':
+         soundStream.stop();
+         break;
+
+     }
+
+}
+
+//--------------------------------------------------------------
+void ofApp::keyReleased(int key){ 
+	
+}
+
+//--------------------------------------------------------------
+void ofApp::mouseMoved(int x, int y ){
+	
+}
+
+//--------------------------------------------------------------
+void ofApp::mouseDragged(int x, int y, int button){
+
+}
+
+//--------------------------------------------------------------
+void ofApp::mousePressed(int x, int y, int button){
+
+}
+//--------------------------------------------------------------
+void ofApp::mouseReleased(int x, int y, int button){
+
+}
+
+//--------------------------------------------------------------
+void ofApp::mouseEntered(int x, int y){
+
+}
+
+//--------------------------------------------------------------
+void ofApp::mouseExited(int x, int y){
+
+}
+
+//--------------------------------------------------------------
+void ofApp::windowResized(int w, int h){
+
+}
+
+//--------------------------------------------------------------
+void ofApp::gotMessage(ofMessage msg){
+
+}
+
+//--------------------------------------------------------------
+void ofApp::dragEvent(ofDragInfo dragInfo){ 
+
+}
+
+float ofApp::map(float value, float min1, float max1, float min2, float max2) {
+  return min2 + (value - min1) * (max2 - min2) / (max1 - min1);
+}

+ 60 - 0
src/ofApp.h

@@ -0,0 +1,60 @@
+#pragma once
+
+#include "ofMain.h"
+#include "ofxFft.h"
+//#include "ofxVoronoi2D.h"
+//#include "ofxAudioAnalyzer.h"
+
+class ofApp : public ofBaseApp{
+	
+	public:
+		
+		void setup();
+		void update();
+		void draw();
+		
+		void keyPressed(int key);
+		void keyReleased(int key);
+		void mouseMoved(int x, int y );
+		void mouseDragged(int x, int y, int button);
+		void mousePressed(int x, int y, int button);
+		void mouseReleased(int x, int y, int button);
+		void mouseEntered(int x, int y);
+		void mouseExited(int x, int y);
+		void windowResized(int w, int h);
+		void dragEvent(ofDragInfo dragInfo);
+		void gotMessage(ofMessage msg);
+        void plot(vector<float>& buffer, float scale, float offset);
+        void audioReceived(float* input, int bufferSize, int nChannels);
+        void audioIn(ofSoundBuffer & input);
+protected:
+        float map(float value, float min1, float max1, float min2, float max2);
+private:
+		vector <float> left;
+		vector <float> right;
+		vector <float> volHistory;
+		
+		int 	bufferCounter;
+		int 	drawCounter;
+		
+		float smoothedVol;
+		float scaledVol;
+		
+        ofSoundStream soundStream;
+
+        //FFT
+        ofxFft* fft;
+
+        int plotHeight, bufferSize;
+
+
+
+        ofMutex soundMutex;
+        vector<float> drawBins, middleBins, audioBins;
+//        ofxAudioAnalyzer audioAnalyzer;
+        //glitch
+        float coinToss;
+
+
+
+};

Some files were not shown because too many files changed in this diff