Don't show supervised user as "already on this device" while they're being imported.
[chromium-blink-merge.git] / gpu / command_buffer / service / gles2_cmd_decoder_unittest_extensions.cc
blobf87a4bd24b52cb5f4133ec07b83935468e337056
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
3 // found in the LICENSE file.
5 #include "gpu/command_buffer/service/gles2_cmd_decoder.h"
7 #include "gpu/command_buffer/common/gles2_cmd_format.h"
8 #include "gpu/command_buffer/common/gles2_cmd_utils.h"
9 #include "gpu/command_buffer/service/gles2_cmd_decoder_unittest.h"
10 #include "testing/gtest/include/gtest/gtest.h"
11 #include "ui/gl/gl_mock.h"
13 using ::gfx::MockGLInterface;
14 using ::testing::_;
16 namespace gpu {
17 namespace gles2 {
19 class GLES2DecoderTestWithCHROMIUMPathRendering : public GLES2DecoderTest {
20 public:
21 GLES2DecoderTestWithCHROMIUMPathRendering() {}
22 void SetUp() override {
23 InitState init;
24 init.gl_version = "opengl es 3.1";
25 init.has_alpha = true;
26 init.has_depth = true;
27 init.request_alpha = true;
28 init.request_depth = true;
29 init.bind_generates_resource = true;
30 init.extensions = "GL_NV_path_rendering";
31 InitDecoder(init);
35 INSTANTIATE_TEST_CASE_P(Service,
36 GLES2DecoderTestWithCHROMIUMPathRendering,
37 ::testing::Bool());
39 class GLES2DecoderTestWithBlendEquationAdvanced : public GLES2DecoderTest {
40 public:
41 GLES2DecoderTestWithBlendEquationAdvanced() {}
42 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);
55 INSTANTIATE_TEST_CASE_P(Service,
56 GLES2DecoderTestWithBlendEquationAdvanced,
57 ::testing::Bool());
59 #include "gpu/command_buffer/service/gles2_cmd_decoder_unittest_extensions_autogen.h"
61 } // namespace gles2
62 } // namespace gpu