| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 | 8 |
| 9 | 9 |
| 10 #ifndef GrGLDefines_DEFINED | 10 #ifndef GrGLDefines_DEFINED |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 #define GR_GL_NORMALIZE 0x0BA1 | 375 #define GR_GL_NORMALIZE 0x0BA1 |
| 376 | 376 |
| 377 /* Matrix Mode */ | 377 /* Matrix Mode */ |
| 378 #define GR_GL_MATRIX_MODE 0x0BA0 | 378 #define GR_GL_MATRIX_MODE 0x0BA0 |
| 379 #define GR_GL_MODELVIEW 0x1700 | 379 #define GR_GL_MODELVIEW 0x1700 |
| 380 #define GR_GL_PROJECTION 0x1701 | 380 #define GR_GL_PROJECTION 0x1701 |
| 381 #define GR_GL_TEXTURE 0x1702 | 381 #define GR_GL_TEXTURE 0x1702 |
| 382 | 382 |
| 383 /* multisample */ | 383 /* multisample */ |
| 384 #define GR_GL_MULTISAMPLE 0x809D | 384 #define GR_GL_MULTISAMPLE 0x809D |
| 385 #define GR_GL_SAMPLE_POSITION 0x8E50 |
| 385 | 386 |
| 386 /* Points */ | 387 /* Points */ |
| 387 #define GR_GL_POINT_SMOOTH 0x0B10 | 388 #define GR_GL_POINT_SMOOTH 0x0B10 |
| 388 #define GR_GL_POINT_SIZE 0x0B11 | 389 #define GR_GL_POINT_SIZE 0x0B11 |
| 389 #define GR_GL_POINT_SIZE_GRANULARITY 0x0B13 | 390 #define GR_GL_POINT_SIZE_GRANULARITY 0x0B13 |
| 390 #define GR_GL_POINT_SIZE_RANGE 0x0B12 | 391 #define GR_GL_POINT_SIZE_RANGE 0x0B12 |
| 391 | 392 |
| 392 /* Lines */ | 393 /* Lines */ |
| 393 #define GR_GL_LINE_SMOOTH 0x0B20 | 394 #define GR_GL_LINE_SMOOTH 0x0B20 |
| 394 #define GR_GL_LINE_STIPPLE 0x0B24 | 395 #define GR_GL_LINE_STIPPLE 0x0B24 |
| (...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 951 #define GR_EGL_EXTENSIONS 0x3055 | 952 #define GR_EGL_EXTENSIONS 0x3055 |
| 952 #define GR_EGL_GL_TEXTURE_2D 0x30B1 | 953 #define GR_EGL_GL_TEXTURE_2D 0x30B1 |
| 953 #define GR_EGL_GL_TEXTURE_LEVEL 0x30BC | 954 #define GR_EGL_GL_TEXTURE_LEVEL 0x30BC |
| 954 #define GR_EGL_IMAGE_PRESERVED 0x30D2 | 955 #define GR_EGL_IMAGE_PRESERVED 0x30D2 |
| 955 #define GR_EGL_FALSE 0x0 | 956 #define GR_EGL_FALSE 0x0 |
| 956 #define GR_EGL_TRUE 0x1 | 957 #define GR_EGL_TRUE 0x1 |
| 957 #define GR_EGL_NONE 0x3038 | 958 #define GR_EGL_NONE 0x3038 |
| 958 #define GR_EGL_NO_IMAGE ((GrEGLImage)0) | 959 #define GR_EGL_NO_IMAGE ((GrEGLImage)0) |
| 959 | 960 |
| 960 #endif | 961 #endif |
| OLD | NEW |