OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CopyOutputResult
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/cc/output/
copy_output_result.cc
14
CopyOutputResult
::
CopyOutputResult
() {}
16
CopyOutputResult
::
CopyOutputResult
(scoped_ptr<SkBitmap> bitmap)
22
CopyOutputResult
::
CopyOutputResult
(
32
CopyOutputResult
::~
CopyOutputResult
() {
37
scoped_ptr<SkBitmap>
CopyOutputResult
::TakeBitmap() {
41
void
CopyOutputResult
::TakeTexture
[
all
...]
copy_output_result.h
19
class CC_EXPORT
CopyOutputResult
{
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_ptr<SkBitmap> bitmap)
[
all
...]
Completed in 35 milliseconds