~kdub/mir/latency-analysis

« back to all changes in this revision

Viewing changes to playground/demo-shell/typo/typo_glcache.h

  • Committer: Tarmac
  • Author(s): Daniel van Vugt
  • Date: 2016-10-11 08:48:09 UTC
  • mfrom: (3744.1.1 typo-is-not-an-example)
  • Revision ID: tarmac-20161011084809-490yrrlsx8lygjp5
Rename namespace mir::examples::typo -> mir::typo

Because it's not an example. In fact, libtypo is designed to not depend
on Mir-anything at all. It could even become an external project later
(with a different name, because the current one is not unique enough).
.

Approved by mir-ci-bot, Cemil Azizoglu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 * Authored by: Daniel van Vugt <daniel.van.vugt@canonical.com>
17
17
 */
18
18
 
19
 
#ifndef MIR_EXAMPLES_TYPO_GLCACHE_H_
20
 
#define MIR_EXAMPLES_TYPO_GLCACHE_H_
 
19
#ifndef MIR_TYPO_GLCACHE_H_
 
20
#define MIR_TYPO_GLCACHE_H_
21
21
 
22
22
#include "typo_renderer.h"
23
23
#include <string>
24
24
#include <unordered_map>
25
25
#include <memory>
26
26
 
27
 
namespace mir { namespace examples { namespace typo {
 
27
namespace mir { namespace typo {
28
28
 
29
29
class GLCache
30
30
{
51
51
    std::shared_ptr<Renderer> renderer;
52
52
};
53
53
 
54
 
} } } // namespace mir::examples::typo
 
54
} } // namespace mir::typo
55
55
 
56
 
#endif // MIR_EXAMPLES_TYPO_GLCACHE_H_
 
56
#endif // MIR_TYPO_GLCACHE_H_