OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "ppapi/tests/test_buffer.h" | 5 #include "ppapi/tests/test_buffer.h" |
6 | 6 |
7 #include "ppapi/c/dev/ppb_buffer_dev.h" | 7 #include "ppapi/c/dev/ppb_buffer_dev.h" |
8 #include "ppapi/cpp/dev/buffer_dev.h" | 8 #include "ppapi/cpp/dev/buffer_dev.h" |
9 #include "ppapi/cpp/graphics_2d.h" | 9 #include "ppapi/cpp/graphics_2d.h" |
10 #include "ppapi/cpp/instance.h" | 10 #include "ppapi/cpp/instance.h" |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 } | 52 } |
53 | 53 |
54 std::string TestBuffer::TestIsBuffer() { | 54 std::string TestBuffer::TestIsBuffer() { |
55 // Test that a NULL resource isn't a buffer. | 55 // Test that a NULL resource isn't a buffer. |
56 pp::Resource null_resource; | 56 pp::Resource null_resource; |
57 if (buffer_interface_->IsBuffer(null_resource.pp_resource())) | 57 if (buffer_interface_->IsBuffer(null_resource.pp_resource())) |
58 return "Null resource was reported as a valid buffer"; | 58 return "Null resource was reported as a valid buffer"; |
59 | 59 |
60 // Make another resource type and test it. | 60 // Make another resource type and test it. |
61 const int w = 16, h = 16; | 61 const int w = 16, h = 16; |
62 pp::Graphics2D device(pp::Size(w, h), true); | 62 pp::Graphics2D device(instance_, pp::Size(w, h), true); |
63 if (device.is_null()) | 63 if (device.is_null()) |
64 return "Couldn't create device context"; | 64 return "Couldn't create device context"; |
65 if (buffer_interface_->IsBuffer(device.pp_resource())) | 65 if (buffer_interface_->IsBuffer(device.pp_resource())) |
66 return "Device context was reported as a buffer"; | 66 return "Device context was reported as a buffer"; |
67 | 67 |
68 // Make a valid buffer. | 68 // Make a valid buffer. |
69 pp::Buffer_Dev buffer(100); | 69 pp::Buffer_Dev buffer(100); |
70 if (buffer.is_null()) | 70 if (buffer.is_null()) |
71 return "Couldn't create buffer"; | 71 return "Couldn't create buffer"; |
72 if (!buffer_interface_->IsBuffer(buffer.pp_resource())) | 72 if (!buffer_interface_->IsBuffer(buffer.pp_resource())) |
73 return "Buffer should be identified as a buffer"; | 73 return "Buffer should be identified as a buffer"; |
74 | 74 |
75 return ""; | 75 return ""; |
76 } | 76 } |
77 | 77 |
OLD | NEW |