All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
InstancedRenderState.h
1 // Copyright eeGeo Ltd (2012-2016), All Rights Reserved
2 
3 #pragma once
4 
5 #include "VectorMath.h"
6 
7 #include <unordered_map>
8 #include <vector>
9 
10 namespace Eegeo
11 {
12  namespace Rendering
13  {
14  namespace Renderables
15  {
17  {
18  public:
20 
21  void UpdateIndexColors(const std::vector<int>& indices, const v4& color);
22  void UpdateIndexColor(int index, const v4& color);
23 
24  inline bool IsHighlighted() const { return !m_indexColors.empty(); }
25  inline bool IsHighlightedAtIndex(int index) const { return m_indexColors.find(index) != m_indexColors.end(); }
26 
27  v4 GetHighlightColorAtIndex(int index) const;
28 
30  bool IsHighlightingActive = false;
31 
32  private:
33  std::unordered_map<int, v4> m_indexColors;
34  };
35  }
36  }
37 }