Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(146)

Side by Side Diff: gpu/command_buffer/common/value_state.h

Issue 634313002: Add mouse input forwarding to gpu service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: brianderson@ review Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef GPU_COMMAND_BUFFER_COMMON_VALUE_STATE_H_
6 #define GPU_COMMAND_BUFFER_COMMON_VALUE_STATE_H_
7
8 #include "gpu/gpu_export.h"
9
10 // From gl2/gl2ext.h.
11 #ifndef GL_MOUSE_POSITION_CHROMIUM
12 #define GL_MOUSE_POSITION_CHROMIUM 0x924C
13 #endif
piman 2014/11/21 19:48:51 Why do you need this here?
orglofch 2014/11/21 22:04:12 I had thought there was dependency preventing gl2e
14
15 namespace gpu {
16
17 // Used to maintain Valuebuffer state, exposed to browser to
18 // support passing ValueStates via IPC.
19 union GPU_EXPORT ValueState {
20 float float_value[4];
21 int int_value[4];
22 };
23
24 } // namespace gpu
25
26 #endif // GPU_COMMAND_BUFFER_COMMON_VALUE_STATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698