OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SoftwareOutputDevice
(Results
1 - 25
of
42
) sorted by null
1
2
/external/chromium_org/cc/output/
software_output_device.cc
16
SoftwareOutputDevice
::
SoftwareOutputDevice
() {}
18
SoftwareOutputDevice
::~
SoftwareOutputDevice
() {}
20
void
SoftwareOutputDevice
::Resize(gfx::Size viewport_size) {
30
SkCanvas*
SoftwareOutputDevice
::BeginPaint(gfx::Rect damage_rect) {
36
void
SoftwareOutputDevice
::EndPaint(SoftwareFrameData* frame_data) {
44
void
SoftwareOutputDevice
::CopyToBitmap(
51
void
SoftwareOutputDevice
::Scroll(
56
void
SoftwareOutputDevice
::ReclaimSoftwareFrame(unsigned id)
[
all
...]
software_output_device.h
31
class CC_EXPORT
SoftwareOutputDevice
{
33
SoftwareOutputDevice
();
34
virtual ~
SoftwareOutputDevice
();
38
// |
SoftwareOutputDevice
| can be used in other ways.
42
// SkCanvas. The |
SoftwareOutputDevice
| implementation needs to provide a
56
// Blit the pixel content of the
SoftwareOutputDevice
by |delta| with the
85
DISALLOW_COPY_AND_ASSIGN(
SoftwareOutputDevice
);
output_surface.h
52
explicit OutputSurface(scoped_ptr<
SoftwareOutputDevice
> software_device);
55
scoped_ptr<
SoftwareOutputDevice
> software_device);
92
SoftwareOutputDevice
* software_device() const {
156
scoped_ptr<
SoftwareOutputDevice
> software_device_;
output_surface_unittest.cc
30
explicit TestOutputSurface(scoped_ptr<
SoftwareOutputDevice
> software_device)
36
scoped_ptr<
SoftwareOutputDevice
> software_device)
102
class TestSoftwareOutputDevice : public
SoftwareOutputDevice
{
107
// Overriden from cc:
SoftwareOutputDevice
125
SoftwareOutputDevice
::DiscardBackbuffer();
130
SoftwareOutputDevice
::EnsureBackbuffer();
170
scoped_ptr<
SoftwareOutputDevice
>(new
SoftwareOutputDevice
)) {}
456
TestOutputSurface output_surface(p.PassAs<
SoftwareOutputDevice
>());
software_renderer.h
18
class
SoftwareOutputDevice
;
106
SoftwareOutputDevice
* output_device_;
/external/chromium_org/cc/test/
pixel_test_software_output_device.cc
12
SoftwareOutputDevice
::Resize(expanded_size);
pixel_test_software_output_device.h
12
class PixelTestSoftwareOutputDevice : public
SoftwareOutputDevice
{
fake_layer_tree_host_client.cc
26
make_scoped_ptr(new
SoftwareOutputDevice
)).PassAs<OutputSurface>();
30
make_scoped_ptr(new
SoftwareOutputDevice
)).PassAs<OutputSurface>();
pixel_test_output_surface.h
17
scoped_ptr<
SoftwareOutputDevice
> software_device);
fake_output_surface.h
42
scoped_ptr<
SoftwareOutputDevice
> software_device) {
64
scoped_ptr<
SoftwareOutputDevice
> software_device) {
71
scoped_ptr<
SoftwareOutputDevice
> software_device) {
135
scoped_ptr<
SoftwareOutputDevice
> software_device,
140
scoped_ptr<
SoftwareOutputDevice
> software_device,
pixel_test_output_surface.cc
17
scoped_ptr<
SoftwareOutputDevice
> software_device)
fake_output_surface.cc
33
scoped_ptr<
SoftwareOutputDevice
> software_device,
49
scoped_ptr<
SoftwareOutputDevice
> software_device,
/external/chromium_org/content/renderer/gpu/
delegated_compositor_output_surface.h
18
scoped_ptr<cc::
SoftwareOutputDevice
> software);
delegated_compositor_output_surface.cc
13
scoped_ptr<cc::
SoftwareOutputDevice
> software)
compositor_software_output_device.h
23
: NON_EXPORTED_BASE(public cc::
SoftwareOutputDevice
),
mailbox_output_surface.h
31
scoped_ptr<cc::
SoftwareOutputDevice
> software_device,
/external/chromium_org/content/browser/aura/
software_browser_compositor_output_surface.h
18
class
SoftwareOutputDevice
;
30
scoped_ptr<cc::
SoftwareOutputDevice
> software_device,
software_browser_compositor_output_surface_unittest.cc
41
class FakeSoftwareOutputDevice : public cc::
SoftwareOutputDevice
{
67
scoped_ptr<cc::
SoftwareOutputDevice
> device);
112
scoped_ptr<cc::
SoftwareOutputDevice
> device) {
124
scoped_ptr<cc::
SoftwareOutputDevice
> software_device(
125
new cc::
SoftwareOutputDevice
());
135
scoped_ptr<cc::
SoftwareOutputDevice
> software_device(
software_output_device_ozone.h
19
// an accelerated widget as a SkCanvas.
SoftwareOutputDevice
will then use the
22
: public cc::
SoftwareOutputDevice
{
software_output_device_x11.h
17
class SoftwareOutputDeviceX11 : public cc::
SoftwareOutputDevice
{
software_output_device_win.h
23
class SoftwareOutputDeviceWin : public cc::
SoftwareOutputDevice
{
browser_compositor_output_surface.h
17
class
SoftwareOutputDevice
;
53
scoped_ptr<cc::
SoftwareOutputDevice
> software_device,
software_output_device_ozone.cc
57
return
SoftwareOutputDevice
::BeginPaint(damage_rect);
61
SoftwareOutputDevice
::EndPaint(frame_data);
software_browser_compositor_output_surface.cc
21
scoped_ptr<cc::
SoftwareOutputDevice
> software_device,
software_output_device_x11.cc
50
cc::
SoftwareOutputDevice
::Resize(viewport_size);
73
SoftwareOutputDevice
::EndPaint(frame_data);
Completed in 518 milliseconds
1
2