XenevaOS
Loading...
Searching...
No Matches
dirty.h
Go to the documentation of this file.
1#pragma once
31#ifndef __DIRTY_H__
32#define __DIRTY_H__
33
34#include "deodxr.h"
35#include <chitralekha.h>
36
37extern void InitialiseDirtyClipList();
38
39/*
40* AddDirtyClip -- add a dirty clip rectangle
41* @param x -- x position
42* @param y -- y position
43* @param w -- width of the rect
44* @param h -- height of the rect
45*/
46extern void AddDirtyClip(int x, int y, int w, int h);
47
48/*
49* DirtyScreenUpdate -- update the screen with respect
50* to dirty rect boundary
51* @param canvas -- pointer to canvas
52*/
54
55/*
56* GetDirtyRectCount -- returns the number of dirty rect
57*/
59
60#endif
uint32_t GetDirtyRectCount()
Definition dirty.cpp:131
void AddDirtyClip(int x, int y, int w, int h)
Definition dirty.cpp:57
void DirtyScreenUpdate(ChCanvas *canvas)
Definition dirty.cpp:85
void InitialiseDirtyClipList()
Definition dirty.cpp:40
unsigned int uint32_t
Definition acefiex.h:163
ChCanvas * canvas
Definition deomain.cpp:91
Definition chitralekha.h:40