Subversion Repositories Kolibri OS

Rev

Rev 3262 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3262 Rev 5056
Line 63... Line 63...
63
 * if available.
63
 * if available.
64
 * TTM_PL_FLAG_SHARED means that another application may
64
 * TTM_PL_FLAG_SHARED means that another application may
65
 * reference the buffer.
65
 * reference the buffer.
66
 * TTM_PL_FLAG_NO_EVICT means that the buffer may never
66
 * TTM_PL_FLAG_NO_EVICT means that the buffer may never
67
 * be evicted to make room for other buffers.
67
 * be evicted to make room for other buffers.
-
 
68
 * TTM_PL_FLAG_TOPDOWN requests to be placed from the
-
 
69
 * top of the memory area, instead of the bottom.
68
 */
70
 */
Line 69... Line 71...
69
 
71
 
70
#define TTM_PL_FLAG_CACHED      (1 << 16)
72
#define TTM_PL_FLAG_CACHED      (1 << 16)
71
#define TTM_PL_FLAG_UNCACHED    (1 << 17)
73
#define TTM_PL_FLAG_UNCACHED    (1 << 17)
72
#define TTM_PL_FLAG_WC          (1 << 18)
74
#define TTM_PL_FLAG_WC          (1 << 18)
73
#define TTM_PL_FLAG_SHARED      (1 << 20)
75
#define TTM_PL_FLAG_SHARED      (1 << 20)
-
 
76
#define TTM_PL_FLAG_NO_EVICT    (1 << 21)
Line 74... Line 77...
74
#define TTM_PL_FLAG_NO_EVICT    (1 << 21)
77
#define TTM_PL_FLAG_TOPDOWN     (1 << 22)
75
 
78
 
76
#define TTM_PL_MASK_CACHING     (TTM_PL_FLAG_CACHED | \
79
#define TTM_PL_MASK_CACHING     (TTM_PL_FLAG_CACHED | \