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

Side by Side Diff: gpu/command_buffer/client/gles2_implementation.h

Issue 57583008: Delete gpu/command_buffer/common/compiler_specific.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | 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 #ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_H_ 5 #ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_H_
6 #define GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_H_ 6 #define GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_H_
7 7
8 #include <GLES2/gl2.h> 8 #include <GLES2/gl2.h>
9 9
10 #include <map> 10 #include <map>
11 #include <queue> 11 #include <queue>
12 #include <set> 12 #include <set>
13 #include <string> 13 #include <string>
14 #include <vector> 14 #include <vector>
15 15
16 #include "base/compiler_specific.h"
16 #include "base/memory/scoped_ptr.h" 17 #include "base/memory/scoped_ptr.h"
17 #include "base/memory/weak_ptr.h" 18 #include "base/memory/weak_ptr.h"
18 #include "gles2_impl_export.h" 19 #include "gles2_impl_export.h"
19 #include "gpu/command_buffer/client/buffer_tracker.h" 20 #include "gpu/command_buffer/client/buffer_tracker.h"
20 #include "gpu/command_buffer/client/client_context_state.h" 21 #include "gpu/command_buffer/client/client_context_state.h"
21 #include "gpu/command_buffer/client/context_support.h" 22 #include "gpu/command_buffer/client/context_support.h"
22 #include "gpu/command_buffer/client/gles2_cmd_helper.h" 23 #include "gpu/command_buffer/client/gles2_cmd_helper.h"
23 #include "gpu/command_buffer/client/gles2_interface.h" 24 #include "gpu/command_buffer/client/gles2_interface.h"
24 #include "gpu/command_buffer/client/gpu_memory_buffer_tracker.h" 25 #include "gpu/command_buffer/client/gpu_memory_buffer_tracker.h"
25 #include "gpu/command_buffer/client/mapped_memory.h" 26 #include "gpu/command_buffer/client/mapped_memory.h"
26 #include "gpu/command_buffer/client/query_tracker.h" 27 #include "gpu/command_buffer/client/query_tracker.h"
27 #include "gpu/command_buffer/client/ref_counted.h" 28 #include "gpu/command_buffer/client/ref_counted.h"
28 #include "gpu/command_buffer/client/ring_buffer.h" 29 #include "gpu/command_buffer/client/ring_buffer.h"
29 #include "gpu/command_buffer/client/share_group.h" 30 #include "gpu/command_buffer/client/share_group.h"
30 #include "gpu/command_buffer/common/compiler_specific.h"
31 #include "gpu/command_buffer/common/debug_marker_manager.h" 31 #include "gpu/command_buffer/common/debug_marker_manager.h"
32 #include "gpu/command_buffer/common/gles2_cmd_utils.h" 32 #include "gpu/command_buffer/common/gles2_cmd_utils.h"
33 33
34 #if !defined(NDEBUG) && !defined(__native_client__) && !defined(GLES2_CONFORMANC E_TESTS) // NOLINT 34 #if !defined(NDEBUG) && !defined(__native_client__) && !defined(GLES2_CONFORMANC E_TESTS) // NOLINT
35 #if defined(GLES2_INLINE_OPTIMIZATION) 35 #if defined(GLES2_INLINE_OPTIMIZATION)
36 // TODO(gman): Replace with macros that work with inline optmization. 36 // TODO(gman): Replace with macros that work with inline optmization.
37 #define GPU_CLIENT_SINGLE_THREAD_CHECK() 37 #define GPU_CLIENT_SINGLE_THREAD_CHECK()
38 #define GPU_CLIENT_LOG(args) 38 #define GPU_CLIENT_LOG(args)
39 #define GPU_CLIENT_LOG_CODE_BLOCK(code) 39 #define GPU_CLIENT_LOG_CODE_BLOCK(code)
40 #define GPU_CLIENT_DCHECK_CODE_BLOCK(code) 40 #define GPU_CLIENT_DCHECK_CODE_BLOCK(code)
(...skipping 684 matching lines...) Expand 10 before | Expand all | Expand 10 after
725 725
726 inline bool GLES2Implementation::GetTexParameterivHelper( 726 inline bool GLES2Implementation::GetTexParameterivHelper(
727 GLenum /* target */, GLenum /* pname */, GLint* /* params */) { 727 GLenum /* target */, GLenum /* pname */, GLint* /* params */) {
728 return false; 728 return false;
729 } 729 }
730 730
731 } // namespace gles2 731 } // namespace gles2
732 } // namespace gpu 732 } // namespace gpu
733 733
734 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_H_ 734 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_H_
OLDNEW
« no previous file with comments | « gpu/command_buffer/client/client_test_helper.h ('k') | gpu/command_buffer/client/gles2_implementation_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698