forked from nxp-imx/apitrace-imx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
glTexDirectVIVMap glTexDirectMapVIV glTexDirectTiledMapVIV Note: this adds a dependency on the G2D libraries.
- Loading branch information
Adrian Negreanu
committed
Sep 23, 2021
1 parent
d989795
commit 4eb576c
Showing
6 changed files
with
310 additions
and
0 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# - Vivante headers and libraries | ||
#set (Vivante_INC_SEARCH_PATH "usr/include") | ||
find_path (Vivante_G2D_INCLUDE_DIR g2d.h | ||
PATHS ${Vivante_INC_SEARCH_PATH} | ||
DOC "The directory where gd2.h resides" | ||
) | ||
|
||
find_library (Vivante_G2D_LIBRARY libg2d.so | ||
PATHS ${Vivante_LIB_SEARCH_PATH} | ||
DOC "The directory where libg2d resides" | ||
) | ||
find_library (Vivante_VDK_LIBRARY libVDK.so | ||
PATHS ${Vivante_LIB_SEARCH_PATH} | ||
DOC "The directory where libVDK resides" | ||
) | ||
|
||
if (Vivante_G2D_INCLUDE_DIR AND Vivante_G2D_LIBRARY AND Vivante_VDK_LIBRARY) | ||
set (Vivante_FOUND 1) | ||
endif () | ||
|
||
mark_as_advanced ( | ||
Vivante_G2D_INCLUDE_DIR | ||
Vivante_G2D_LIBRARY | ||
Vivante_VDK_LIBRARY | ||
) | ||
|
||
mark_as_advanced ( | ||
Vivante_FOUND | ||
) |
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
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
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
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