Merge branch 'glsl' of github.com:projectM-visualizer/projectm into glsl

This commit is contained in:
Mischa Spiegelmock
2018-06-10 21:25:24 +03:00
5 changed files with 6 additions and 2 deletions

View File

@ -101,6 +101,9 @@ AC_PREFIX_DEFAULT([/usr/local])
AC_PROG_MKDIR_P
AX_CHECK_COMPILE_FLAG([-std=c++14], [
CXXFLAGS="$CXXFLAGS -std=c++14"])
dnl Qt
AC_ARG_ENABLE([qt],
AS_HELP_STRING([--enable-qt], [Build Qt]),

View File

@ -1,6 +1,8 @@
#ifndef HLSLTRANSLATOR_CPP_
#define HLSLTRANSLATOR_CPP_
#include <memory>
#include "HLSLTranslator.hpp"
using namespace M4;

View File

@ -22,6 +22,7 @@
#include <sys/types.h>
#include "projectM-opengl.h"
#include <iostream>
#include <memory>
#include <cstdlib>
class HLSLTranslator {

View File

@ -1,4 +1,3 @@
SUBDIRS = hlslparser
noinst_LTLIBRARIES = libRenderer.la

View File

@ -16,7 +16,6 @@ class ShaderEngine;
#include "PipelineContext.hpp"
#include "TextureManager.hpp"
#include "BeatDetect.hpp"
#include "HLSLTranslator.hpp"
#include <cstdlib>
#include <iostream>