Free Electron
ShaderI.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_ShaderI_h__
8 #define __shade_ShaderI_h__
9 namespace fe
10 {
11 namespace ext
12 {
13 
14 /**************************************************************************//**
15  @brief General Surface Evaluation
16 
17  @ingroup shade
18 *//***************************************************************************/
19 class FE_DL_EXPORT ShaderI:
20  virtual public Component
21 {
22  public:
23 
24 virtual void update(void) =0;
25 virtual void evaluate(sp<ShaderVariablesI> a_spShaderVariablesI) const =0;
26 };
27 
28 } /* namespace ext */
29 } /* namespace fe */
30 
31 #endif /* __shade_ShaderI_h__ */
General Surface Evaluation.
Definition: ShaderI.h:19
kernel
Definition: namespace.dox:3
Base for all interfacable components.
Definition: Component.h:20
Intrusive Smart Pointer.
Definition: src/core/ptr.h:53