Free Electron
ShaderCommon.h
Go to the documentation of this file.
1 /* Copyright (C) 2003-2021 Free Electron Organization
2  Any use of this software requires a license. If a valid license
3  was not distributed with this file, visit freeelectron.org. */
4 
5 /** @file */
6 
7 #ifndef __shade_ShaderCommon_h__
8 #define __shade_ShaderCommon_h__
9 namespace fe
10 {
11 namespace ext
12 {
13 
14 /**************************************************************************//**
15  @brief Common Shader methods
16 
17  @ingroup shade
18 *//***************************************************************************/
19 class FE_DL_EXPORT ShaderCommon:
20  public Catalog,
21  virtual public ShaderI
22 {
23  public:
24 
25  ShaderCommon(void) {}
26 virtual ~ShaderCommon(void) {}
27 
28  //* As ShaderI
29 virtual void update(void);
30 };
31 
32 } /* namespace ext */
33 } /* namespace fe */
34 
35 #endif /* __shade_ShaderCommon_h__ */
General Surface Evaluation.
Definition: ShaderI.h:19
kernel
Definition: namespace.dox:3
Dictionary of Arbitrary Instances.
Definition: Catalog.h:24
Common Shader methods.
Definition: ShaderCommon.h:19