OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #include "../client/gles2_lib.h" | 5 #include "gpu/command_buffer/client/gles2_lib.h" |
6 #include <string.h> | 6 #include <string.h> |
7 #include "../common/thread_local.h" | 7 #include "gpu/command_buffer/common/thread_local.h" |
8 | 8 |
9 namespace gles2 { | 9 namespace gles2 { |
10 | 10 |
11 // This is defined in gles2_c_lib_autogen.h | 11 // This is defined in gles2_c_lib_autogen.h |
12 extern "C" { | 12 extern "C" { |
13 extern const NameToFunc g_gles2_function_table[]; | 13 extern const NameToFunc g_gles2_function_table[]; |
14 } | 14 } |
15 | 15 |
16 // TODO(kbr): the use of this anonymous namespace core dumps the | 16 // TODO(kbr): the use of this anonymous namespace core dumps the |
17 // linker on Mac OS X 10.6 when the symbol ordering file is used | 17 // linker on Mac OS X 10.6 when the symbol ordering file is used |
(...skipping 28 matching lines...) Expand all Loading... |
46 } | 46 } |
47 } | 47 } |
48 return NULL; | 48 return NULL; |
49 } | 49 } |
50 | 50 |
51 } // namespace gles2 | 51 } // namespace gles2 |
52 | 52 |
53 | 53 |
54 | 54 |
55 | 55 |
OLD | NEW |