Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
platform_frameworks_base-old
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Farzin Kazemzadeh
platform_frameworks_base-old
Commits
c70e89e2
Commit
c70e89e2
authored
12 years ago
by
Chris Craik
Committed by
Jean-Baptiste Queru
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix hybrid build
Change-Id: Ieef556473e1878d1319f9844fb0bbb974637999e
parent
8ea93aa6
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/private/hwui/DrawGlInfo.h
+28
-0
28 additions, 0 deletions
include/private/hwui/DrawGlInfo.h
with
28 additions
and
0 deletions
include/private/hwui/DrawGlInfo.h
+
28
−
0
View file @
c70e89e2
...
...
@@ -42,6 +42,34 @@ struct DrawGlInfo {
float
dirtyTop
;
float
dirtyRight
;
float
dirtyBottom
;
/**
* Values used as the "what" parameter of the functor.
*/
enum
Mode
{
// Indicates that the functor is called to perform a draw
kModeDraw
,
// Indicates the the functor is called only to perform
// processing and that no draw should be attempted
kModeProcess
};
/**
* Values used by OpenGL functors to tell the framework
* what to do next.
*/
enum
Status
{
// The functor is done
kStatusDone
=
0x0
,
// The functor is requesting a redraw (the clip rect
// used by the redraw is specified by DrawGlInfo.)
// The rest of the UI might redraw too.
kStatusDraw
=
0x1
,
// The functor needs to be invoked again but will
// not redraw. Only the functor is invoked again
// (unless another functor requests a redraw.)
kStatusInvoke
=
0x2
};
};
// struct DrawGlInfo
};
// namespace uirenderer
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment