This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
template <class T> | |
struct GfxCircularQueueDefaultDeleter | |
{ | |
void operator()(T* p_Buffer) const | |
{ | |
LOG_INFO("Circlular queue array deleted, queue is empty now...."); | |
delete p_Buffer; | |
} | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
template <class T> | |
struct GfxCircularQueueDefaultDeleter | |
{ | |
void operator()(T* p_Buffer) const | |
{ | |
LOG_INFO("Circlular queue array deleted, queue is empty now...."); | |
delete p_Buffer; | |
} | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###################################################################################################### | |
# You can extract the object from both the .a files and create your .a file using the extracted .os: # | |
###################################################################################################### | |
# Make a .tmp directory where we will extract our .o file later we delete this dir | |
mkdir .tmp | |
cd .tmp | |
ar -x ../libBMDGfx.a | |
ar -x ../Graphics/3rdParty/FontSupport/harfbuzz-master/build/libharfbuzz.a | |
ar -rc ../libGfx.a *.o |
OlderNewer