/* * Copyright (c) 2020-2022 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * @addtogroup UI_Utils * @{ * * @brief Defines basic UI utils. * * @since 1.0 * @version 1.0 */ /** * @file mem_api.h * * @brief Defines the functions for memory application and release. You can implement the malloc and free * functions to manage the memory. * * @since 1.0 * @version 1.0 */ #ifndef GRAPHIC_LITE_MEM_API_H #define GRAPHIC_LITE_MEM_API_H #include "gfx_utils/image_info.h" #include namespace OHOS { /** * @brief Applies for the image cache memory. You can customize the memory area when loading image resources. * * @param info Indicates the image information. For details, see {@link ImageInfo}. * @since 1.0 * @version 1.0 */ void* ImageCacheMalloc(const ImageInfo& info); /** * @brief Releases the image cache memory. * * @param info Indicates the image information. For details, see {@link ImageInfo}. * @since 1.0 * @version 1.0 */ void ImageCacheFree(ImageInfo& info); /** * @brief Applies for memory for the graphics module. You can implement this function to override the malloc and * new functions. * * @param size Indicates the size of the memory to apply for. * @since 1.0 * @version 1.0 */ void* UIMalloc(uint32_t size); /** * @brief Releases memory for the graphics module. You can implement this function to override the free and * delete functions. * * @param buffer Indicates the pointer to the memory to be released. * @since 1.0 * @version 1.0 */ void UIFree(void* buffer); /** * @brief 重新调整之前调用UIMalloc所分配的内存指针所指向的内存块的大小 * * @param buffer 指向内存区的指针 * @param size 分配的内存块大小 * @since 3.0 * @version 5.0 */ void* UIRealloc(void* buffer, uint32_t size); } // namespace OHOS #endif