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 1854 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1865 GLuint background_color, | 1865 GLuint background_color, |
1866 GLuint edge_aa_mask, | 1866 GLuint edge_aa_mask, |
1867 const GLfloat* bounds_rect, | 1867 const GLfloat* bounds_rect, |
1868 GLboolean is_clipped, | 1868 GLboolean is_clipped, |
1869 const GLfloat* clip_rect, | 1869 const GLfloat* clip_rect, |
1870 GLint sorting_context_id, | 1870 GLint sorting_context_id, |
1871 const GLfloat* transform) { | 1871 const GLfloat* transform) { |
1872 return error::kNoError; | 1872 return error::kNoError; |
1873 } | 1873 } |
1874 | 1874 |
| 1875 error::Error GLES2DecoderPassthroughImpl::DoScheduleCALayerInUseQueryCHROMIUM( |
| 1876 GLuint n, |
| 1877 const GLuint* textures) { |
| 1878 return error::kNoError; |
| 1879 } |
| 1880 |
1875 error::Error GLES2DecoderPassthroughImpl::DoCommitOverlayPlanesCHROMIUM() { | 1881 error::Error GLES2DecoderPassthroughImpl::DoCommitOverlayPlanesCHROMIUM() { |
1876 return error::kNoError; | 1882 return error::kNoError; |
1877 } | 1883 } |
1878 | 1884 |
1879 error::Error GLES2DecoderPassthroughImpl::DoSwapInterval(GLint interval) { | 1885 error::Error GLES2DecoderPassthroughImpl::DoSwapInterval(GLint interval) { |
1880 return error::kNoError; | 1886 return error::kNoError; |
1881 } | 1887 } |
1882 | 1888 |
1883 error::Error GLES2DecoderPassthroughImpl::DoFlushDriverCachesCHROMIUM() { | 1889 error::Error GLES2DecoderPassthroughImpl::DoFlushDriverCachesCHROMIUM() { |
1884 return error::kNoError; | 1890 return error::kNoError; |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2126 error::Error | 2132 error::Error |
2127 GLES2DecoderPassthroughImpl::DoUniformMatrix4fvStreamTextureMatrixCHROMIUM( | 2133 GLES2DecoderPassthroughImpl::DoUniformMatrix4fvStreamTextureMatrixCHROMIUM( |
2128 GLint location, | 2134 GLint location, |
2129 GLboolean transpose, | 2135 GLboolean transpose, |
2130 const GLfloat* defaultValue) { | 2136 const GLfloat* defaultValue) { |
2131 return error::kNoError; | 2137 return error::kNoError; |
2132 } | 2138 } |
2133 | 2139 |
2134 } // namespace gles2 | 2140 } // namespace gles2 |
2135 } // namespace gpu | 2141 } // namespace gpu |
OLD | NEW |