OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/strings/string_number_conversions.h" | 8 #include "base/strings/string_number_conversions.h" |
9 #include "gpu/command_buffer/common/gles2_cmd_format.h" | 9 #include "gpu/command_buffer/common/gles2_cmd_format.h" |
10 #include "gpu/command_buffer/common/gles2_cmd_utils.h" | 10 #include "gpu/command_buffer/common/gles2_cmd_utils.h" |
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 GLES2DecoderVertexArraysOESTest, | 349 GLES2DecoderVertexArraysOESTest, |
350 ::testing::Bool()); | 350 ::testing::Bool()); |
351 | 351 |
352 class GLES2DecoderEmulatedVertexArraysOESTest | 352 class GLES2DecoderEmulatedVertexArraysOESTest |
353 : public GLES2DecoderVertexArraysOESTest { | 353 : public GLES2DecoderVertexArraysOESTest { |
354 public: | 354 public: |
355 GLES2DecoderEmulatedVertexArraysOESTest() {} | 355 GLES2DecoderEmulatedVertexArraysOESTest() {} |
356 | 356 |
357 void SetUp() override { | 357 void SetUp() override { |
358 InitState init; | 358 InitState init; |
359 init.gl_version = "3.0"; | |
360 init.bind_generates_resource = true; | 359 init.bind_generates_resource = true; |
361 init.use_native_vao = false; | 360 init.use_native_vao = false; |
362 InitDecoder(init); | 361 InitDecoder(init); |
363 SetupDefaultProgram(); | 362 SetupDefaultProgram(); |
364 | 363 |
365 AddExpectationsForGenVertexArraysOES(); | 364 AddExpectationsForGenVertexArraysOES(); |
366 GenHelper<GenVertexArraysOESImmediate>(client_vertexarray_id_); | 365 GenHelper<GenVertexArraysOESImmediate>(client_vertexarray_id_); |
367 | 366 |
368 vertex_array_deleted_manually_ = false; | 367 vertex_array_deleted_manually_ = false; |
369 } | 368 } |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
474 // TODO(gman): BufferData | 473 // TODO(gman): BufferData |
475 | 474 |
476 // TODO(gman): BufferDataImmediate | 475 // TODO(gman): BufferDataImmediate |
477 | 476 |
478 // TODO(gman): BufferSubData | 477 // TODO(gman): BufferSubData |
479 | 478 |
480 // TODO(gman): BufferSubDataImmediate | 479 // TODO(gman): BufferSubDataImmediate |
481 | 480 |
482 } // namespace gles2 | 481 } // namespace gles2 |
483 } // namespace gpu | 482 } // namespace gpu |
OLD | NEW |