NAP
uvtesttexture.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  // Local Includes
8 #include "texture.h"
9 
10 // External Includes
11 #include <rtti/factory.h>
12 
13 namespace nap
14 {
18  class NAPAPI UVTestTexture : public Texture2D
19  {
20  RTTI_ENABLE(Texture2D)
21  public:
25  UVTestTexture(Core& core);
26 
31  virtual bool init(utility::ErrorState& errorState) override;
32 
33  public:
34  bool mGenerateLods = true;
35  };
36 }
37 
nap::utility::ErrorState
Definition: errorstate.h:19
nap::Texture2D
Definition: texture.h:117
nap::Core
Definition: core.h:82
nap::UVTestTexture
Definition: uvtesttexture.h:18
nap
Definition: templateapp.h:17