fix definition of invalidateTextureCache after TouchGFX update

This commit is contained in:
Leonard Gies 2025-04-02 01:42:49 +02:00
parent 653e178ff1
commit 23d946572b
Signed by: l.gies
GPG Key ID: 6F6FB9338EE44F71
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,19 @@
/**
* @file PaintImpl.cpp
*
* fixes definition of invalidateTextureCache
*/
#ifndef TOUCHGFX_PAINTIMPL_HPP
#define TOUCHGFX_PAINTIMPL_HPP
#include <touchgfx/hal/Paint.hpp>
namespace touchgfx {
namespace paint {
void invalidateTextureCache() {}
} // namespace paint
} // namespace touchgfx
#endif // TOUCHGFX_PAINTIMPL_HPP

View File

@ -149,6 +149,7 @@ sourceFiles:
- Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim_ex.c - Drivers/STM32H7xx_HAL_Driver/Src/stm32h7xx_hal_tim_ex.c
- Core/Src/system_stm32h7xx.c - Core/Src/system_stm32h7xx.c
- Utilities/JPEG/jpeg_utils.c - Utilities/JPEG/jpeg_utils.c
- Middlewares/ST/touchgfx/framework/source/touchgfx/PaintImpl.cpp
- Src/** - Src/**
- Core/Src/** - Core/Src/**
- Core/Lib/** - Core/Lib/**