NAP
gnomonshader.h
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4 
5 #pragma once
6 
7 // External Includes
8 #include <shader.h>
9 
10 namespace nap
11 {
12  // Forward declares
13  class Core;
14  class RenderService;
15 
19  class NAPAPI GnomonShader : public Shader
20  {
21  RTTI_ENABLE(Shader)
22  public:
23  GnomonShader(Core& core);
24 
30  virtual bool init(utility::ErrorState& errorState) override;
31 
32  private:
33  RenderService* mRenderService = nullptr;
34  };
35 }
nap::utility::ErrorState
Definition: errorstate.h:19
nap::Shader
Definition: shader.h:105
nap::RenderService
Definition: renderservice.h:275
nap::Core
Definition: core.h:82
nap::GnomonShader
Definition: gnomonshader.h:19
nap
Definition: templateapp.h:17