Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add FFT Visualizer Demo #67

Open
wyhinton opened this issue Sep 1, 2021 · 2 comments
Open

Add FFT Visualizer Demo #67

wyhinton opened this issue Sep 1, 2021 · 2 comments

Comments

@wyhinton
Copy link

wyhinton commented Sep 1, 2021

It'd be great if the repo included a simple eq visualizer demo that clearly demonstrates how to use the new fft input.

I imagine it could look like this (maybe even simpler).

image

@wyhinton
Copy link
Author

Bumping this, or does anyone know of any examples that show how to use the fft input uniform?

@wyhinton
Copy link
Author

wyhinton commented May 3, 2022

Could you tell me why this doesn't work?
@jorisdejong could you tell me why this shader doesn't work?

Isn't the FFT Param provided as a uniform array of float values?

#include "FFT_BASIC.h"
static PluginInstance p = Source::CreatePlugin< FFT_BASIC >({"FFT_BASIC","FFT_BASIC"});

static const std::string fshader = R"(
precision mediump float; 


void main()
{
    float t = TEST[1000];
    gl_FragColor = vec4(t);
}
)";

FFT_BASIC::FFT_BASIC()
{
SetFragmentShader(fshader);
AddParam(ParamFFT::Create("TEST"));


}

FFT_BASIC::~FFT_BASIC()
{
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant