Searched defs:dirty (Results 26 - 32 of 32) sorted by relevance

12

/frameworks/native/opengl/libagl/
H A Dcontext.h354 uint8_t dirty; member in struct:android::gl::texture_unit_t
452 uint8_t dirty; member in struct:android::gl::matrix_stack_t
512 uint32_t dirty; member in struct:android::gl::transform_state_t
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp889 // transform the dirty region into this screen's coordinate space
895 // and draw the dirty region
1018 bool dirty = !mDisplays[dpy]->getDirtyRegion(false).isEmpty(); local
1022 // If nothing has changed (!dirty), don't recompose.
1030 bool mustRecompose = dirty && !(empty && wasEmpty);
1035 dirty ? "+" : "-",
1130 // transform the dirty region into this screen's coordinate space
1558 Region dirty; local
1645 // compute this layer's dirty region
1648 dirty
1689 invalidateLayerStack(uint32_t layerStack, const Region& dirty) argument
1809 doComposeSurfaces(const sp<const DisplayDevice>& hw, const Region& dirty) argument
[all...]
/frameworks/base/libs/hwui/
H A DOpenGLRenderer.cpp352 status_t OpenGLRenderer::callDrawGLFunction(Functor* functor, Rect& dirty) { argument
358 // Since we don't know what the functor will draw, let's dirty
384 // Scissor may have been modified, reset dirty clip
460 Rect& dirty = layer->dirtyRect; local
898 // drawing only the dirty region
1217 void OpenGLRenderer::drawRegionRects(const SkRegion& region, const SkPaint& paint, bool dirty) { argument
1230 drawColorRects(rects.array(), rects.size(), &paint, true, dirty, false);
1253 android::Rect dirty(bounds.left, bounds.top, bounds.right, bounds.bottom);
1254 if (!dirty.isEmpty()) {
1255 region->orSelf(dirty);
1721 bool dirty = right - left > 0.0f && bottom - top > 0.0f; local
1901 drawRenderNode(RenderNode* renderNode, Rect& dirty, int32_t replayFlags) argument
3172 drawColorRects(const float* rects, int count, const SkPaint* paint, bool ignoreTransform, bool dirty, bool clip) argument
3297 drawTextureMesh(float left, float top, float right, float bottom, GLuint texture, const SkPaint* paint, bool blend, GLvoid* vertices, GLvoid* texCoords, GLenum drawMode, GLsizei elementsCount, bool swapSrcDst, bool ignoreTransform, GLuint vbo, ModelViewMode modelViewMode, bool dirty) argument
3324 drawIndexedTextureMesh(float left, float top, float right, float bottom, GLuint texture, const SkPaint* paint, bool blend, GLvoid* vertices, GLvoid* texCoords, GLenum drawMode, GLsizei elementsCount, bool swapSrcDst, bool ignoreTransform, GLuint vbo, ModelViewMode modelViewMode, bool dirty) argument
3351 drawAlpha8TextureMesh(float left, float top, float right, float bottom, GLuint texture, const SkPaint* paint, GLvoid* vertices, GLvoid* texCoords, GLenum drawMode, GLsizei elementsCount, bool ignoreTransform, ModelViewMode modelViewMode, bool dirty) argument
[all...]
/frameworks/base/services/core/java/com/android/server/power/
H A DPowerManagerService.java1192 * Updates the global power state based on dirty bits recorded in mDirty.
1255 private void updateIsPoweredLocked(int dirty) { argument
1256 if ((dirty & DIRTY_BATTERY_STATE) != 0) {
1352 private void updateStayOnLocked(int dirty) { argument
1353 if ((dirty & (DIRTY_BATTERY_STATE | DIRTY_SETTINGS)) != 0) {
1375 private void updateWakeLockSummaryLocked(int dirty) { argument
1376 if ((dirty & (DIRTY_WAKE_LOCKS | DIRTY_WAKEFULNESS)) != 0) {
1441 private void updateUserActivitySummaryLocked(long now, int dirty) { argument
1443 if ((dirty & (DIRTY_WAKE_LOCKS | DIRTY_USER_ACTIVITY
1517 * This function must have no other side-effects besides setting the dirty
1567 updateWakefulnessLocked(int dirty) argument
1627 updateDreamLocked(int dirty, boolean displayBecameReady) argument
1801 updateDisplayPowerStateLocked(int dirty) argument
1873 updateScreenBrightnessBoostLocked(int dirty) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java4608 public final void invalidateChild(View child, final Rect dirty) { argument
4625 // Mark the child as dirty, using the appropriate flag
4640 boundingRect.set(dirty);
4658 dirty.set((int) (boundingRect.left - 0.5f),
4678 // If the parent is dirty opaque or not dirty, mark it dirty with the opaque
4690 parent = parent.invalidateChildInParent(location, dirty);
4696 boundingRect.set(dirty);
4698 dirty
4716 invalidateChildInParent(final int[] location, final Rect dirty) argument
4798 damageChild(View child, final Rect dirty) argument
4843 damageChildInParent(int left, int top, final Rect dirty) argument
[all...]
H A DViewRootImpl.java903 public void invalidateChild(View child, Rect dirty) { argument
904 invalidateChildInParent(null, dirty);
908 public ViewParent invalidateChildInParent(int[] location, Rect dirty) { argument
910 if (DEBUG_DRAW) Log.v(TAG, "Invalidate child: " + dirty);
912 if (dirty == null) {
915 } else if (dirty.isEmpty() && !mIsAnimating) {
920 mTempRect.set(dirty);
921 dirty = mTempRect;
923 dirty.offset(0, -mCurScrollY);
926 mTranslator.translateRectInAppWindowToScreen(dirty);
2572 drawSoftware(Surface surface, AttachInfo attachInfo, int xoff, int yoff, boolean scalingRequired, Rect dirty) argument
[all...]
H A DView.java10710 * @return The dirty state of this view.
11692 * will not get drawn and they should not set dirty flags as if they will be drawn
11701 * Mark the area defined by dirty as needing to be drawn. If the view is
11709 * {@code dirty}.
11711 * @param dirty the rectangle representing the bounds of the dirty region
11713 public void invalidate(Rect dirty) { argument
11716 invalidateInternal(dirty.left - scrollX, dirty.top - scrollY,
11717 dirty
[all...]

Completed in 1593 milliseconds

12