Searched defs:CopyOutputResult (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/cc/output/
H A Dcopy_output_result.cc13 CopyOutputResult::CopyOutputResult() {} function in class:cc::CopyOutputResult
15 CopyOutputResult::CopyOutputResult(scoped_ptr<SkBitmap> bitmap) function in class:cc::CopyOutputResult
21 CopyOutputResult::CopyOutputResult( function in class:cc::CopyOutputResult
31 CopyOutputResult::~CopyOutputResult() {
36 scoped_ptr<SkBitmap> CopyOutputResult::TakeBitmap() {
40 void CopyOutputResult
[all...]
H A Dcopy_output_result.h19 class CC_EXPORT CopyOutputResult { class in namespace:cc
21 static scoped_ptr<CopyOutputResult> CreateEmptyResult() {
22 return make_scoped_ptr(new CopyOutputResult);
24 static scoped_ptr<CopyOutputResult> CreateBitmapResult(
26 return make_scoped_ptr(new CopyOutputResult(bitmap.Pass()));
28 static scoped_ptr<CopyOutputResult> CreateTextureResult(
33 new CopyOutputResult(size, texture_mailbox, release_callback.Pass()));
36 ~CopyOutputResult();
48 CopyOutputResult();
49 explicit CopyOutputResult(scoped_pt
[all...]

Completed in 97 milliseconds