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

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

Issue 10106015: Allow textures to be moved from one GL context group to another. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 7 months 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file defines the GLES2 command buffer commands. 5 // This file defines the GLES2 command buffer commands.
6 6
7 #ifndef GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_FORMAT_H_ 7 #ifndef GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_FORMAT_H_
8 #define GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_FORMAT_H_ 8 #define GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_FORMAT_H_
9 9
10 10
(...skipping 17 matching lines...) Expand all
28 typedef unsigned char GLboolean; 28 typedef unsigned char GLboolean;
29 typedef signed char GLbyte; 29 typedef signed char GLbyte;
30 typedef short GLshort; 30 typedef short GLshort;
31 typedef unsigned char GLubyte; 31 typedef unsigned char GLubyte;
32 typedef unsigned short GLushort; 32 typedef unsigned short GLushort;
33 typedef unsigned long GLulong; 33 typedef unsigned long GLulong;
34 typedef float GLfloat; 34 typedef float GLfloat;
35 typedef float GLclampf; 35 typedef float GLclampf;
36 typedef double GLdouble; 36 typedef double GLdouble;
37 typedef double GLclampd; 37 typedef double GLclampd;
38 typedef char GLchar;
Ken Russell (switch to Gerrit) 2012/04/26 22:34:14 This doesn't seem to be referenced anywhere else i
apatrick_chromium 2012/04/27 22:31:58 Done.
38 typedef void GLvoid; 39 typedef void GLvoid;
39 typedef khronos_intptr_t GLintptr; 40 typedef khronos_intptr_t GLintptr;
40 typedef khronos_ssize_t GLsizeiptr; 41 typedef khronos_ssize_t GLsizeiptr;
41 42
42 namespace gpu { 43 namespace gpu {
43 namespace gles2 { 44 namespace gles2 {
44 45
45 #pragma pack(push, 1) 46 #pragma pack(push, 1)
46 47
47 namespace id_namespaces { 48 namespace id_namespaces {
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
533 OffsetOf_GetUniformLocationBucket_location_shm_id_not_12); 534 OffsetOf_GetUniformLocationBucket_location_shm_id_not_12);
534 COMPILE_ASSERT(offsetof(GetUniformLocationBucket, location_shm_offset) == 16, 535 COMPILE_ASSERT(offsetof(GetUniformLocationBucket, location_shm_offset) == 16,
535 OffsetOf_GetUniformLocationBucket_location_shm_offset_not_16); 536 OffsetOf_GetUniformLocationBucket_location_shm_offset_not_16);
536 537
537 #pragma pack(pop) 538 #pragma pack(pop)
538 539
539 } // namespace gles2 540 } // namespace gles2
540 } // namespace gpu 541 } // namespace gpu
541 542
542 #endif // GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_FORMAT_H_ 543 #endif // GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_FORMAT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698