Lines Matching refs:rDevice
66 void implTestBmpBasics(const BitmapDeviceSharedPtr& rDevice, in implTestBmpBasics() argument
69 rDevice->clear(Color(0)); in implTestBmpBasics()
78 rDevice->drawBitmap( in implTestBmpBasics()
83 ASSERT_TRUE(countPixel( rDevice, aCol ) == 8) << "number of rendered pixel is not 8"; in implTestBmpBasics()
85 rDevice->drawBitmap( in implTestBmpBasics()
90 ASSERT_TRUE(countPixel( rDevice, aCol ) == 16) << "number of rendered pixel is not 16"; in implTestBmpBasics()
92 rDevice->drawBitmap( in implTestBmpBasics()
97 ASSERT_TRUE(countPixel( rDevice, aCol ) == 24) << "number of rendered pixel is not 24"; in implTestBmpBasics()
99 rDevice->drawBitmap( in implTestBmpBasics()
104 ASSERT_TRUE(countPixel( rDevice, aCol ) == 32) << "number of rendered pixel is not 32"; in implTestBmpBasics()
107 void implTestBmpClip(const BitmapDeviceSharedPtr& rDevice, in implTestBmpClip() argument
110 rDevice->clear(Color(0)); in implTestBmpClip()
119 rDevice->drawBitmap( in implTestBmpClip()
124 ASSERT_TRUE(countPixel( rDevice, aCol ) == 4) << "number of rendered pixel is not 4"; in implTestBmpClip()
126 rDevice->drawBitmap( in implTestBmpClip()
131 ASSERT_TRUE(countPixel( rDevice, aCol ) == 4) << "number of rendered pixel is not 4(c)"; in implTestBmpClip()
133 rDevice->drawBitmap( in implTestBmpClip()
138 ASSERT_TRUE(countPixel( rDevice, aCol ) == 8) << "number of rendered pixel is not 8"; in implTestBmpClip()