OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "cc/output/shader.h" | 5 #include "cc/output/shader.h" |
6 | 6 |
7 #include "cc/test/test_gles2_interface.h" | 7 #include "cc/test/test_gles2_interface.h" |
8 #include "cc/test/test_web_graphics_context_3d.h" | 8 #include "cc/test/test_web_graphics_context_3d.h" |
9 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
10 #include "ui/gfx/point.h" | 10 #include "ui/gfx/geometry/point.h" |
11 #include "ui/gfx/size.h" | 11 #include "ui/gfx/size.h" |
12 | 12 |
13 namespace cc { | 13 namespace cc { |
14 | 14 |
15 TEST(ShaderTest, HighpThresholds) { | 15 TEST(ShaderTest, HighpThresholds) { |
16 // The test context always uses a mediump precision of 10 bits which | 16 // The test context always uses a mediump precision of 10 bits which |
17 // corresponds to a native highp threshold of 2^10 = 1024 | 17 // corresponds to a native highp threshold of 2^10 = 1024 |
18 scoped_ptr<TestWebGraphicsContext3D> stub_context = | 18 scoped_ptr<TestWebGraphicsContext3D> stub_context = |
19 TestWebGraphicsContext3D::Create(); | 19 TestWebGraphicsContext3D::Create(); |
20 TestGLES2Interface stub_gl(stub_context.get()); | 20 TestGLES2Interface stub_gl(stub_context.get()); |
(...skipping 20 matching lines...) Expand all Loading... |
41 &stub_gl, &threshold_cache, threshold_min, closePoint)); | 41 &stub_gl, &threshold_cache, threshold_min, closePoint)); |
42 EXPECT_EQ(TexCoordPrecisionMedium, TexCoordPrecisionRequired( | 42 EXPECT_EQ(TexCoordPrecisionMedium, TexCoordPrecisionRequired( |
43 &stub_gl, &threshold_cache, threshold_min, smallSize)); | 43 &stub_gl, &threshold_cache, threshold_min, smallSize)); |
44 EXPECT_EQ(TexCoordPrecisionMedium, TexCoordPrecisionRequired( | 44 EXPECT_EQ(TexCoordPrecisionMedium, TexCoordPrecisionRequired( |
45 &stub_gl, &threshold_cache, threshold_min, farPoint)); | 45 &stub_gl, &threshold_cache, threshold_min, farPoint)); |
46 EXPECT_EQ(TexCoordPrecisionMedium, TexCoordPrecisionRequired( | 46 EXPECT_EQ(TexCoordPrecisionMedium, TexCoordPrecisionRequired( |
47 &stub_gl, &threshold_cache, threshold_min, bigSize)); | 47 &stub_gl, &threshold_cache, threshold_min, bigSize)); |
48 } | 48 } |
49 | 49 |
50 } // namespace cc | 50 } // namespace cc |
OLD | NEW |