| OLD | NEW |
| 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 #include "gpu/command_buffer/service/gles2_cmd_decoder.h" | 5 #include "gpu/command_buffer/service/gles2_cmd_decoder.h" |
| 6 | 6 |
| 7 #include <stdio.h> | 7 #include <stdio.h> |
| 8 | 8 |
| 9 #include <algorithm> | 9 #include <algorithm> |
| 10 #include <list> | 10 #include <list> |
| (...skipping 2723 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2734 caps.sync_query = feature_info_->feature_flags().chromium_sync_query; | 2734 caps.sync_query = feature_info_->feature_flags().chromium_sync_query; |
| 2735 | 2735 |
| 2736 #if defined(OS_MACOSX) | 2736 #if defined(OS_MACOSX) |
| 2737 // This is unconditionally true on mac, no need to test for it at runtime. | 2737 // This is unconditionally true on mac, no need to test for it at runtime. |
| 2738 caps.iosurface = true; | 2738 caps.iosurface = true; |
| 2739 #endif | 2739 #endif |
| 2740 | 2740 |
| 2741 caps.post_sub_buffer = supports_post_sub_buffer_; | 2741 caps.post_sub_buffer = supports_post_sub_buffer_; |
| 2742 caps.image = true; | 2742 caps.image = true; |
| 2743 | 2743 |
| 2744 caps.blend_minmax = feature_info_->feature_flags().ext_blend_minmax; | |
| 2745 caps.blend_equation_advanced = | 2744 caps.blend_equation_advanced = |
| 2746 feature_info_->feature_flags().blend_equation_advanced; | 2745 feature_info_->feature_flags().blend_equation_advanced; |
| 2747 caps.blend_equation_advanced_coherent = | 2746 caps.blend_equation_advanced_coherent = |
| 2748 feature_info_->feature_flags().blend_equation_advanced_coherent; | 2747 feature_info_->feature_flags().blend_equation_advanced_coherent; |
| 2749 return caps; | 2748 return caps; |
| 2750 } | 2749 } |
| 2751 | 2750 |
| 2752 void GLES2DecoderImpl::UpdateCapabilities() { | 2751 void GLES2DecoderImpl::UpdateCapabilities() { |
| 2753 util_.set_num_compressed_texture_formats( | 2752 util_.set_num_compressed_texture_formats( |
| 2754 validators_->compressed_texture_format.GetValues().size()); | 2753 validators_->compressed_texture_format.GetValues().size()); |
| (...skipping 8477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11232 } | 11231 } |
| 11233 } | 11232 } |
| 11234 | 11233 |
| 11235 // Include the auto-generated part of this file. We split this because it means | 11234 // Include the auto-generated part of this file. We split this because it means |
| 11236 // we can easily edit the non-auto generated parts right here in this file | 11235 // we can easily edit the non-auto generated parts right here in this file |
| 11237 // instead of having to edit some template or the code generator. | 11236 // instead of having to edit some template or the code generator. |
| 11238 #include "gpu/command_buffer/service/gles2_cmd_decoder_autogen.h" | 11237 #include "gpu/command_buffer/service/gles2_cmd_decoder_autogen.h" |
| 11239 | 11238 |
| 11240 } // namespace gles2 | 11239 } // namespace gles2 |
| 11241 } // namespace gpu | 11240 } // namespace gpu |
| OLD | NEW |