OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DrmPlane
(Results
1 - 13
of
13
) sorted by null
/external/drm_hwcomposer/
drmplane.cpp
19
#include "
drmplane
.h"
31
DrmPlane
::
DrmPlane
(DrmResources *drm, drmModePlanePtr p)
35
int
DrmPlane
::Init() {
132
uint32_t
DrmPlane
::id() const {
136
bool
DrmPlane
::GetCrtcSupported(const DrmCrtc &crtc) const {
140
uint32_t
DrmPlane
::type() const {
144
const DrmProperty &
DrmPlane
::crtc_property() const {
148
const DrmProperty &
DrmPlane
::fb_property() const {
152
const DrmProperty &
DrmPlane
::crtc_x_property() const
[
all
...]
drmplane.h
31
class
DrmPlane
{
33
DrmPlane
(DrmResources *drm, drmModePlanePtr p);
34
DrmPlane
(const
DrmPlane
&) = delete;
35
DrmPlane
&operator=(const
DrmPlane
&) = delete;
platform.cpp
26
std::vector<
DrmPlane
*> Planner::GetUsablePlanes(
27
DrmCrtc *crtc, std::vector<
DrmPlane
*> *primary_planes,
28
std::vector<
DrmPlane
*> *overlay_planes) {
29
std::vector<
DrmPlane
*> usable_planes;
32
[=](
DrmPlane
*plane) { return plane->GetCrtcSupported(*crtc); });
35
[=](
DrmPlane
*plane) { return plane->GetCrtcSupported(*crtc); });
41
std::vector<
DrmPlane
*> *primary_planes,
42
std::vector<
DrmPlane
*> *overlay_planes) {
44
std::vector<
DrmPlane
*> planes =
52
DrmPlane
*squash_plane = NULL
[
all
...]
platform.h
64
std::vector<
DrmPlane
*> *planes) = 0;
68
static
DrmPlane
*PopPlane(std::vector<
DrmPlane
*> *planes) {
71
DrmPlane
*plane = planes->front();
88
std::vector<
DrmPlane
*> *planes,
91
DrmPlane
*plane = PopPlane(planes);
129
DrmCrtc *crtc, std::vector<
DrmPlane
*> *primary_planes,
130
std::vector<
DrmPlane
*> *overlay_planes);
139
std::vector<
DrmPlane
*> GetUsablePlanes(
140
DrmCrtc *crtc, std::vector<
DrmPlane
*> *primary_planes
[
all
...]
drmresources.h
25
#include "
drmplane
.h"
46
const std::vector<std::unique_ptr<
DrmPlane
>> &planes() const {
52
DrmPlane
*GetPlane(uint32_t id) const;
56
int GetPlaneProperty(const
DrmPlane
&plane, const char *prop_name,
83
std::vector<std::unique_ptr<
DrmPlane
>> planes_;
drmdisplaycomposition.h
22
#include "
drmplane
.h"
62
DrmCompositionPlane(Type type,
DrmPlane
*plane, DrmCrtc *crtc)
65
DrmCompositionPlane(Type type,
DrmPlane
*plane, DrmCrtc *crtc,
77
DrmPlane
*plane() const {
80
void set_plane(
DrmPlane
*plane) {
98
DrmPlane
*plane_ = NULL;
114
int AddPlaneDisable(
DrmPlane
*plane);
118
int Plan(SquashState *squash, std::vector<
DrmPlane
*> *primary_planes,
119
std::vector<
DrmPlane
*> *overlay_planes);
drmcomposition.h
22
#include "
drmplane
.h"
68
std::vector<
DrmPlane
*> primary_planes_;
69
std::vector<
DrmPlane
*> overlay_planes_;
platformnv.h
72
std::vector<
DrmPlane
*> *planes);
platformnv.cpp
198
static
DrmPlane
*GetCrtcPrimaryPlane(DrmCrtc *crtc,
199
std::vector<
DrmPlane
*> *planes) {
202
DrmPlane
*plane = *i;
213
std::vector<
DrmPlane
*> *planes) {
262
DrmPlane
*precomp_plane = planes->back();
drmcomposition.cpp
21
#include "
drmplane
.h"
142
for (std::vector<
DrmPlane
*>::iterator iter = primary_planes_.begin();
150
for (std::vector<
DrmPlane
*>::iterator iter = overlay_planes_.begin();
drmresources.cpp
23
#include "
drmplane
.h"
183
std::unique_ptr<
DrmPlane
> plane(new
DrmPlane
(this, p));
235
DrmPlane
*DrmResources::GetPlane(uint32_t id) const {
407
int DrmResources::GetPlaneProperty(const
DrmPlane
&plane, const char *prop_name,
drmdisplaycomposition.cpp
21
#include "
drmplane
.h"
118
int DrmDisplayComposition::AddPlaneDisable(
DrmPlane
*plane) {
287
std::vector<
DrmPlane
*> *primary_planes,
288
std::vector<
DrmPlane
*> *overlay_planes) {
378
std::vector<
DrmPlane
*> *container;
drmdisplaycompositor.cpp
36
#include "
drmplane
.h"
491
DrmPlane
*plane = comp_plane.plane();
645
DrmPlane
*plane = comp_plane.plane();
[
all
...]
Completed in 60 milliseconds