Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(416)

Side by Side Diff: gpu/command_buffer/service/gles2_cmd_decoder_unittest_extensions.cc

Issue 643373003: Add support for all blendmodes if we have GL_KHR_blend_equation_advanced. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix feature_info_unittest Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "gpu/command_buffer/common/gles2_cmd_format.h" 7 #include "gpu/command_buffer/common/gles2_cmd_format.h"
8 #include "gpu/command_buffer/common/gles2_cmd_utils.h" 8 #include "gpu/command_buffer/common/gles2_cmd_utils.h"
9 #include "gpu/command_buffer/service/gles2_cmd_decoder_unittest.h" 9 #include "gpu/command_buffer/service/gles2_cmd_decoder_unittest.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
(...skipping 17 matching lines...) Expand all
28 init.request_depth = true; 28 init.request_depth = true;
29 init.bind_generates_resource = true; 29 init.bind_generates_resource = true;
30 init.extensions = "GL_NV_path_rendering"; 30 init.extensions = "GL_NV_path_rendering";
31 InitDecoder(init); 31 InitDecoder(init);
32 } 32 }
33 }; 33 };
34 34
35 INSTANTIATE_TEST_CASE_P(Service, 35 INSTANTIATE_TEST_CASE_P(Service,
36 GLES2DecoderTestWithCHROMIUMPathRendering, 36 GLES2DecoderTestWithCHROMIUMPathRendering,
37 ::testing::Bool()); 37 ::testing::Bool());
38
39 class GLES2DecoderTestWithBlendEquationAdvanced : public GLES2DecoderTest {
40 public:
41 GLES2DecoderTestWithBlendEquationAdvanced() {}
42 virtual void SetUp() override {
43 InitState init;
44 init.gl_version = "opengl es 2.0";
45 init.has_alpha = true;
46 init.has_depth = true;
47 init.request_alpha = true;
48 init.request_depth = true;
49 init.bind_generates_resource = true;
50 init.extensions = "GL_KHR_blend_equation_advanced";
51 InitDecoder(init);
52 }
53 };
54
55 INSTANTIATE_TEST_CASE_P(Service,
56 GLES2DecoderTestWithBlendEquationAdvanced,
57 ::testing::Bool());
58
38 #include "gpu/command_buffer/service/gles2_cmd_decoder_unittest_extensions_autog en.h" 59 #include "gpu/command_buffer/service/gles2_cmd_decoder_unittest_extensions_autog en.h"
39 60
40 } // namespace gles2 61 } // namespace gles2
41 } // namespace gpu 62 } // namespace gpu
42 63
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698