| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CC_TEST_TEST_WEB_GRAPHICS_CONTEXT_3D_H_ | 5 #ifndef CC_TEST_TEST_WEB_GRAPHICS_CONTEXT_3D_H_ |
| 6 #define CC_TEST_TEST_WEB_GRAPHICS_CONTEXT_3D_H_ | 6 #define CC_TEST_TEST_WEB_GRAPHICS_CONTEXT_3D_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 } | 349 } |
| 350 void set_gpu_rasterization(bool gpu_rasterization) { | 350 void set_gpu_rasterization(bool gpu_rasterization) { |
| 351 test_capabilities_.gpu_rasterization = gpu_rasterization; | 351 test_capabilities_.gpu_rasterization = gpu_rasterization; |
| 352 } | 352 } |
| 353 void set_enable_dc_layers(bool support) { | 353 void set_enable_dc_layers(bool support) { |
| 354 test_capabilities_.dc_layers = support; | 354 test_capabilities_.dc_layers = support; |
| 355 } | 355 } |
| 356 void set_support_multisample_compatibility(bool support) { | 356 void set_support_multisample_compatibility(bool support) { |
| 357 test_capabilities_.multisample_compatibility = support; | 357 test_capabilities_.multisample_compatibility = support; |
| 358 } | 358 } |
| 359 void set_support_texture_buffer_chromium(bool support) { |
| 360 test_capabilities_.texture_buffer_chromium = support; |
| 361 } |
| 359 | 362 |
| 360 // When this context is lost, all contexts in its share group are also lost. | 363 // When this context is lost, all contexts in its share group are also lost. |
| 361 void add_share_group_context(TestWebGraphicsContext3D* context3d) { | 364 void add_share_group_context(TestWebGraphicsContext3D* context3d) { |
| 362 shared_contexts_.push_back(context3d); | 365 shared_contexts_.push_back(context3d); |
| 363 } | 366 } |
| 364 | 367 |
| 365 void set_max_texture_size(int size) { max_texture_size_ = size; } | 368 void set_max_texture_size(int size) { max_texture_size_ = size; } |
| 366 | 369 |
| 367 static const GLuint kExternalTextureId; | 370 static const GLuint kExternalTextureId; |
| 368 virtual GLuint NextTextureId(); | 371 virtual GLuint NextTextureId(); |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 495 | 498 |
| 496 scoped_refptr<Namespace> namespace_; | 499 scoped_refptr<Namespace> namespace_; |
| 497 static Namespace* shared_namespace_; | 500 static Namespace* shared_namespace_; |
| 498 | 501 |
| 499 base::WeakPtrFactory<TestWebGraphicsContext3D> weak_ptr_factory_; | 502 base::WeakPtrFactory<TestWebGraphicsContext3D> weak_ptr_factory_; |
| 500 }; | 503 }; |
| 501 | 504 |
| 502 } // namespace cc | 505 } // namespace cc |
| 503 | 506 |
| 504 #endif // CC_TEST_TEST_WEB_GRAPHICS_CONTEXT_3D_H_ | 507 #endif // CC_TEST_TEST_WEB_GRAPHICS_CONTEXT_3D_H_ |
| OLD | NEW |