comparison Framework/Viewport/IViewport.h @ 1306:fef1ec42a7db broker

Some docs + headers added to CMake for easier VS browsing + tiny predecl
author Benjamin Golinvaux <bgo@osimis.io>
date Wed, 04 Mar 2020 10:07:14 +0100
parents 7ec8fea061b9
children
comparison
equal deleted inserted replaced
1305:a5326ce4f24b 1306:fef1ec42a7db
46 { 46 {
47 } 47 }
48 48
49 virtual bool HasCompositor() const = 0; 49 virtual bool HasCompositor() const = 0;
50 50
51 /**
52 Do not store the result! Only access the compositor interface through
53 the lock.
54 */
51 virtual ICompositor& GetCompositor() = 0; 55 virtual ICompositor& GetCompositor() = 0;
52 56
57 /**
58 Do not store the result! Only access the compositor interface through
59 the lock.
60 */
53 virtual ViewportController& GetController() = 0; 61 virtual ViewportController& GetController() = 0;
54 62
55 virtual void Invalidate() = 0; 63 virtual void Invalidate() = 0;
56 }; 64 };
57 65