From 5194a486284591187a1e11fcc62a462e50929321 Mon Sep 17 00:00:00 2001 From: falkTX Date: Wed, 8 Dec 2021 15:13:50 +0000 Subject: [PATCH] Remove unused files --- lv2export/dep.cpp | 35 -------------- lv2export/lv2plugin.ttl | 102 ---------------------------------------- 2 files changed, 137 deletions(-) delete mode 100644 lv2export/dep.cpp delete mode 100644 lv2export/lv2plugin.ttl diff --git a/lv2export/dep.cpp b/lv2export/dep.cpp deleted file mode 100644 index 5fe6db2..0000000 --- a/lv2export/dep.cpp +++ /dev/null @@ -1,35 +0,0 @@ -/* - * DISTRHO Cardinal Plugin - * Copyright (C) 2021 Filipe Coelho - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation; either version 3 of - * the License, or any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * For a full copy of the GNU General Public License see the LICENSE file. - */ - -#include "nanovg.h" - -struct NVGLUframebuffer; -void nvgluBindFramebuffer(NVGLUframebuffer* fb) {} -NVGLUframebuffer* nvgluCreateFramebuffer(NVGcontext* ctx, int w, int h, int imageFlags) { return nullptr; } -void nvgluDeleteFramebuffer(NVGLUframebuffer* fb) {} - -#if defined(__GNUC__) && (__GNUC__ >= 6) -# pragma GCC diagnostic push -# pragma GCC diagnostic ignored "-Wmisleading-indentation" -# pragma GCC diagnostic ignored "-Wshift-negative-value" -#endif - -#include "nanovg.c" - -#if defined(__GNUC__) && (__GNUC__ >= 6) -# pragma GCC diagnostic pop -#endif diff --git a/lv2export/lv2plugin.ttl b/lv2export/lv2plugin.ttl deleted file mode 100644 index e8dfc60..0000000 --- a/lv2export/lv2plugin.ttl +++ /dev/null @@ -1,102 +0,0 @@ -@prefix atom: . -@prefix doap: . -@prefix foaf: . -@prefix lv2: . -@prefix midi: . -@prefix mod: . -@prefix opts: . -@prefix pg: . -@prefix patch: . -@prefix rdf: . -@prefix rdfs: . -@prefix rsz: . -@prefix spdx: . -@prefix ui: . -@prefix unit: . - - - a lv2:Plugin, doap:Project ; - - # NOTE port 0 and 1 are actually CV ins, but we need some kind of optionally-connected stuff implemented first - lv2:port [ - a lv2:OutputPort, lv2:ControlPort ; - lv2:index 0 ; - lv2:symbol "lv2_audio_in_1" ; - lv2:name "CV1_INPUT" ; - lv2:default 10; - lv2:minimum 0; - lv2:maximum 10; - ] , [ - a lv2:OutputPort, lv2:ControlPort ; - lv2:index 1 ; - lv2:symbol "lv2_audio_in_2" ; - lv2:name "CV2_INPUT" ; - lv2:default 10; - lv2:minimum 0; - lv2:maximum 10; - ] , [ - a lv2:InputPort, lv2:AudioPort ; - lv2:index 2 ; - lv2:symbol "lv2_audio_in_3" ; - lv2:name "IN1_INPUT" ; - ] , [ - a lv2:InputPort, lv2:AudioPort ; - lv2:index 3 ; - lv2:symbol "lv2_audio_in_4" ; - lv2:name "IN2_INPUT" ; - ] , [ - a lv2:InputPort, lv2:CVPort, mod:CVPort ; - lv2:index 4 ; - lv2:symbol "lv2_audio_in_5" ; - lv2:name "MIX_CV_INPUT" ; - lv2:default 0; - lv2:minimum 0; - lv2:maximum 10; - ] , [ - a lv2:OutputPort, lv2:AudioPort ; - lv2:index 5 ; - lv2:symbol "lv2_audio_out_1" ; - lv2:name "Mix Output" ; - ] , [ - a lv2:OutputPort, lv2:AudioPort ; - lv2:index 6 ; - lv2:symbol "lv2_audio_out_2" ; - lv2:name "Wet Output" ; - ] , [ - a lv2:InputPort, lv2:ControlPort ; - lv2:index 7 ; - lv2:name "Dry/wet" ; - lv2:symbol "param_1" ; - lv2:default 50 ; - lv2:minimum 0 ; - lv2:maximum 100 ; - unit:unit unit:pc; - ] , [ - a lv2:InputPort, lv2:ControlPort ; - lv2:index 8 ; - lv2:name "In 1 level" ; - lv2:symbol "param_2" ; - lv2:default 25 ; - lv2:minimum 0 ; - lv2:maximum 100 ; - unit:unit unit:pc; - ] , [ - a lv2:InputPort, lv2:ControlPort ; - lv2:index 9 ; - lv2:name "In 2 level" ; - lv2:symbol "param_3" ; - lv2:default 25 ; - lv2:minimum 0 ; - lv2:maximum 100 ; - unit:unit unit:pc; - ] , [ - a lv2:InputPort, lv2:ControlPort ; - lv2:index 10 ; - lv2:name "High pass filter cutoff" ; - lv2:symbol "param_4" ; - lv2:default 0.5 ; - lv2:minimum 0 ; - lv2:maximum 1 ; - ] ; - - doap:name "Befaco" .