Hash :
9d737966
        
        Author :
  
        
        Date :
2019-08-14T12:25:12
        
      
Standardize copyright notices to project style
For all "ANGLE Project" copyrights, standardize to the format specified
by the style guide. Changes:
- "Copyright (c)" and "Copyright(c)" changed to just "Copyright".
- Removed the second half of date ranges ("Y1Y1-Y2Y2"->"Y1Y1").
- Fixed a small number of files that had no copyright date using the
  initial commit year from the version control history.
- Fixed one instance of copyright being "The ANGLE Project" rather than
  "The ANGLE Project Authors"
These changes are applied both to the copyright of source file, and
where applicable to copyright statements that are generated by
templates.
BUG=angleproject:3811
Change-Id: I973dd65e4ef9deeba232d5be74c768256a0eb2e5
Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/1754397
Commit-Queue: Jamie Madill <jmadill@chromium.org>
Reviewed-by: Jamie Madill <jmadill@chromium.org>
      
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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
//
// Copyright 2014 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
#ifndef SAMPLE_UTIL_KEYBOARD_H
#define SAMPLE_UTIL_KEYBOARD_H
enum Key
{
    KEY_UNKNOWN,
    KEY_A,          // The A key
    KEY_B,          // The B key
    KEY_C,          // The C key
    KEY_D,          // The D key
    KEY_E,          // The E key
    KEY_F,          // The F key
    KEY_G,          // The G key
    KEY_H,          // The H key
    KEY_I,          // The I key
    KEY_J,          // The J key
    KEY_K,          // The K key
    KEY_L,          // The L key
    KEY_M,          // The M key
    KEY_N,          // The N key
    KEY_O,          // The O key
    KEY_P,          // The P key
    KEY_Q,          // The Q key
    KEY_R,          // The R key
    KEY_S,          // The S key
    KEY_T,          // The T key
    KEY_U,          // The U key
    KEY_V,          // The V key
    KEY_W,          // The W key
    KEY_X,          // The X key
    KEY_Y,          // The Y key
    KEY_Z,          // The Z key
    KEY_NUM0,       // The 0 key
    KEY_NUM1,       // The 1 key
    KEY_NUM2,       // The 2 key
    KEY_NUM3,       // The 3 key
    KEY_NUM4,       // The 4 key
    KEY_NUM5,       // The 5 key
    KEY_NUM6,       // The 6 key
    KEY_NUM7,       // The 7 key
    KEY_NUM8,       // The 8 key
    KEY_NUM9,       // The 9 key
    KEY_ESCAPE,     // The escape key
    KEY_LCONTROL,   // The left control key
    KEY_LSHIFT,     // The left shift key
    KEY_LALT,       // The left alt key
    KEY_LSYSTEM,    // The left OS specific key: Window (Windows and Linux), Apple (MacOS X), ...
    KEY_RCONTROL,   // The right control key
    KEY_RSHIFT,     // The right shift key
    KEY_RALT,       // The right alt key
    KEY_RSYSTEM,    // The right OS specific key: Window (Windows and Linux), Apple (MacOS X), ...
    KEY_MENU,       // The menu key
    KEY_LBRACKET,   // The [ key
    KEY_RBRACKET,   // The ] key
    KEY_SEMICOLON,  // The ; key
    KEY_COMMA,      // The , key
    KEY_PERIOD,     // The . key
    KEY_QUOTE,      // The ' key
    KEY_SLASH,      // The / key
    KEY_BACKSLASH,  // The \ key
    KEY_TILDE,      // The ~ key
    KEY_EQUAL,      // The = key
    KEY_DASH,       // The - key
    KEY_SPACE,      // The space key
    KEY_RETURN,     // The return key
    KEY_BACK,       // The backspace key
    KEY_TAB,        // The tabulation key
    KEY_PAGEUP,     // The page up key
    KEY_PAGEDOWN,   // The page down key
    KEY_END,        // The end key
    KEY_HOME,       // The home key
    KEY_INSERT,     // The insert key
    KEY_DELETE,     // The delete key
    KEY_ADD,        // +
    KEY_SUBTRACT,   // -
    KEY_MULTIPLY,   // *
    KEY_DIVIDE,     // /
    KEY_LEFT,       // Left arrow
    KEY_RIGHT,      // Right arrow
    KEY_UP,         // Up arrow
    KEY_DOWN,       // Down arrow
    KEY_NUMPAD0,    // The numpad 0 key
    KEY_NUMPAD1,    // The numpad 1 key
    KEY_NUMPAD2,    // The numpad 2 key
    KEY_NUMPAD3,    // The numpad 3 key
    KEY_NUMPAD4,    // The numpad 4 key
    KEY_NUMPAD5,    // The numpad 5 key
    KEY_NUMPAD6,    // The numpad 6 key
    KEY_NUMPAD7,    // The numpad 7 key
    KEY_NUMPAD8,    // The numpad 8 key
    KEY_NUMPAD9,    // The numpad 9 key
    KEY_F1,         // The F1 key
    KEY_F2,         // The F2 key
    KEY_F3,         // The F3 key
    KEY_F4,         // The F4 key
    KEY_F5,         // The F5 key
    KEY_F6,         // The F6 key
    KEY_F7,         // The F7 key
    KEY_F8,         // The F8 key
    KEY_F9,         // The F8 key
    KEY_F10,        // The F10 key
    KEY_F11,        // The F11 key
    KEY_F12,        // The F12 key
    KEY_F13,        // The F13 key
    KEY_F14,        // The F14 key
    KEY_F15,        // The F15 key
    KEY_PAUSE,      // The pause key
    KEY_COUNT,
};
#endif  // SAMPLE_UTIL_KEYBOARD_H