blob: 66f66eac4251a705b3dea9d1f69b078d42f3f8c0 [file] [log] [blame]
Romain Guye2d345e2010-09-24 18:39:22 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_UI_FBO_CACHE_H
18#define ANDROID_UI_FBO_CACHE_H
19
20#include <GLES2/gl2.h>
21
22#include <utils/SortedVector.h>
23
24#include "GenerationCache.h"
25
26namespace android {
27namespace uirenderer {
28
29///////////////////////////////////////////////////////////////////////////////
30// Cache
31///////////////////////////////////////////////////////////////////////////////
32
33class FboCache {
34public:
35 FboCache();
36 ~FboCache();
37
38 /**
39 * Returns an FBO from the cache. If no FBO is available, a new one
40 * is created. If creating a new FBO fails, 0 is returned.
41 *
42 * When an FBO is obtained from the cache, it is removed and the
43 * total number of FBOs available in the cache decreases.
44 *
45 * @return The name of the FBO, or 0 if no FBO can be obtained.
46 */
47 GLuint get();
48
49 /**
50 * Adds the specified FBO to the cache.
51 *
52 * @param fbo The FBO to add to the cache.
53 *
54 * @return True if the FBO was added, false otherwise.
55 */
56 bool put(GLuint fbo);
57
58 /**
59 * Clears the cache. This causes all FBOs to be deleted.
60 */
61 void clear();
62
63 /**
64 * Returns the current size of the cache.
65 */
66 uint32_t getSize();
67
68 /**
69 * Returns the maximum number of FBOs that the cache can hold.
70 */
71 uint32_t getMaxSize();
72
73private:
74 SortedVector<GLuint> mCache;
75 uint32_t mMaxSize;
76}; // class FboCache
77
78}; // namespace uirenderer
79}; // namespace android
80
81#endif // ANDROID_UI_FBO_CACHE_H