Welcome to mirror list, hosted at ThFree Co, Russian Federation.

drape_global.hpp « drape - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f9be7fd035873a72bd30617a825c8ee347e182a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#pragma once

namespace dp
{

enum TextureFormat
{
  RGBA8,
  RGBA4,
  ALPHA,
  UNSPECIFIED
};

enum Anchor
{
  Center      = 0,
  Left        = 0x1,
  Right       = Left << 1,
  Top         = Right << 1,
  Bottom      = Top << 1,
  LeftTop     = Left | Top,
  RightTop    = Right | Top,
  LeftBottom  = Left | Bottom,
  RightBottom = Right | Bottom
};

enum LineCap
{
  SquareCap = -1,
  RoundCap  = 0,
  ButtCap   = 1,
};

enum LineJoin
{
  MiterJoin   = -1,
  BevelJoin  = 0,
  RoundJoin = 1,
};

}