00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00032
00033 #pragma once
00034
00035 #include "../api_display.h"
00036 #include "../../Core/System/sharedptr.h"
00037
00038 class CL_Size;
00039 class CL_Rect;
00040 class CL_Texture;
00041 class CL_Subtexture;
00042 class CL_TextureGroup_Impl;
00043 class CL_GraphicContext;
00044
00048 class CL_API_DISPLAY CL_TextureGroup
00049 {
00052 public:
00054 enum TextureAllocationPolicy
00055 {
00056 create_new_texture,
00057 search_previous_textures
00058 };
00059
00063 public:
00065 CL_TextureGroup();
00066
00068 CL_TextureGroup(CL_GraphicContext &context, const CL_Size &texture_sizes);
00069
00070 ~CL_TextureGroup();
00071
00075 public:
00076
00078 bool is_null() const;
00079
00081 int get_subtexture_count() const;
00082
00084 int get_subtexture_count(unsigned int texture_index) const;
00085
00087 int get_texture_count() const;
00088
00090 TextureAllocationPolicy get_texture_allocation_policy() const;
00091
00093 CL_Size get_texture_sizes() const;
00094
00096 std::vector<CL_Texture> get_textures() const;
00097
00101 public:
00103 CL_Subtexture add(CL_GraphicContext &context, const CL_Size &size);
00104
00110 void remove(CL_Subtexture &subtexture);
00111
00113 void set_texture_allocation_policy(TextureAllocationPolicy policy);
00114
00119 void insert_texture(CL_Texture &texture, const CL_Rect &texture_rect);
00120
00124 private:
00125 CL_SharedPtr<CL_TextureGroup_Impl> impl;
00127 };
00128