OLD | NEW |
1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2016 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_passthrough.h" | 5 #include "gpu/command_buffer/service/gles2_cmd_decoder_passthrough.h" |
6 | 6 |
7 #include "base/strings/string_number_conversions.h" | 7 #include "base/strings/string_number_conversions.h" |
8 | 8 |
9 namespace gpu { | 9 namespace gpu { |
10 namespace gles2 { | 10 namespace gles2 { |
(...skipping 1849 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1860 | 1860 |
1861 error::Error GLES2DecoderPassthroughImpl::DoScheduleCALayerSharedStateCHROMIUM( | 1861 error::Error GLES2DecoderPassthroughImpl::DoScheduleCALayerSharedStateCHROMIUM( |
1862 GLfloat opacity, | 1862 GLfloat opacity, |
1863 GLboolean is_clipped, | 1863 GLboolean is_clipped, |
1864 const GLfloat* clip_rect, | 1864 const GLfloat* clip_rect, |
1865 GLint sorting_context_id, | 1865 GLint sorting_context_id, |
1866 const GLfloat* transform) { | 1866 const GLfloat* transform) { |
1867 return error::kNoError; | 1867 return error::kNoError; |
1868 } | 1868 } |
1869 | 1869 |
| 1870 error::Error |
| 1871 GLES2DecoderPassthroughImpl::DoScheduleCALayerFilterEffectsCHROMIUM( |
| 1872 GLuint n, |
| 1873 const GLCALayerFilterEffect* effects) { |
| 1874 return error::kNoError; |
| 1875 } |
| 1876 |
1870 error::Error GLES2DecoderPassthroughImpl::DoScheduleCALayerCHROMIUM( | 1877 error::Error GLES2DecoderPassthroughImpl::DoScheduleCALayerCHROMIUM( |
1871 GLuint contents_texture_id, | 1878 GLuint contents_texture_id, |
1872 const GLfloat* contents_rect, | 1879 const GLfloat* contents_rect, |
1873 GLuint background_color, | 1880 GLuint background_color, |
1874 GLuint edge_aa_mask, | 1881 GLuint edge_aa_mask, |
1875 const GLfloat* bounds_rect) { | 1882 const GLfloat* bounds_rect) { |
1876 return error::kNoError; | 1883 return error::kNoError; |
1877 } | 1884 } |
1878 | 1885 |
1879 error::Error GLES2DecoderPassthroughImpl::DoScheduleCALayerInUseQueryCHROMIUM( | 1886 error::Error GLES2DecoderPassthroughImpl::DoScheduleCALayerInUseQueryCHROMIUM( |
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2136 error::Error | 2143 error::Error |
2137 GLES2DecoderPassthroughImpl::DoUniformMatrix4fvStreamTextureMatrixCHROMIUM( | 2144 GLES2DecoderPassthroughImpl::DoUniformMatrix4fvStreamTextureMatrixCHROMIUM( |
2138 GLint location, | 2145 GLint location, |
2139 GLboolean transpose, | 2146 GLboolean transpose, |
2140 const GLfloat* defaultValue) { | 2147 const GLfloat* defaultValue) { |
2141 return error::kNoError; | 2148 return error::kNoError; |
2142 } | 2149 } |
2143 | 2150 |
2144 } // namespace gles2 | 2151 } // namespace gles2 |
2145 } // namespace gpu | 2152 } // namespace gpu |
OLD | NEW |