tlRender 0.21.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1865) hide show
  1. tlrender-0.21.0/.gitattributes +6 -0
  2. tlrender-0.21.0/.gitignore +18 -0
  3. tlrender-0.21.0/.gitmodules +3 -0
  4. tlrender-0.21.0/CMakeLists.txt +411 -0
  5. tlrender-0.21.0/Doxyfile +2709 -0
  6. tlrender-0.21.0/LICENSE.txt +26 -0
  7. tlrender-0.21.0/PKG-INFO +292 -0
  8. tlrender-0.21.0/README.md +233 -0
  9. tlrender-0.21.0/bin/CMakeLists.txt +2 -0
  10. tlrender-0.21.0/bin/tlbake/CMakeLists.txt +7 -0
  11. tlrender-0.21.0/bin/tlbake/main.cpp +30 -0
  12. tlrender-0.21.0/bin/tlplay/CMakeLists.txt +7 -0
  13. tlrender-0.21.0/bin/tlplay/main.cpp +26 -0
  14. tlrender-0.21.0/cmake/Modules/FindNASM.cmake +3 -0
  15. tlrender-0.21.0/deps/ftk/.gitignore +14 -0
  16. tlrender-0.21.0/deps/ftk/CMakeLists.txt +260 -0
  17. tlrender-0.21.0/deps/ftk/Doxyfile +2701 -0
  18. tlrender-0.21.0/deps/ftk/LICENSE.txt +26 -0
  19. tlrender-0.21.0/deps/ftk/README.md +402 -0
  20. tlrender-0.21.0/deps/ftk/bin/ftk-resource/App.cpp +240 -0
  21. tlrender-0.21.0/deps/ftk/bin/ftk-resource/App.h +33 -0
  22. tlrender-0.21.0/deps/ftk/bin/ftk-resource/CMakeLists.txt +31 -0
  23. tlrender-0.21.0/deps/ftk/bin/ftk-resource/main.cpp +26 -0
  24. tlrender-0.21.0/deps/ftk/cmake/Modules/Findnfd.cmake +61 -0
  25. tlrender-0.21.0/deps/ftk/cmake/ftkEmbedText.cmake +28 -0
  26. tlrender-0.21.0/deps/ftk/cmake/ftkIconResources.cmake +64 -0
  27. tlrender-0.21.0/deps/ftk/cmake/ftkIconResources.cpp.in +19 -0
  28. tlrender-0.21.0/deps/ftk/cmake/ftkIconResources.h.in +17 -0
  29. tlrender-0.21.0/deps/ftk/deps/glad_GLES_3/CMakeLists.txt +28 -0
  30. tlrender-0.21.0/deps/ftk/deps/glad_GLES_3/ftk/KHR/khrplatform.h +311 -0
  31. tlrender-0.21.0/deps/ftk/deps/glad_GLES_3/ftk/glad/glad.h +1515 -0
  32. tlrender-0.21.0/deps/ftk/deps/glad_GLES_3/src/glad.c +690 -0
  33. tlrender-0.21.0/deps/ftk/deps/glad_GL_4_1/CMakeLists.txt +28 -0
  34. tlrender-0.21.0/deps/ftk/deps/glad_GL_4_1/ftk/KHR/khrplatform.h +311 -0
  35. tlrender-0.21.0/deps/ftk/deps/glad_GL_4_1/ftk/glad/gl.h +2661 -0
  36. tlrender-0.21.0/deps/ftk/deps/glad_GL_4_1/src/gl.c +1410 -0
  37. tlrender-0.21.0/deps/ftk/deps/glad_GL_4_1_Debug/CMakeLists.txt +28 -0
  38. tlrender-0.21.0/deps/ftk/deps/glad_GL_4_1_Debug/ftk/KHR/khrplatform.h +311 -0
  39. tlrender-0.21.0/deps/ftk/deps/glad_GL_4_1_Debug/ftk/glad/gl.h +3231 -0
  40. tlrender-0.21.0/deps/ftk/deps/glad_GL_4_1_Debug/src/gl.c +5914 -0
  41. tlrender-0.21.0/deps/ftk/etc/Config/ci-linux-gles3.cmake +6 -0
  42. tlrender-0.21.0/deps/ftk/etc/Config/ci-linux-python.cmake +11 -0
  43. tlrender-0.21.0/deps/ftk/etc/Config/ci-linux-sdl2.cmake +5 -0
  44. tlrender-0.21.0/deps/ftk/etc/Config/ci-linux.cmake +6 -0
  45. tlrender-0.21.0/deps/ftk/etc/Config/ci-macos-python.cmake +11 -0
  46. tlrender-0.21.0/deps/ftk/etc/Config/ci-windows-python.cmake +11 -0
  47. tlrender-0.21.0/deps/ftk/etc/Config/ci.cmake +20 -0
  48. tlrender-0.21.0/deps/ftk/etc/Config/default.cmake +71 -0
  49. tlrender-0.21.0/deps/ftk/etc/Config/wheel.cmake +24 -0
  50. tlrender-0.21.0/deps/ftk/etc/Fonts/NotoMono-Regular.ttf +0 -0
  51. tlrender-0.21.0/deps/ftk/etc/Fonts/NotoSans-Bold.ttf +0 -0
  52. tlrender-0.21.0/deps/ftk/etc/Fonts/NotoSans-Regular.ttf +0 -0
  53. tlrender-0.21.0/deps/ftk/etc/Fonts/NotoSansCJK-Regular.otf +0 -0
  54. tlrender-0.21.0/deps/ftk/etc/Fonts/NotoSansMono-Regular.ttf +0 -0
  55. tlrender-0.21.0/deps/ftk/etc/Fonts/NotoSansSymbols2-Regular.ttf +0 -0
  56. tlrender-0.21.0/deps/ftk/etc/Icons/Add.svg +81 -0
  57. tlrender-0.21.0/deps/ftk/etc/Icons/AddSmall.svg +81 -0
  58. tlrender-0.21.0/deps/ftk/etc/Icons/ArrowDown.svg +80 -0
  59. tlrender-0.21.0/deps/ftk/etc/Icons/ArrowLeft.svg +80 -0
  60. tlrender-0.21.0/deps/ftk/etc/Icons/ArrowRight.svg +80 -0
  61. tlrender-0.21.0/deps/ftk/etc/Icons/ArrowUp.svg +80 -0
  62. tlrender-0.21.0/deps/ftk/etc/Icons/Audio.svg +80 -0
  63. tlrender-0.21.0/deps/ftk/etc/Icons/BellowsClosed.svg +82 -0
  64. tlrender-0.21.0/deps/ftk/etc/Icons/BellowsOpen.svg +85 -0
  65. tlrender-0.21.0/deps/ftk/etc/Icons/Clear.svg +76 -0
  66. tlrender-0.21.0/deps/ftk/etc/Icons/ClearSmall.svg +81 -0
  67. tlrender-0.21.0/deps/ftk/etc/Icons/Close.svg +81 -0
  68. tlrender-0.21.0/deps/ftk/etc/Icons/CloseSmall.svg +81 -0
  69. tlrender-0.21.0/deps/ftk/etc/Icons/Copy.svg +85 -0
  70. tlrender-0.21.0/deps/ftk/etc/Icons/Cut.svg +85 -0
  71. tlrender-0.21.0/deps/ftk/etc/Icons/Decrement.svg +78 -0
  72. tlrender-0.21.0/deps/ftk/etc/Icons/Directory.svg +80 -0
  73. tlrender-0.21.0/deps/ftk/etc/Icons/DirectoryBack.svg +80 -0
  74. tlrender-0.21.0/deps/ftk/etc/Icons/DirectoryForward.svg +80 -0
  75. tlrender-0.21.0/deps/ftk/etc/Icons/DirectoryUp.svg +80 -0
  76. tlrender-0.21.0/deps/ftk/etc/Icons/Edit.svg +75 -0
  77. tlrender-0.21.0/deps/ftk/etc/Icons/Empty.svg +75 -0
  78. tlrender-0.21.0/deps/ftk/etc/Icons/File.svg +113 -0
  79. tlrender-0.21.0/deps/ftk/etc/Icons/FileBrowser.svg +74 -0
  80. tlrender-0.21.0/deps/ftk/etc/Icons/FileClose.svg +85 -0
  81. tlrender-0.21.0/deps/ftk/etc/Icons/FileCloseAll.svg +106 -0
  82. tlrender-0.21.0/deps/ftk/etc/Icons/FileNew.svg +142 -0
  83. tlrender-0.21.0/deps/ftk/etc/Icons/FileOpen.svg +85 -0
  84. tlrender-0.21.0/deps/ftk/etc/Icons/FileReload.svg +88 -0
  85. tlrender-0.21.0/deps/ftk/etc/Icons/FileSave.svg +85 -0
  86. tlrender-0.21.0/deps/ftk/etc/Icons/FrameEnd.svg +92 -0
  87. tlrender-0.21.0/deps/ftk/etc/Icons/FrameInOut.svg +106 -0
  88. tlrender-0.21.0/deps/ftk/etc/Icons/FrameNext.svg +90 -0
  89. tlrender-0.21.0/deps/ftk/etc/Icons/FramePrev.svg +90 -0
  90. tlrender-0.21.0/deps/ftk/etc/Icons/FrameStart.svg +91 -0
  91. tlrender-0.21.0/deps/ftk/etc/Icons/Increment.svg +78 -0
  92. tlrender-0.21.0/deps/ftk/etc/Icons/Info.svg +80 -0
  93. tlrender-0.21.0/deps/ftk/etc/Icons/MenuArrow.svg +81 -0
  94. tlrender-0.21.0/deps/ftk/etc/Icons/MenuChecked.svg +82 -0
  95. tlrender-0.21.0/deps/ftk/etc/Icons/Mute.svg +89 -0
  96. tlrender-0.21.0/deps/ftk/etc/Icons/Next.svg +81 -0
  97. tlrender-0.21.0/deps/ftk/etc/Icons/PanelBottom.svg +83 -0
  98. tlrender-0.21.0/deps/ftk/etc/Icons/PanelLeft.svg +83 -0
  99. tlrender-0.21.0/deps/ftk/etc/Icons/PanelRight.svg +83 -0
  100. tlrender-0.21.0/deps/ftk/etc/Icons/PanelTop.svg +83 -0
  101. tlrender-0.21.0/deps/ftk/etc/Icons/Paste.svg +85 -0
  102. tlrender-0.21.0/deps/ftk/etc/Icons/PlaybackForward.svg +64 -0
  103. tlrender-0.21.0/deps/ftk/etc/Icons/PlaybackReverse.svg +79 -0
  104. tlrender-0.21.0/deps/ftk/etc/Icons/PlaybackStop.svg +84 -0
  105. tlrender-0.21.0/deps/ftk/etc/Icons/Prev.svg +80 -0
  106. tlrender-0.21.0/deps/ftk/etc/Icons/Redo.svg +85 -0
  107. tlrender-0.21.0/deps/ftk/etc/Icons/Reload.svg +90 -0
  108. tlrender-0.21.0/deps/ftk/etc/Icons/Remove.svg +81 -0
  109. tlrender-0.21.0/deps/ftk/etc/Icons/RemoveSmall.svg +81 -0
  110. tlrender-0.21.0/deps/ftk/etc/Icons/Reset.svg +63 -0
  111. tlrender-0.21.0/deps/ftk/etc/Icons/ReverseSort.svg +87 -0
  112. tlrender-0.21.0/deps/ftk/etc/Icons/Search.svg +86 -0
  113. tlrender-0.21.0/deps/ftk/etc/Icons/Settings.svg +77 -0
  114. tlrender-0.21.0/deps/ftk/etc/Icons/Shuttle0.svg +80 -0
  115. tlrender-0.21.0/deps/ftk/etc/Icons/Shuttle1.svg +81 -0
  116. tlrender-0.21.0/deps/ftk/etc/Icons/Shuttle2.svg +81 -0
  117. tlrender-0.21.0/deps/ftk/etc/Icons/Shuttle3.svg +81 -0
  118. tlrender-0.21.0/deps/ftk/etc/Icons/Shuttle4.svg +81 -0
  119. tlrender-0.21.0/deps/ftk/etc/Icons/Shuttle5.svg +81 -0
  120. tlrender-0.21.0/deps/ftk/etc/Icons/Shuttle6.svg +81 -0
  121. tlrender-0.21.0/deps/ftk/etc/Icons/Shuttle7.svg +81 -0
  122. tlrender-0.21.0/deps/ftk/etc/Icons/SubMenuArrow.svg +75 -0
  123. tlrender-0.21.0/deps/ftk/etc/Icons/Time.svg +86 -0
  124. tlrender-0.21.0/deps/ftk/etc/Icons/TimeEnd.svg +90 -0
  125. tlrender-0.21.0/deps/ftk/etc/Icons/TimeStart.svg +90 -0
  126. tlrender-0.21.0/deps/ftk/etc/Icons/Undo.svg +84 -0
  127. tlrender-0.21.0/deps/ftk/etc/Icons/ViewFrame.svg +97 -0
  128. tlrender-0.21.0/deps/ftk/etc/Icons/ViewZoomIn.svg +99 -0
  129. tlrender-0.21.0/deps/ftk/etc/Icons/ViewZoomOut.svg +97 -0
  130. tlrender-0.21.0/deps/ftk/etc/Icons/ViewZoomReset.svg +97 -0
  131. tlrender-0.21.0/deps/ftk/etc/Icons/Volume.svg +78 -0
  132. tlrender-0.21.0/deps/ftk/etc/Icons/WindowFullScreen.svg +89 -0
  133. tlrender-0.21.0/deps/ftk/etc/Icons/feather_tk_32.png +0 -0
  134. tlrender-0.21.0/deps/ftk/etc/Icons/feather_tk_32.svg +41 -0
  135. tlrender-0.21.0/deps/ftk/etc/Icons/feather_tk_512.svg +67 -0
  136. tlrender-0.21.0/deps/ftk/etc/Images/Charlie.png +0 -0
  137. tlrender-0.21.0/deps/ftk/etc/Images/TestDrawing.svg +89 -0
  138. tlrender-0.21.0/deps/ftk/etc/Images/imageview.png +0 -0
  139. tlrender-0.21.0/deps/ftk/etc/Images/objview.png +0 -0
  140. tlrender-0.21.0/deps/ftk/etc/Images/textedit.png +0 -0
  141. tlrender-0.21.0/deps/ftk/etc/Images/widgets.png +0 -0
  142. tlrender-0.21.0/deps/ftk/etc/Legal/CMakeLists.txt +16 -0
  143. tlrender-0.21.0/deps/ftk/etc/Legal/LICENSE_CMake.txt +132 -0
  144. tlrender-0.21.0/deps/ftk/etc/Legal/LICENSE_FreeType.txt +169 -0
  145. tlrender-0.21.0/deps/ftk/etc/Legal/LICENSE_OFL.txt +93 -0
  146. tlrender-0.21.0/deps/ftk/etc/Legal/LICENSE_SDL2.txt +18 -0
  147. tlrender-0.21.0/deps/ftk/etc/Legal/LICENSE_feather-tk.txt +26 -0
  148. tlrender-0.21.0/deps/ftk/etc/Legal/LICENSE_glad.txt +21 -0
  149. tlrender-0.21.0/deps/ftk/etc/Legal/LICENSE_libpng.txt +134 -0
  150. tlrender-0.21.0/deps/ftk/etc/Legal/LICENSE_lunasvg.txt +21 -0
  151. tlrender-0.21.0/deps/ftk/etc/Legal/LICENSE_nlohmann_json.txt +21 -0
  152. tlrender-0.21.0/deps/ftk/etc/Legal/LICENSE_plutovg.txt +21 -0
  153. tlrender-0.21.0/deps/ftk/etc/Legal/LICENSE_zlib.txt +21 -0
  154. tlrender-0.21.0/deps/ftk/etc/Linux/lcov.sh +12 -0
  155. tlrender-0.21.0/deps/ftk/etc/Linux/sbuild.sh +38 -0
  156. tlrender-0.21.0/deps/ftk/etc/Linux/setup-gha.sh +15 -0
  157. tlrender-0.21.0/deps/ftk/etc/Linux/stats.sh +5 -0
  158. tlrender-0.21.0/deps/ftk/etc/Objects/Bolt.obj +20856 -0
  159. tlrender-0.21.0/deps/ftk/etc/Objects/Cube.obj +35 -0
  160. tlrender-0.21.0/deps/ftk/etc/Objects/Square.obj +16 -0
  161. tlrender-0.21.0/deps/ftk/etc/Python/ftkWheelDeps.cmake +72 -0
  162. tlrender-0.21.0/deps/ftk/etc/SuperBuild/CMakeLists.txt +143 -0
  163. tlrender-0.21.0/deps/ftk/etc/SuperBuild/ZLIB-patch/CMakeLists.txt +221 -0
  164. tlrender-0.21.0/deps/ftk/etc/SuperBuild/ZLIB-patch/zconf.h.cmakein +541 -0
  165. tlrender-0.21.0/deps/ftk/etc/SuperBuild/cmake/Modules/BuildFreetype.cmake +26 -0
  166. tlrender-0.21.0/deps/ftk/etc/SuperBuild/cmake/Modules/BuildPNG.cmake +38 -0
  167. tlrender-0.21.0/deps/ftk/etc/SuperBuild/cmake/Modules/BuildSDL2.cmake +35 -0
  168. tlrender-0.21.0/deps/ftk/etc/SuperBuild/cmake/Modules/BuildSDL3.cmake +57 -0
  169. tlrender-0.21.0/deps/ftk/etc/SuperBuild/cmake/Modules/BuildZLIB.cmake +26 -0
  170. tlrender-0.21.0/deps/ftk/etc/SuperBuild/cmake/Modules/Buildlunasvg.cmake +17 -0
  171. tlrender-0.21.0/deps/ftk/etc/SuperBuild/cmake/Modules/Buildnanobind.cmake +17 -0
  172. tlrender-0.21.0/deps/ftk/etc/SuperBuild/cmake/Modules/Buildnfd.cmake +17 -0
  173. tlrender-0.21.0/deps/ftk/etc/SuperBuild/cmake/Modules/Buildnlohmann_json.cmake +15 -0
  174. tlrender-0.21.0/deps/ftk/etc/Web/gallery.html +40 -0
  175. tlrender-0.21.0/deps/ftk/etc/Web/index.html.in +93 -0
  176. tlrender-0.21.0/deps/ftk/etc/Windows/sbuild.bat +31 -0
  177. tlrender-0.21.0/deps/ftk/etc/macOS/sbuild.sh +38 -0
  178. tlrender-0.21.0/deps/ftk/examples/CMakeLists.txt +37 -0
  179. tlrender-0.21.0/deps/ftk/examples/gfx/App.cpp +51 -0
  180. tlrender-0.21.0/deps/ftk/examples/gfx/App.h +38 -0
  181. tlrender-0.21.0/deps/ftk/examples/gfx/CMakeLists.txt +26 -0
  182. tlrender-0.21.0/deps/ftk/examples/gfx/GOL.cpp +200 -0
  183. tlrender-0.21.0/deps/ftk/examples/gfx/GOL.h +48 -0
  184. tlrender-0.21.0/deps/ftk/examples/gfx/MainWindow.cpp +39 -0
  185. tlrender-0.21.0/deps/ftk/examples/gfx/MainWindow.h +36 -0
  186. tlrender-0.21.0/deps/ftk/examples/gfx/Noise.cpp +99 -0
  187. tlrender-0.21.0/deps/ftk/examples/gfx/Noise.h +41 -0
  188. tlrender-0.21.0/deps/ftk/examples/gfx/main.cpp +23 -0
  189. tlrender-0.21.0/deps/ftk/examples/imageview/Actions.cpp +351 -0
  190. tlrender-0.21.0/deps/ftk/examples/imageview/Actions.h +76 -0
  191. tlrender-0.21.0/deps/ftk/examples/imageview/App.cpp +189 -0
  192. tlrender-0.21.0/deps/ftk/examples/imageview/App.h +85 -0
  193. tlrender-0.21.0/deps/ftk/examples/imageview/CMakeLists.txt +42 -0
  194. tlrender-0.21.0/deps/ftk/examples/imageview/Document.cpp +56 -0
  195. tlrender-0.21.0/deps/ftk/examples/imageview/Document.h +52 -0
  196. tlrender-0.21.0/deps/ftk/examples/imageview/DocumentTabs.cpp +138 -0
  197. tlrender-0.21.0/deps/ftk/examples/imageview/DocumentTabs.h +56 -0
  198. tlrender-0.21.0/deps/ftk/examples/imageview/ImageView.cpp +163 -0
  199. tlrender-0.21.0/deps/ftk/examples/imageview/ImageView.h +69 -0
  200. tlrender-0.21.0/deps/ftk/examples/imageview/MainWindow.cpp +128 -0
  201. tlrender-0.21.0/deps/ftk/examples/imageview/MainWindow.h +72 -0
  202. tlrender-0.21.0/deps/ftk/examples/imageview/MenuBar.cpp +116 -0
  203. tlrender-0.21.0/deps/ftk/examples/imageview/MenuBar.h +57 -0
  204. tlrender-0.21.0/deps/ftk/examples/imageview/Settings.cpp +57 -0
  205. tlrender-0.21.0/deps/ftk/examples/imageview/Settings.h +36 -0
  206. tlrender-0.21.0/deps/ftk/examples/imageview/SettingsModel.cpp +126 -0
  207. tlrender-0.21.0/deps/ftk/examples/imageview/SettingsModel.h +62 -0
  208. tlrender-0.21.0/deps/ftk/examples/imageview/SettingsWidget.cpp +135 -0
  209. tlrender-0.21.0/deps/ftk/examples/imageview/SettingsWidget.h +49 -0
  210. tlrender-0.21.0/deps/ftk/examples/imageview/StatusBar.cpp +71 -0
  211. tlrender-0.21.0/deps/ftk/examples/imageview/StatusBar.h +42 -0
  212. tlrender-0.21.0/deps/ftk/examples/imageview/ToolBar.cpp +96 -0
  213. tlrender-0.21.0/deps/ftk/examples/imageview/ToolBar.h +49 -0
  214. tlrender-0.21.0/deps/ftk/examples/imageview/main.cpp +23 -0
  215. tlrender-0.21.0/deps/ftk/examples/objview/Actions.cpp +379 -0
  216. tlrender-0.21.0/deps/ftk/examples/objview/Actions.h +76 -0
  217. tlrender-0.21.0/deps/ftk/examples/objview/App.cpp +189 -0
  218. tlrender-0.21.0/deps/ftk/examples/objview/App.h +85 -0
  219. tlrender-0.21.0/deps/ftk/examples/objview/CMakeLists.txt +44 -0
  220. tlrender-0.21.0/deps/ftk/examples/objview/Document.cpp +69 -0
  221. tlrender-0.21.0/deps/ftk/examples/objview/Document.h +62 -0
  222. tlrender-0.21.0/deps/ftk/examples/objview/DocumentTabs.cpp +131 -0
  223. tlrender-0.21.0/deps/ftk/examples/objview/DocumentTabs.h +55 -0
  224. tlrender-0.21.0/deps/ftk/examples/objview/HUDWidget.cpp +95 -0
  225. tlrender-0.21.0/deps/ftk/examples/objview/HUDWidget.h +42 -0
  226. tlrender-0.21.0/deps/ftk/examples/objview/MainWindow.cpp +124 -0
  227. tlrender-0.21.0/deps/ftk/examples/objview/MainWindow.h +71 -0
  228. tlrender-0.21.0/deps/ftk/examples/objview/MenuBar.cpp +133 -0
  229. tlrender-0.21.0/deps/ftk/examples/objview/MenuBar.h +60 -0
  230. tlrender-0.21.0/deps/ftk/examples/objview/ObjIO.cpp +71 -0
  231. tlrender-0.21.0/deps/ftk/examples/objview/ObjIO.h +18 -0
  232. tlrender-0.21.0/deps/ftk/examples/objview/ObjView.cpp +615 -0
  233. tlrender-0.21.0/deps/ftk/examples/objview/ObjView.h +104 -0
  234. tlrender-0.21.0/deps/ftk/examples/objview/Settings.cpp +91 -0
  235. tlrender-0.21.0/deps/ftk/examples/objview/Settings.h +64 -0
  236. tlrender-0.21.0/deps/ftk/examples/objview/SettingsModel.cpp +133 -0
  237. tlrender-0.21.0/deps/ftk/examples/objview/SettingsModel.h +72 -0
  238. tlrender-0.21.0/deps/ftk/examples/objview/SettingsWidget.cpp +135 -0
  239. tlrender-0.21.0/deps/ftk/examples/objview/SettingsWidget.h +50 -0
  240. tlrender-0.21.0/deps/ftk/examples/objview/ToolBar.cpp +207 -0
  241. tlrender-0.21.0/deps/ftk/examples/objview/ToolBar.h +66 -0
  242. tlrender-0.21.0/deps/ftk/examples/objview/main.cpp +21 -0
  243. tlrender-0.21.0/deps/ftk/examples/panel/CMakeLists.txt +19 -0
  244. tlrender-0.21.0/deps/ftk/examples/panel/panel.cpp +92 -0
  245. tlrender-0.21.0/deps/ftk/examples/panel/panel.json +26 -0
  246. tlrender-0.21.0/deps/ftk/examples/preview/CMakeLists.txt +22 -0
  247. tlrender-0.21.0/deps/ftk/examples/preview/preview.cpp +162 -0
  248. tlrender-0.21.0/deps/ftk/examples/preview/preview.json +43 -0
  249. tlrender-0.21.0/deps/ftk/examples/python/CMakeLists.txt +46 -0
  250. tlrender-0.21.0/deps/ftk/examples/python/bellows.py +72 -0
  251. tlrender-0.21.0/deps/ftk/examples/python/buttons.py +97 -0
  252. tlrender-0.21.0/deps/ftk/examples/python/dialogs.py +89 -0
  253. tlrender-0.21.0/deps/ftk/examples/python/icons.py +43 -0
  254. tlrender-0.21.0/deps/ftk/examples/python/mdi.py +61 -0
  255. tlrender-0.21.0/deps/ftk/examples/python/panel.json +26 -0
  256. tlrender-0.21.0/deps/ftk/examples/python/panel.py +55 -0
  257. tlrender-0.21.0/deps/ftk/examples/python/simple.py +27 -0
  258. tlrender-0.21.0/deps/ftk/examples/python/sliders.py +82 -0
  259. tlrender-0.21.0/deps/ftk/examples/python/tabs.py +37 -0
  260. tlrender-0.21.0/deps/ftk/examples/python/testing.py +95 -0
  261. tlrender-0.21.0/deps/ftk/examples/python/textedit.py +795 -0
  262. tlrender-0.21.0/deps/ftk/examples/simple/CMakeLists.txt +13 -0
  263. tlrender-0.21.0/deps/ftk/examples/simple/simple.cpp +46 -0
  264. tlrender-0.21.0/deps/ftk/examples/textedit/Actions.cpp +362 -0
  265. tlrender-0.21.0/deps/ftk/examples/textedit/Actions.h +69 -0
  266. tlrender-0.21.0/deps/ftk/examples/textedit/App.cpp +365 -0
  267. tlrender-0.21.0/deps/ftk/examples/textedit/App.h +88 -0
  268. tlrender-0.21.0/deps/ftk/examples/textedit/CMakeLists.txt +40 -0
  269. tlrender-0.21.0/deps/ftk/examples/textedit/Document.cpp +125 -0
  270. tlrender-0.21.0/deps/ftk/examples/textedit/Document.h +71 -0
  271. tlrender-0.21.0/deps/ftk/examples/textedit/DocumentTabs.cpp +160 -0
  272. tlrender-0.21.0/deps/ftk/examples/textedit/DocumentTabs.h +51 -0
  273. tlrender-0.21.0/deps/ftk/examples/textedit/MainWindow.cpp +115 -0
  274. tlrender-0.21.0/deps/ftk/examples/textedit/MainWindow.h +62 -0
  275. tlrender-0.21.0/deps/ftk/examples/textedit/MenuBar.cpp +112 -0
  276. tlrender-0.21.0/deps/ftk/examples/textedit/MenuBar.h +54 -0
  277. tlrender-0.21.0/deps/ftk/examples/textedit/Settings.cpp +57 -0
  278. tlrender-0.21.0/deps/ftk/examples/textedit/Settings.h +36 -0
  279. tlrender-0.21.0/deps/ftk/examples/textedit/SettingsModel.cpp +149 -0
  280. tlrender-0.21.0/deps/ftk/examples/textedit/SettingsModel.h +78 -0
  281. tlrender-0.21.0/deps/ftk/examples/textedit/SettingsWidget.cpp +209 -0
  282. tlrender-0.21.0/deps/ftk/examples/textedit/SettingsWidget.h +54 -0
  283. tlrender-0.21.0/deps/ftk/examples/textedit/StatusBar.cpp +92 -0
  284. tlrender-0.21.0/deps/ftk/examples/textedit/StatusBar.h +51 -0
  285. tlrender-0.21.0/deps/ftk/examples/textedit/ToolBar.cpp +68 -0
  286. tlrender-0.21.0/deps/ftk/examples/textedit/ToolBar.h +39 -0
  287. tlrender-0.21.0/deps/ftk/examples/textedit/main.cpp +23 -0
  288. tlrender-0.21.0/deps/ftk/examples/widgets/App.cpp +61 -0
  289. tlrender-0.21.0/deps/ftk/examples/widgets/App.h +40 -0
  290. tlrender-0.21.0/deps/ftk/examples/widgets/Buttons.cpp +169 -0
  291. tlrender-0.21.0/deps/ftk/examples/widgets/Buttons.h +39 -0
  292. tlrender-0.21.0/deps/ftk/examples/widgets/CMakeLists.txt +52 -0
  293. tlrender-0.21.0/deps/ftk/examples/widgets/Dialogs.cpp +177 -0
  294. tlrender-0.21.0/deps/ftk/examples/widgets/Dialogs.h +41 -0
  295. tlrender-0.21.0/deps/ftk/examples/widgets/DragDrop.cpp +347 -0
  296. tlrender-0.21.0/deps/ftk/examples/widgets/DragDrop.h +121 -0
  297. tlrender-0.21.0/deps/ftk/examples/widgets/Fonts.cpp +114 -0
  298. tlrender-0.21.0/deps/ftk/examples/widgets/Fonts.h +43 -0
  299. tlrender-0.21.0/deps/ftk/examples/widgets/Graphs.cpp +50 -0
  300. tlrender-0.21.0/deps/ftk/examples/widgets/Graphs.h +40 -0
  301. tlrender-0.21.0/deps/ftk/examples/widgets/Icons.cpp +69 -0
  302. tlrender-0.21.0/deps/ftk/examples/widgets/Icons.h +36 -0
  303. tlrender-0.21.0/deps/ftk/examples/widgets/Images.cpp +125 -0
  304. tlrender-0.21.0/deps/ftk/examples/widgets/Images.h +36 -0
  305. tlrender-0.21.0/deps/ftk/examples/widgets/Layouts.cpp +117 -0
  306. tlrender-0.21.0/deps/ftk/examples/widgets/Layouts.h +36 -0
  307. tlrender-0.21.0/deps/ftk/examples/widgets/Lists.cpp +106 -0
  308. tlrender-0.21.0/deps/ftk/examples/widgets/Lists.h +36 -0
  309. tlrender-0.21.0/deps/ftk/examples/widgets/MDI.cpp +94 -0
  310. tlrender-0.21.0/deps/ftk/examples/widgets/MDI.h +40 -0
  311. tlrender-0.21.0/deps/ftk/examples/widgets/MainWindow.cpp +194 -0
  312. tlrender-0.21.0/deps/ftk/examples/widgets/MainWindow.h +46 -0
  313. tlrender-0.21.0/deps/ftk/examples/widgets/Offscreen.cpp +215 -0
  314. tlrender-0.21.0/deps/ftk/examples/widgets/Offscreen.h +44 -0
  315. tlrender-0.21.0/deps/ftk/examples/widgets/Popups.cpp +97 -0
  316. tlrender-0.21.0/deps/ftk/examples/widgets/Popups.h +37 -0
  317. tlrender-0.21.0/deps/ftk/examples/widgets/Sliders.cpp +165 -0
  318. tlrender-0.21.0/deps/ftk/examples/widgets/Sliders.h +36 -0
  319. tlrender-0.21.0/deps/ftk/examples/widgets/Splitters.cpp +67 -0
  320. tlrender-0.21.0/deps/ftk/examples/widgets/Splitters.h +36 -0
  321. tlrender-0.21.0/deps/ftk/examples/widgets/SysLog.cpp +69 -0
  322. tlrender-0.21.0/deps/ftk/examples/widgets/SysLog.h +38 -0
  323. tlrender-0.21.0/deps/ftk/examples/widgets/main.cpp +32 -0
  324. tlrender-0.21.0/deps/ftk/examples/windows/CMakeLists.txt +13 -0
  325. tlrender-0.21.0/deps/ftk/examples/windows/windows.cpp +135 -0
  326. tlrender-0.21.0/deps/ftk/ftkConfig.cmake.in +65 -0
  327. tlrender-0.21.0/deps/ftk/lib/ftk/CMakeLists.txt +46 -0
  328. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Assert.cpp +17 -0
  329. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Assert.h +35 -0
  330. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Box.cpp +123 -0
  331. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Box.h +188 -0
  332. tlrender-0.21.0/deps/ftk/lib/ftk/Core/BoxInline.h +469 -0
  333. tlrender-0.21.0/deps/ftk/lib/ftk/Core/BoxPack.cpp +179 -0
  334. tlrender-0.21.0/deps/ftk/lib/ftk/Core/BoxPack.h +87 -0
  335. tlrender-0.21.0/deps/ftk/lib/ftk/Core/CMakeLists.txt +171 -0
  336. tlrender-0.21.0/deps/ftk/lib/ftk/Core/CmdLine.cpp +121 -0
  337. tlrender-0.21.0/deps/ftk/lib/ftk/Core/CmdLine.h +246 -0
  338. tlrender-0.21.0/deps/ftk/lib/ftk/Core/CmdLineInline.h +354 -0
  339. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Color.cpp +306 -0
  340. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Color.h +184 -0
  341. tlrender-0.21.0/deps/ftk/lib/ftk/Core/ColorInline.h +280 -0
  342. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Command.cpp +96 -0
  343. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Command.h +66 -0
  344. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Context.cpp +116 -0
  345. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Context.h +82 -0
  346. tlrender-0.21.0/deps/ftk/lib/ftk/Core/ContextInline.h +23 -0
  347. tlrender-0.21.0/deps/ftk/lib/ftk/Core/DiagSystem.cpp +251 -0
  348. tlrender-0.21.0/deps/ftk/lib/ftk/Core/DiagSystem.h +107 -0
  349. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Error.cpp +11 -0
  350. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Error.h +28 -0
  351. tlrender-0.21.0/deps/ftk/lib/ftk/Core/ErrorWin32.cpp +39 -0
  352. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Export.h +69 -0
  353. tlrender-0.21.0/deps/ftk/lib/ftk/Core/FileIO.cpp +302 -0
  354. tlrender-0.21.0/deps/ftk/lib/ftk/Core/FileIO.h +274 -0
  355. tlrender-0.21.0/deps/ftk/lib/ftk/Core/FileIOInline.h +12 -0
  356. tlrender-0.21.0/deps/ftk/lib/ftk/Core/FileIOUnix.cpp +570 -0
  357. tlrender-0.21.0/deps/ftk/lib/ftk/Core/FileIOWin32.cpp +668 -0
  358. tlrender-0.21.0/deps/ftk/lib/ftk/Core/FileLogSystem.cpp +201 -0
  359. tlrender-0.21.0/deps/ftk/lib/ftk/Core/FileLogSystem.h +34 -0
  360. tlrender-0.21.0/deps/ftk/lib/ftk/Core/FontSystem.cpp +682 -0
  361. tlrender-0.21.0/deps/ftk/lib/ftk/Core/FontSystem.h +198 -0
  362. tlrender-0.21.0/deps/ftk/lib/ftk/Core/FontSystemInline.h +25 -0
  363. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Format.cpp +151 -0
  364. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Format.h +69 -0
  365. tlrender-0.21.0/deps/ftk/lib/ftk/Core/FormatInline.h +35 -0
  366. tlrender-0.21.0/deps/ftk/lib/ftk/Core/IApp.cpp +364 -0
  367. tlrender-0.21.0/deps/ftk/lib/ftk/Core/IApp.h +83 -0
  368. tlrender-0.21.0/deps/ftk/lib/ftk/Core/IBaseSystem.cpp +28 -0
  369. tlrender-0.21.0/deps/ftk/lib/ftk/Core/IBaseSystem.h +63 -0
  370. tlrender-0.21.0/deps/ftk/lib/ftk/Core/IBaseSystemInline.h +15 -0
  371. tlrender-0.21.0/deps/ftk/lib/ftk/Core/IRender.cpp +97 -0
  372. tlrender-0.21.0/deps/ftk/lib/ftk/Core/IRender.h +236 -0
  373. tlrender-0.21.0/deps/ftk/lib/ftk/Core/ISystem.cpp +35 -0
  374. tlrender-0.21.0/deps/ftk/lib/ftk/Core/ISystem.h +29 -0
  375. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Image.cpp +304 -0
  376. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Image.h +272 -0
  377. tlrender-0.21.0/deps/ftk/lib/ftk/Core/ImageIO.cpp +193 -0
  378. tlrender-0.21.0/deps/ftk/lib/ftk/Core/ImageIO.h +148 -0
  379. tlrender-0.21.0/deps/ftk/lib/ftk/Core/ImageInline.h +96 -0
  380. tlrender-0.21.0/deps/ftk/lib/ftk/Core/LRUCache.h +76 -0
  381. tlrender-0.21.0/deps/ftk/lib/ftk/Core/LRUCacheInline.h +155 -0
  382. tlrender-0.21.0/deps/ftk/lib/ftk/Core/LogSystem.cpp +118 -0
  383. tlrender-0.21.0/deps/ftk/lib/ftk/Core/LogSystem.h +91 -0
  384. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Math.cpp +37 -0
  385. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Math.h +54 -0
  386. tlrender-0.21.0/deps/ftk/lib/ftk/Core/MathInline.h +41 -0
  387. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Matrix.cpp +44 -0
  388. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Matrix.h +181 -0
  389. tlrender-0.21.0/deps/ftk/lib/ftk/Core/MatrixInline.h +605 -0
  390. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Memory.cpp +169 -0
  391. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Memory.h +78 -0
  392. tlrender-0.21.0/deps/ftk/lib/ftk/Core/MemoryInline.h +43 -0
  393. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Mesh.cpp +214 -0
  394. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Mesh.h +122 -0
  395. tlrender-0.21.0/deps/ftk/lib/ftk/Core/MeshInline.h +60 -0
  396. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Noise.cpp +86 -0
  397. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Noise.h +31 -0
  398. tlrender-0.21.0/deps/ftk/lib/ftk/Core/OS.cpp +31 -0
  399. tlrender-0.21.0/deps/ftk/lib/ftk/Core/OS.h +79 -0
  400. tlrender-0.21.0/deps/ftk/lib/ftk/Core/OSUnix.cpp +240 -0
  401. tlrender-0.21.0/deps/ftk/lib/ftk/Core/OSWin32.cpp +240 -0
  402. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Observable.h +116 -0
  403. tlrender-0.21.0/deps/ftk/lib/ftk/Core/ObservableInline.h +156 -0
  404. tlrender-0.21.0/deps/ftk/lib/ftk/Core/ObservableList.h +162 -0
  405. tlrender-0.21.0/deps/ftk/lib/ftk/Core/ObservableListInline.h +270 -0
  406. tlrender-0.21.0/deps/ftk/lib/ftk/Core/ObservableMap.h +135 -0
  407. tlrender-0.21.0/deps/ftk/lib/ftk/Core/ObservableMapInline.h +223 -0
  408. tlrender-0.21.0/deps/ftk/lib/ftk/Core/PNG.cpp +80 -0
  409. tlrender-0.21.0/deps/ftk/lib/ftk/Core/PNG.h +78 -0
  410. tlrender-0.21.0/deps/ftk/lib/ftk/Core/PNGPrivate.h +26 -0
  411. tlrender-0.21.0/deps/ftk/lib/ftk/Core/PNGRead.cpp +308 -0
  412. tlrender-0.21.0/deps/ftk/lib/ftk/Core/PNGWrite.cpp +189 -0
  413. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Path.cpp +1090 -0
  414. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Path.h +431 -0
  415. tlrender-0.21.0/deps/ftk/lib/ftk/Core/PathInline.h +181 -0
  416. tlrender-0.21.0/deps/ftk/lib/ftk/Core/PathMacOS.mm +40 -0
  417. tlrender-0.21.0/deps/ftk/lib/ftk/Core/PathMacOSPrivate.h +11 -0
  418. tlrender-0.21.0/deps/ftk/lib/ftk/Core/PathUnix.cpp +107 -0
  419. tlrender-0.21.0/deps/ftk/lib/ftk/Core/PathWin32.cpp +102 -0
  420. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Random.cpp +81 -0
  421. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Random.h +52 -0
  422. tlrender-0.21.0/deps/ftk/lib/ftk/Core/RandomInline.h +11 -0
  423. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Range.cpp +57 -0
  424. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Range.h +84 -0
  425. tlrender-0.21.0/deps/ftk/lib/ftk/Core/RangeInline.h +116 -0
  426. tlrender-0.21.0/deps/ftk/lib/ftk/Core/RenderOptions.cpp +70 -0
  427. tlrender-0.21.0/deps/ftk/lib/ftk/Core/RenderOptions.h +145 -0
  428. tlrender-0.21.0/deps/ftk/lib/ftk/Core/RenderOptionsInline.h +7 -0
  429. tlrender-0.21.0/deps/ftk/lib/ftk/Core/RenderUtil.cpp +114 -0
  430. tlrender-0.21.0/deps/ftk/lib/ftk/Core/RenderUtil.h +82 -0
  431. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Size.cpp +106 -0
  432. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Size.h +138 -0
  433. tlrender-0.21.0/deps/ftk/lib/ftk/Core/SizeInline.h +245 -0
  434. tlrender-0.21.0/deps/ftk/lib/ftk/Core/String.cpp +542 -0
  435. tlrender-0.21.0/deps/ftk/lib/ftk/Core/String.h +150 -0
  436. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Time.cpp +54 -0
  437. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Time.h +30 -0
  438. tlrender-0.21.0/deps/ftk/lib/ftk/Core/TimeUnix.cpp +14 -0
  439. tlrender-0.21.0/deps/ftk/lib/ftk/Core/TimeWin32.cpp +26 -0
  440. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Timer.cpp +192 -0
  441. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Timer.h +88 -0
  442. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Util.h +117 -0
  443. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Vector.cpp +141 -0
  444. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Vector.h +182 -0
  445. tlrender-0.21.0/deps/ftk/lib/ftk/Core/VectorInline.h +364 -0
  446. tlrender-0.21.0/deps/ftk/lib/ftk/Core/Version.h +16 -0
  447. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/Bindings.cpp +55 -0
  448. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/Bindings.h +129 -0
  449. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/Box.cpp +173 -0
  450. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/CMakeLists.txt +68 -0
  451. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/CmdLine.cpp +61 -0
  452. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/CmdLineInline.h +66 -0
  453. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/Color.cpp +107 -0
  454. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/Command.cpp +61 -0
  455. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/Context.cpp +35 -0
  456. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/DiagSystem.cpp +67 -0
  457. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/FileLogSystem.cpp +35 -0
  458. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/FontSystem.cpp +95 -0
  459. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/IApp.cpp +36 -0
  460. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/IRender.cpp +73 -0
  461. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/ISystem.cpp +37 -0
  462. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/Image.cpp +126 -0
  463. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/LogSystem.cpp +54 -0
  464. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/Math.cpp +40 -0
  465. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/Matrix.cpp +94 -0
  466. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/Memory.cpp +38 -0
  467. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/Mesh.cpp +88 -0
  468. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/Noise.cpp +25 -0
  469. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/OS.cpp +34 -0
  470. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/Observable.cpp +45 -0
  471. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/ObservableInline.h +50 -0
  472. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/ObservableList.cpp +32 -0
  473. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/ObservableListInline.h +45 -0
  474. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/ObservableMap.cpp +28 -0
  475. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/ObservableMapInline.h +30 -0
  476. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/Path.cpp +185 -0
  477. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/Random.cpp +31 -0
  478. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/Range.cpp +103 -0
  479. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/RenderOptions.cpp +74 -0
  480. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/Size.cpp +122 -0
  481. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/String.cpp +50 -0
  482. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/Time.cpp +42 -0
  483. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/Timer.cpp +47 -0
  484. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/Vector.cpp +166 -0
  485. tlrender-0.21.0/deps/ftk/lib/ftk/CorePy/Version.cpp +27 -0
  486. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/AppTest.cpp +151 -0
  487. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/AppTest.h +27 -0
  488. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/BoxPackTest.cpp +94 -0
  489. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/BoxPackTest.h +36 -0
  490. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/BoxTest.cpp +253 -0
  491. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/BoxTest.h +33 -0
  492. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/CMakeLists.txt +80 -0
  493. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/CmdLineTest.cpp +177 -0
  494. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/CmdLineTest.h +27 -0
  495. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/ColorTest.cpp +270 -0
  496. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/ColorTest.h +33 -0
  497. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/CommandTest.cpp +123 -0
  498. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/CommandTest.h +27 -0
  499. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/ErrorTest.cpp +37 -0
  500. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/ErrorTest.h +27 -0
  501. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/FileIOTest.cpp +453 -0
  502. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/FileIOTest.h +34 -0
  503. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/FontSystemTest.cpp +105 -0
  504. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/FontSystemTest.h +32 -0
  505. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/FormatTest.cpp +58 -0
  506. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/FormatTest.h +27 -0
  507. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/ImageIOTest.cpp +80 -0
  508. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/ImageIOTest.h +31 -0
  509. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/ImageTest.cpp +122 -0
  510. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/ImageTest.h +33 -0
  511. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/LRUCacheTest.cpp +94 -0
  512. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/LRUCacheTest.h +27 -0
  513. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/MathTest.cpp +66 -0
  514. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/MathTest.h +27 -0
  515. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/MatrixTest.cpp +298 -0
  516. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/MatrixTest.h +34 -0
  517. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/MemoryTest.cpp +121 -0
  518. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/MemoryTest.h +32 -0
  519. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/MeshTest.cpp +62 -0
  520. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/MeshTest.h +30 -0
  521. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/NoiseTest.cpp +60 -0
  522. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/NoiseTest.h +27 -0
  523. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/OSTest.cpp +75 -0
  524. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/OSTest.h +31 -0
  525. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/ObservableTest.cpp +179 -0
  526. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/ObservableTest.h +32 -0
  527. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/PNGTest.cpp +107 -0
  528. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/PNGTest.h +27 -0
  529. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/PathTest.cpp +852 -0
  530. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/PathTest.h +40 -0
  531. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/RandomTest.cpp +116 -0
  532. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/RandomTest.h +27 -0
  533. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/RangeTest.cpp +130 -0
  534. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/RangeTest.h +32 -0
  535. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/RenderOptionsTest.cpp +59 -0
  536. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/RenderOptionsTest.h +31 -0
  537. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/RenderUtilTest.cpp +250 -0
  538. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/RenderUtilTest.h +27 -0
  539. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/SizeTest.cpp +185 -0
  540. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/SizeTest.h +33 -0
  541. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/StringTest.cpp +193 -0
  542. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/StringTest.h +34 -0
  543. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/SystemTest.cpp +105 -0
  544. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/SystemTest.h +27 -0
  545. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/TimeTest.cpp +48 -0
  546. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/TimeTest.h +31 -0
  547. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/TimerTest.cpp +78 -0
  548. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/TimerTest.h +27 -0
  549. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/VectorTest.cpp +275 -0
  550. tlrender-0.21.0/deps/ftk/lib/ftk/CoreTest/VectorTest.h +33 -0
  551. tlrender-0.21.0/deps/ftk/lib/ftk/GL/CMakeLists.txt +112 -0
  552. tlrender-0.21.0/deps/ftk/lib/ftk/GL/Export.h +34 -0
  553. tlrender-0.21.0/deps/ftk/lib/ftk/GL/GL.h +11 -0
  554. tlrender-0.21.0/deps/ftk/lib/ftk/GL/Init.cpp +46 -0
  555. tlrender-0.21.0/deps/ftk/lib/ftk/GL/Init.h +25 -0
  556. tlrender-0.21.0/deps/ftk/lib/ftk/GL/Mesh.cpp +777 -0
  557. tlrender-0.21.0/deps/ftk/lib/ftk/GL/Mesh.h +126 -0
  558. tlrender-0.21.0/deps/ftk/lib/ftk/GL/OffscreenBuffer.cpp +439 -0
  559. tlrender-0.21.0/deps/ftk/lib/ftk/GL/OffscreenBuffer.h +171 -0
  560. tlrender-0.21.0/deps/ftk/lib/ftk/GL/Render.cpp +639 -0
  561. tlrender-0.21.0/deps/ftk/lib/ftk/GL/Render.h +181 -0
  562. tlrender-0.21.0/deps/ftk/lib/ftk/GL/RenderPrims.cpp +971 -0
  563. tlrender-0.21.0/deps/ftk/lib/ftk/GL/RenderPrivate.h +107 -0
  564. tlrender-0.21.0/deps/ftk/lib/ftk/GL/RenderShaders_GLES_3.cpp +404 -0
  565. tlrender-0.21.0/deps/ftk/lib/ftk/GL/RenderShaders_GL_4_1.cpp +611 -0
  566. tlrender-0.21.0/deps/ftk/lib/ftk/GL/Shader.cpp +345 -0
  567. tlrender-0.21.0/deps/ftk/lib/ftk/GL/Shader.h +108 -0
  568. tlrender-0.21.0/deps/ftk/lib/ftk/GL/System.cpp +298 -0
  569. tlrender-0.21.0/deps/ftk/lib/ftk/GL/System.h +52 -0
  570. tlrender-0.21.0/deps/ftk/lib/ftk/GL/Texture.cpp +756 -0
  571. tlrender-0.21.0/deps/ftk/lib/ftk/GL/Texture.h +163 -0
  572. tlrender-0.21.0/deps/ftk/lib/ftk/GL/TextureAtlas.cpp +146 -0
  573. tlrender-0.21.0/deps/ftk/lib/ftk/GL/TextureAtlas.h +79 -0
  574. tlrender-0.21.0/deps/ftk/lib/ftk/GL/Util.cpp +309 -0
  575. tlrender-0.21.0/deps/ftk/lib/ftk/GL/Util.h +75 -0
  576. tlrender-0.21.0/deps/ftk/lib/ftk/GL/Window.cpp +642 -0
  577. tlrender-0.21.0/deps/ftk/lib/ftk/GL/Window.h +157 -0
  578. tlrender-0.21.0/deps/ftk/lib/ftk/GLTest/CMakeLists.txt +32 -0
  579. tlrender-0.21.0/deps/ftk/lib/ftk/GLTest/MeshTest.cpp +143 -0
  580. tlrender-0.21.0/deps/ftk/lib/ftk/GLTest/MeshTest.h +32 -0
  581. tlrender-0.21.0/deps/ftk/lib/ftk/GLTest/OffscreenBufferTest.cpp +175 -0
  582. tlrender-0.21.0/deps/ftk/lib/ftk/GLTest/OffscreenBufferTest.h +33 -0
  583. tlrender-0.21.0/deps/ftk/lib/ftk/GLTest/RenderTest.cpp +200 -0
  584. tlrender-0.21.0/deps/ftk/lib/ftk/GLTest/RenderTest.h +27 -0
  585. tlrender-0.21.0/deps/ftk/lib/ftk/GLTest/ShaderTest.cpp +161 -0
  586. tlrender-0.21.0/deps/ftk/lib/ftk/GLTest/ShaderTest.h +27 -0
  587. tlrender-0.21.0/deps/ftk/lib/ftk/GLTest/TextureAtlasTest.cpp +82 -0
  588. tlrender-0.21.0/deps/ftk/lib/ftk/GLTest/TextureAtlasTest.h +27 -0
  589. tlrender-0.21.0/deps/ftk/lib/ftk/GLTest/TextureTest.cpp +132 -0
  590. tlrender-0.21.0/deps/ftk/lib/ftk/GLTest/TextureTest.h +32 -0
  591. tlrender-0.21.0/deps/ftk/lib/ftk/GLTest/UtilTest.cpp +36 -0
  592. tlrender-0.21.0/deps/ftk/lib/ftk/GLTest/UtilTest.h +27 -0
  593. tlrender-0.21.0/deps/ftk/lib/ftk/GLTest/WindowTest.cpp +66 -0
  594. tlrender-0.21.0/deps/ftk/lib/ftk/GLTest/WindowTest.h +32 -0
  595. tlrender-0.21.0/deps/ftk/lib/ftk/Resource/CMakeLists.txt +79 -0
  596. tlrender-0.21.0/deps/ftk/lib/ftk/TestLib/CMakeLists.txt +31 -0
  597. tlrender-0.21.0/deps/ftk/lib/ftk/TestLib/ITest.cpp +71 -0
  598. tlrender-0.21.0/deps/ftk/lib/ftk/TestLib/ITest.h +104 -0
  599. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Action.cpp +379 -0
  600. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Action.h +199 -0
  601. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ActionGroup.cpp +183 -0
  602. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ActionGroup.h +93 -0
  603. tlrender-0.21.0/deps/ftk/lib/ftk/UI/App.h +288 -0
  604. tlrender-0.21.0/deps/ftk/lib/ftk/UI/AppGL.cpp +2072 -0
  605. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Bellows.cpp +152 -0
  606. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Bellows.h +72 -0
  607. tlrender-0.21.0/deps/ftk/lib/ftk/UI/BellowsButton.cpp +248 -0
  608. tlrender-0.21.0/deps/ftk/lib/ftk/UI/BellowsPrivate.h +44 -0
  609. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ButtonGroup.cpp +182 -0
  610. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ButtonGroup.h +68 -0
  611. tlrender-0.21.0/deps/ftk/lib/ftk/UI/CMakeLists.txt +306 -0
  612. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Capture.cpp +881 -0
  613. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Capture.h +145 -0
  614. tlrender-0.21.0/deps/ftk/lib/ftk/UI/CheckBox.cpp +270 -0
  615. tlrender-0.21.0/deps/ftk/lib/ftk/UI/CheckBox.h +56 -0
  616. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ChoiceDialog.cpp +200 -0
  617. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ChoiceDialog.h +53 -0
  618. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ClipboardSystem.cpp +116 -0
  619. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ClipboardSystem.h +39 -0
  620. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ColorDot.cpp +225 -0
  621. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ColorDot.h +61 -0
  622. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ColorPopup.cpp +54 -0
  623. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ColorPopup.h +45 -0
  624. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ColorSlider.cpp +646 -0
  625. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ColorSlider.h +209 -0
  626. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ColorSwatch.cpp +315 -0
  627. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ColorSwatch.h +79 -0
  628. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ColorWidget.cpp +813 -0
  629. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ColorWidget.h +205 -0
  630. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ColorWidgetSystem.cpp +65 -0
  631. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ColorWidgetSystem.h +49 -0
  632. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ComboBox.cpp +560 -0
  633. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ComboBox.h +124 -0
  634. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ComboBoxButton.cpp +235 -0
  635. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ComboBoxMenu.cpp +188 -0
  636. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ComboBoxMenu.h +58 -0
  637. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ComboBoxPrivate.h +46 -0
  638. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ConfirmDialog.cpp +219 -0
  639. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ConfirmDialog.h +50 -0
  640. tlrender-0.21.0/deps/ftk/lib/ftk/UI/DiagWidget.cpp +120 -0
  641. tlrender-0.21.0/deps/ftk/lib/ftk/UI/DiagWidget.h +45 -0
  642. tlrender-0.21.0/deps/ftk/lib/ftk/UI/DialogSystem.cpp +152 -0
  643. tlrender-0.21.0/deps/ftk/lib/ftk/UI/DialogSystem.h +72 -0
  644. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Divider.cpp +80 -0
  645. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Divider.h +43 -0
  646. tlrender-0.21.0/deps/ftk/lib/ftk/UI/DocumentModel.cpp +133 -0
  647. tlrender-0.21.0/deps/ftk/lib/ftk/UI/DocumentModel.h +81 -0
  648. tlrender-0.21.0/deps/ftk/lib/ftk/UI/DoubleEdit.cpp +392 -0
  649. tlrender-0.21.0/deps/ftk/lib/ftk/UI/DoubleEdit.h +146 -0
  650. tlrender-0.21.0/deps/ftk/lib/ftk/UI/DoubleEditShuttle.cpp +216 -0
  651. tlrender-0.21.0/deps/ftk/lib/ftk/UI/DoubleEditShuttle.h +102 -0
  652. tlrender-0.21.0/deps/ftk/lib/ftk/UI/DoubleEditSlider.cpp +258 -0
  653. tlrender-0.21.0/deps/ftk/lib/ftk/UI/DoubleEditSlider.h +104 -0
  654. tlrender-0.21.0/deps/ftk/lib/ftk/UI/DoubleModel.cpp +180 -0
  655. tlrender-0.21.0/deps/ftk/lib/ftk/UI/DoubleModel.h +115 -0
  656. tlrender-0.21.0/deps/ftk/lib/ftk/UI/DoubleSlider.cpp +512 -0
  657. tlrender-0.21.0/deps/ftk/lib/ftk/UI/DoubleSlider.h +134 -0
  658. tlrender-0.21.0/deps/ftk/lib/ftk/UI/DrawUtil.cpp +379 -0
  659. tlrender-0.21.0/deps/ftk/lib/ftk/UI/DrawUtil.h +43 -0
  660. tlrender-0.21.0/deps/ftk/lib/ftk/UI/DrivesModel.cpp +109 -0
  661. tlrender-0.21.0/deps/ftk/lib/ftk/UI/DrivesModel.h +43 -0
  662. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Event.cpp +403 -0
  663. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Event.h +413 -0
  664. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Export.h +34 -0
  665. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FileBrowser.cpp +172 -0
  666. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FileBrowser.h +501 -0
  667. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FileBrowserModel.cpp +181 -0
  668. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FileBrowserPanel.cpp +478 -0
  669. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FileBrowserPath.cpp +194 -0
  670. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FileBrowserPrivate.h +39 -0
  671. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FileBrowserSystem.cpp +577 -0
  672. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FileBrowserView.cpp +1172 -0
  673. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FileBrowserWidget.cpp +761 -0
  674. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FileBrowserWidgets.h +266 -0
  675. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FileEdit.cpp +207 -0
  676. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FileEdit.h +66 -0
  677. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FloatEdit.cpp +382 -0
  678. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FloatEdit.h +140 -0
  679. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FloatEditShuttle.cpp +216 -0
  680. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FloatEditShuttle.h +102 -0
  681. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FloatEditSlider.cpp +257 -0
  682. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FloatEditSlider.h +104 -0
  683. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FloatModel.cpp +180 -0
  684. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FloatModel.h +115 -0
  685. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FloatSlider.cpp +510 -0
  686. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FloatSlider.h +134 -0
  687. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FlowLayout.cpp +189 -0
  688. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FlowLayout.h +70 -0
  689. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FormLayout.cpp +211 -0
  690. tlrender-0.21.0/deps/ftk/lib/ftk/UI/FormLayout.h +81 -0
  691. tlrender-0.21.0/deps/ftk/lib/ftk/UI/GraphWidget.cpp +396 -0
  692. tlrender-0.21.0/deps/ftk/lib/ftk/UI/GraphWidget.h +60 -0
  693. tlrender-0.21.0/deps/ftk/lib/ftk/UI/GridLayout.cpp +548 -0
  694. tlrender-0.21.0/deps/ftk/lib/ftk/UI/GridLayout.h +84 -0
  695. tlrender-0.21.0/deps/ftk/lib/ftk/UI/GroupBox.cpp +214 -0
  696. tlrender-0.21.0/deps/ftk/lib/ftk/UI/GroupBox.h +65 -0
  697. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IButton.cpp +339 -0
  698. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IButton.h +148 -0
  699. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IContainer.cpp +61 -0
  700. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IContainer.h +73 -0
  701. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IDialog.cpp +348 -0
  702. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IDialog.h +70 -0
  703. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IMenuPopup.cpp +409 -0
  704. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IMenuPopup.h +87 -0
  705. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IMouseWidget.cpp +123 -0
  706. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IMouseWidget.h +64 -0
  707. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IPopup.cpp +21 -0
  708. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IPopup.h +33 -0
  709. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IWidget.cpp +529 -0
  710. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IWidget.h +418 -0
  711. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IWidgetInline.h +169 -0
  712. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IWidgetPopup.cpp +362 -0
  713. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IWidgetPopup.h +75 -0
  714. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IWindow.cpp +1467 -0
  715. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IWindow.h +372 -0
  716. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Icon.cpp +164 -0
  717. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Icon.h +60 -0
  718. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IconSystem.cpp +355 -0
  719. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IconSystem.h +65 -0
  720. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ImageWidget.cpp +134 -0
  721. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ImageWidget.h +56 -0
  722. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IncButtons.cpp +173 -0
  723. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IncButtons.h +76 -0
  724. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Init.cpp +53 -0
  725. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Init.h +19 -0
  726. tlrender-0.21.0/deps/ftk/lib/ftk/UI/InputDialog.cpp +265 -0
  727. tlrender-0.21.0/deps/ftk/lib/ftk/UI/InputDialog.h +54 -0
  728. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IntEdit.cpp +367 -0
  729. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IntEdit.h +134 -0
  730. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IntEditShuttle.cpp +206 -0
  731. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IntEditShuttle.h +96 -0
  732. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IntEditSlider.cpp +247 -0
  733. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IntEditSlider.h +98 -0
  734. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IntModel.cpp +178 -0
  735. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IntModel.h +115 -0
  736. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IntSlider.cpp +509 -0
  737. tlrender-0.21.0/deps/ftk/lib/ftk/UI/IntSlider.h +134 -0
  738. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ItemButton.cpp +327 -0
  739. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ItemButton.h +104 -0
  740. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ItemButtonList.cpp +300 -0
  741. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ItemButtonList.h +96 -0
  742. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Label.cpp +445 -0
  743. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Label.h +123 -0
  744. tlrender-0.21.0/deps/ftk/lib/ftk/UI/LayoutUtil.cpp +84 -0
  745. tlrender-0.21.0/deps/ftk/lib/ftk/UI/LayoutUtil.h +30 -0
  746. tlrender-0.21.0/deps/ftk/lib/ftk/UI/LevelsSlider.cpp +756 -0
  747. tlrender-0.21.0/deps/ftk/lib/ftk/UI/LevelsSlider.h +223 -0
  748. tlrender-0.21.0/deps/ftk/lib/ftk/UI/LineEdit.cpp +878 -0
  749. tlrender-0.21.0/deps/ftk/lib/ftk/UI/LineEdit.h +165 -0
  750. tlrender-0.21.0/deps/ftk/lib/ftk/UI/LineEditModel.cpp +608 -0
  751. tlrender-0.21.0/deps/ftk/lib/ftk/UI/LineEditModel.h +157 -0
  752. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ListItemButton.cpp +196 -0
  753. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ListItemsWidget.cpp +319 -0
  754. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ListItemsWidget.h +102 -0
  755. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ListItemsWidgetPrivate.h +46 -0
  756. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ListWidget.cpp +131 -0
  757. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ListWidget.h +76 -0
  758. tlrender-0.21.0/deps/ftk/lib/ftk/UI/MDICanvas.cpp +420 -0
  759. tlrender-0.21.0/deps/ftk/lib/ftk/UI/MDICanvas.h +74 -0
  760. tlrender-0.21.0/deps/ftk/lib/ftk/UI/MDIMiniMap.cpp +332 -0
  761. tlrender-0.21.0/deps/ftk/lib/ftk/UI/MDIMiniMap.h +57 -0
  762. tlrender-0.21.0/deps/ftk/lib/ftk/UI/MDIWidget.cpp +437 -0
  763. tlrender-0.21.0/deps/ftk/lib/ftk/UI/MDIWidget.h +111 -0
  764. tlrender-0.21.0/deps/ftk/lib/ftk/UI/MainWindow.cpp +294 -0
  765. tlrender-0.21.0/deps/ftk/lib/ftk/UI/MainWindow.h +54 -0
  766. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Menu.cpp +600 -0
  767. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Menu.h +114 -0
  768. tlrender-0.21.0/deps/ftk/lib/ftk/UI/MenuBar.cpp +389 -0
  769. tlrender-0.21.0/deps/ftk/lib/ftk/UI/MenuBar.h +103 -0
  770. tlrender-0.21.0/deps/ftk/lib/ftk/UI/MenuBarButton.cpp +196 -0
  771. tlrender-0.21.0/deps/ftk/lib/ftk/UI/MenuBarPrivate.h +46 -0
  772. tlrender-0.21.0/deps/ftk/lib/ftk/UI/MenuButton.cpp +412 -0
  773. tlrender-0.21.0/deps/ftk/lib/ftk/UI/MenuPrivate.h +53 -0
  774. tlrender-0.21.0/deps/ftk/lib/ftk/UI/MessageDialog.cpp +193 -0
  775. tlrender-0.21.0/deps/ftk/lib/ftk/UI/MessageDialog.h +46 -0
  776. tlrender-0.21.0/deps/ftk/lib/ftk/UI/OverlayLayout.cpp +110 -0
  777. tlrender-0.21.0/deps/ftk/lib/ftk/UI/OverlayLayout.h +49 -0
  778. tlrender-0.21.0/deps/ftk/lib/ftk/UI/PieChart.cpp +188 -0
  779. tlrender-0.21.0/deps/ftk/lib/ftk/UI/PieChart.h +70 -0
  780. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ProgressDialog.cpp +417 -0
  781. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ProgressDialog.h +72 -0
  782. tlrender-0.21.0/deps/ftk/lib/ftk/UI/PushButton.cpp +286 -0
  783. tlrender-0.21.0/deps/ftk/lib/ftk/UI/PushButton.h +56 -0
  784. tlrender-0.21.0/deps/ftk/lib/ftk/UI/RadioButton.cpp +247 -0
  785. tlrender-0.21.0/deps/ftk/lib/ftk/UI/RadioButton.h +56 -0
  786. tlrender-0.21.0/deps/ftk/lib/ftk/UI/RecentFilesModel.cpp +148 -0
  787. tlrender-0.21.0/deps/ftk/lib/ftk/UI/RecentFilesModel.h +67 -0
  788. tlrender-0.21.0/deps/ftk/lib/ftk/UI/RowLayout.cpp +425 -0
  789. tlrender-0.21.0/deps/ftk/lib/ftk/UI/RowLayout.h +133 -0
  790. tlrender-0.21.0/deps/ftk/lib/ftk/UI/SVGWidget.cpp +188 -0
  791. tlrender-0.21.0/deps/ftk/lib/ftk/UI/SVGWidget.h +62 -0
  792. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ScreenshotTag.h +53 -0
  793. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ScrollArea.cpp +314 -0
  794. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ScrollArea.h +102 -0
  795. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ScrollBar.cpp +333 -0
  796. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ScrollBar.h +70 -0
  797. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ScrollWidget.cpp +625 -0
  798. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ScrollWidget.h +195 -0
  799. tlrender-0.21.0/deps/ftk/lib/ftk/UI/SearchBox.cpp +106 -0
  800. tlrender-0.21.0/deps/ftk/lib/ftk/UI/SearchBox.h +50 -0
  801. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Settings.cpp +409 -0
  802. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Settings.h +93 -0
  803. tlrender-0.21.0/deps/ftk/lib/ftk/UI/SettingsInline.h +31 -0
  804. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ShuttleWidget.cpp +226 -0
  805. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ShuttleWidget.h +52 -0
  806. tlrender-0.21.0/deps/ftk/lib/ftk/UI/SliderPopup.cpp +413 -0
  807. tlrender-0.21.0/deps/ftk/lib/ftk/UI/SliderPopup.h +92 -0
  808. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Spacer.cpp +99 -0
  809. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Spacer.h +49 -0
  810. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Splitter.cpp +387 -0
  811. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Splitter.h +84 -0
  812. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Splitter2D.cpp +420 -0
  813. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Splitter2D.h +84 -0
  814. tlrender-0.21.0/deps/ftk/lib/ftk/UI/StackLayout.cpp +261 -0
  815. tlrender-0.21.0/deps/ftk/lib/ftk/UI/StackLayout.h +94 -0
  816. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Style.cpp +367 -0
  817. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Style.h +190 -0
  818. tlrender-0.21.0/deps/ftk/lib/ftk/UI/SysLogModel.cpp +105 -0
  819. tlrender-0.21.0/deps/ftk/lib/ftk/UI/SysLogModel.h +53 -0
  820. tlrender-0.21.0/deps/ftk/lib/ftk/UI/TabBar.cpp +461 -0
  821. tlrender-0.21.0/deps/ftk/lib/ftk/UI/TabBar.h +97 -0
  822. tlrender-0.21.0/deps/ftk/lib/ftk/UI/TabBarButton.cpp +201 -0
  823. tlrender-0.21.0/deps/ftk/lib/ftk/UI/TabBarPrivate.h +46 -0
  824. tlrender-0.21.0/deps/ftk/lib/ftk/UI/TabWidget.cpp +261 -0
  825. tlrender-0.21.0/deps/ftk/lib/ftk/UI/TabWidget.h +103 -0
  826. tlrender-0.21.0/deps/ftk/lib/ftk/UI/TextEdit.cpp +291 -0
  827. tlrender-0.21.0/deps/ftk/lib/ftk/UI/TextEdit.h +124 -0
  828. tlrender-0.21.0/deps/ftk/lib/ftk/UI/TextEditModel.cpp +976 -0
  829. tlrender-0.21.0/deps/ftk/lib/ftk/UI/TextEditModel.h +207 -0
  830. tlrender-0.21.0/deps/ftk/lib/ftk/UI/TextEditPrivate.h +68 -0
  831. tlrender-0.21.0/deps/ftk/lib/ftk/UI/TextEditWidget.cpp +628 -0
  832. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ToolBar.cpp +105 -0
  833. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ToolBar.h +65 -0
  834. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ToolButton.cpp +535 -0
  835. tlrender-0.21.0/deps/ftk/lib/ftk/UI/ToolButton.h +103 -0
  836. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Tooltip.cpp +221 -0
  837. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Tooltip.h +51 -0
  838. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Util.cpp +16 -0
  839. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Util.h +13 -0
  840. tlrender-0.21.0/deps/ftk/lib/ftk/UI/WidgetDump.cpp +90 -0
  841. tlrender-0.21.0/deps/ftk/lib/ftk/UI/WidgetDump.h +24 -0
  842. tlrender-0.21.0/deps/ftk/lib/ftk/UI/WidgetJson.cpp +533 -0
  843. tlrender-0.21.0/deps/ftk/lib/ftk/UI/WidgetJson.h +81 -0
  844. tlrender-0.21.0/deps/ftk/lib/ftk/UI/WidgetOptions.cpp +38 -0
  845. tlrender-0.21.0/deps/ftk/lib/ftk/UI/WidgetOptions.h +62 -0
  846. tlrender-0.21.0/deps/ftk/lib/ftk/UI/Window.h +68 -0
  847. tlrender-0.21.0/deps/ftk/lib/ftk/UI/WindowGL.cpp +559 -0
  848. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/Action.cpp +130 -0
  849. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ActionGroup.cpp +44 -0
  850. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/App.cpp +211 -0
  851. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/Bellows.cpp +49 -0
  852. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/Bindings.cpp +179 -0
  853. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/Bindings.h +121 -0
  854. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ButtonGroup.cpp +49 -0
  855. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/CMakeLists.txt +135 -0
  856. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/CheckBox.cpp +43 -0
  857. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ChoiceDialog.cpp +39 -0
  858. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ClipboardSystem.cpp +39 -0
  859. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ColorDot.cpp +37 -0
  860. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ColorPopup.cpp +37 -0
  861. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ColorSlider.cpp +90 -0
  862. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ColorSwatch.cpp +40 -0
  863. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ColorWidget.cpp +37 -0
  864. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ComboBox.cpp +82 -0
  865. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ConfirmDialog.cpp +40 -0
  866. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/DiagWidget.cpp +34 -0
  867. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/DialogSystem.cpp +65 -0
  868. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/Divider.cpp +34 -0
  869. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/DocumentModel.cpp +72 -0
  870. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/DoubleEdit.cpp +55 -0
  871. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/DoubleEditShuttle.cpp +55 -0
  872. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/DoubleEditSlider.cpp +56 -0
  873. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/DoubleModel.cpp +50 -0
  874. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/DoubleSlider.cpp +55 -0
  875. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/DrivesModel.cpp +40 -0
  876. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/Event.cpp +153 -0
  877. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/FileBrowser.cpp +138 -0
  878. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/FileBrowserWidgets.cpp +101 -0
  879. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/FileEdit.cpp +57 -0
  880. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/FloatEdit.cpp +54 -0
  881. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/FloatEditShuttle.cpp +55 -0
  882. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/FloatEditSlider.cpp +55 -0
  883. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/FloatModel.cpp +50 -0
  884. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/FloatSlider.cpp +55 -0
  885. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/FlowLayout.cpp +29 -0
  886. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/FormLayout.cpp +43 -0
  887. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/GraphWidget.cpp +43 -0
  888. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/GridLayout.cpp +49 -0
  889. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/GroupBox.cpp +46 -0
  890. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/IButton.cpp +43 -0
  891. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/IContainer.cpp +71 -0
  892. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/IDialog.cpp +34 -0
  893. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/IMenuPopup.cpp +62 -0
  894. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/IMouseWidget.cpp +93 -0
  895. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/IPopup.cpp +31 -0
  896. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/IWidget.cpp +208 -0
  897. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/IWidgetPopup.cpp +41 -0
  898. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/IWindow.cpp +119 -0
  899. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/Icon.cpp +45 -0
  900. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/IconSystem.cpp +43 -0
  901. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ImageWidget.cpp +31 -0
  902. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/IncButtons.cpp +36 -0
  903. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/InputDialog.cpp +41 -0
  904. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/IntEdit.cpp +53 -0
  905. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/IntEditShuttle.cpp +54 -0
  906. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/IntEditSlider.cpp +54 -0
  907. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/IntModel.cpp +50 -0
  908. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/IntSlider.cpp +55 -0
  909. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ItemButton.cpp +61 -0
  910. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/Label.cpp +60 -0
  911. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/LevelsSlider.cpp +83 -0
  912. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/LineEdit.cpp +61 -0
  913. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/LineEditModel.cpp +67 -0
  914. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ListItemsWidget.cpp +67 -0
  915. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ListWidget.cpp +52 -0
  916. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/MDICanvas.cpp +38 -0
  917. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/MDIMiniMap.cpp +38 -0
  918. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/MDIWidget.cpp +45 -0
  919. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/MainWindow.cpp +105 -0
  920. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/Menu.cpp +116 -0
  921. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/MenuBar.cpp +92 -0
  922. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/MessageDialog.cpp +38 -0
  923. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/OverlayLayout.cpp +30 -0
  924. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/PieChart.cpp +47 -0
  925. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ProgressDialog.cpp +42 -0
  926. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/PushButton.cpp +44 -0
  927. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/RadioButton.cpp +43 -0
  928. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/RecentFilesModel.cpp +67 -0
  929. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/RowLayout.cpp +70 -0
  930. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/SVGWidget.cpp +42 -0
  931. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ScreenshotTag.cpp +44 -0
  932. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ScrollArea.cpp +47 -0
  933. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ScrollBar.cpp +36 -0
  934. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ScrollWidget.cpp +63 -0
  935. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/SearchBox.cpp +36 -0
  936. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/Settings.cpp +94 -0
  937. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ShuttleWidget.cpp +32 -0
  938. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/Spacer.cpp +31 -0
  939. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/Splitter.cpp +39 -0
  940. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/Splitter2D.cpp +38 -0
  941. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/StackLayout.cpp +43 -0
  942. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/Style.cpp +29 -0
  943. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/SysLogModel.cpp +38 -0
  944. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/TabBar.cpp +44 -0
  945. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/TabWidget.cpp +80 -0
  946. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/TextEdit.cpp +76 -0
  947. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/TextEditModel.cpp +95 -0
  948. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ToolBar.cpp +73 -0
  949. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/ToolButton.cpp +54 -0
  950. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/Tooltip.cpp +29 -0
  951. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/WidgetOptions.cpp +35 -0
  952. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/WidgetTrampoline.h +135 -0
  953. tlrender-0.21.0/deps/ftk/lib/ftk/UIPy/Window.cpp +89 -0
  954. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ActionGroupTest.cpp +190 -0
  955. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ActionGroupTest.h +32 -0
  956. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ActionTest.cpp +101 -0
  957. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ActionTest.h +27 -0
  958. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/AppTest.cpp +178 -0
  959. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/AppTest.h +30 -0
  960. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/BellowsTest.cpp +68 -0
  961. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/BellowsTest.h +27 -0
  962. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ButtonGroupTest.cpp +131 -0
  963. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ButtonGroupTest.h +27 -0
  964. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ButtonTest.cpp +156 -0
  965. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ButtonTest.h +38 -0
  966. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/CMakeLists.txt +131 -0
  967. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ColorWidgetTest.cpp +82 -0
  968. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ColorWidgetTest.h +27 -0
  969. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ComboBoxTest.cpp +158 -0
  970. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ComboBoxTest.h +27 -0
  971. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ConfirmDialogTest.cpp +125 -0
  972. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ConfirmDialogTest.h +27 -0
  973. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ContextMenuTest.cpp +304 -0
  974. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ContextMenuTest.h +26 -0
  975. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/DoubleEditSliderTest.cpp +74 -0
  976. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/DoubleEditSliderTest.h +27 -0
  977. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/DoubleEditTest.cpp +73 -0
  978. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/DoubleEditTest.h +27 -0
  979. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/DoubleModelTest.cpp +106 -0
  980. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/DoubleModelTest.h +27 -0
  981. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/DoubleSliderTest.cpp +66 -0
  982. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/DoubleSliderTest.h +27 -0
  983. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/DragDropTest.cpp +266 -0
  984. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/DragDropTest.h +26 -0
  985. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/DrawUtilTest.cpp +99 -0
  986. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/DrawUtilTest.h +27 -0
  987. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/EventTest.cpp +45 -0
  988. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/EventTest.h +30 -0
  989. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/FileBrowserTest.cpp +853 -0
  990. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/FileBrowserTest.h +59 -0
  991. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/FileEditTest.cpp +67 -0
  992. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/FileEditTest.h +27 -0
  993. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/FloatEditShuttleTest.cpp +123 -0
  994. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/FloatEditShuttleTest.h +26 -0
  995. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/FloatEditSliderTest.cpp +74 -0
  996. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/FloatEditSliderTest.h +27 -0
  997. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/FloatEditTest.cpp +73 -0
  998. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/FloatEditTest.h +27 -0
  999. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/FloatModelTest.cpp +105 -0
  1000. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/FloatModelTest.h +27 -0
  1001. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/FloatSliderTest.cpp +288 -0
  1002. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/FloatSliderTest.h +27 -0
  1003. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/FlowLayoutTest.cpp +85 -0
  1004. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/FlowLayoutTest.h +26 -0
  1005. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/GridLayoutTest.cpp +71 -0
  1006. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/GridLayoutTest.h +27 -0
  1007. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/GroupBoxTest.cpp +60 -0
  1008. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/GroupBoxTest.h +27 -0
  1009. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/IWidgetTest.cpp +113 -0
  1010. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/IWidgetTest.h +27 -0
  1011. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/IconTest.cpp +77 -0
  1012. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/IconTest.h +27 -0
  1013. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/IntEditSliderTest.cpp +71 -0
  1014. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/IntEditSliderTest.h +27 -0
  1015. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/IntEditTest.cpp +69 -0
  1016. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/IntEditTest.h +27 -0
  1017. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/IntModelTest.cpp +105 -0
  1018. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/IntModelTest.h +27 -0
  1019. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/IntSliderTest.cpp +66 -0
  1020. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/IntSliderTest.h +27 -0
  1021. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ItemButtonListTest.cpp +128 -0
  1022. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ItemButtonListTest.h +29 -0
  1023. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/LabelTest.cpp +112 -0
  1024. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/LabelTest.h +27 -0
  1025. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/LayoutUtilTest.cpp +40 -0
  1026. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/LayoutUtilTest.h +27 -0
  1027. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/LineEditModelTest.cpp +56 -0
  1028. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/LineEditModelTest.h +27 -0
  1029. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/LineEditTest.cpp +218 -0
  1030. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/LineEditTest.h +27 -0
  1031. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ListWidgetTest.cpp +79 -0
  1032. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ListWidgetTest.h +38 -0
  1033. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/MDIWidgetTest.cpp +88 -0
  1034. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/MDIWidgetTest.h +31 -0
  1035. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/MenuBarTest.cpp +153 -0
  1036. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/MenuBarTest.h +27 -0
  1037. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/MessageDialogTest.cpp +48 -0
  1038. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/MessageDialogTest.h +27 -0
  1039. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/PieChartTest.cpp +71 -0
  1040. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/PieChartTest.h +27 -0
  1041. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ProgressDialogTest.cpp +47 -0
  1042. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ProgressDialogTest.h +27 -0
  1043. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/RecentFilesModelTest.cpp +110 -0
  1044. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/RecentFilesModelTest.h +27 -0
  1045. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/RowLayoutTest.cpp +149 -0
  1046. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/RowLayoutTest.h +39 -0
  1047. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ScrollAreaTest.cpp +39 -0
  1048. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ScrollAreaTest.h +30 -0
  1049. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ScrollBarTest.cpp +67 -0
  1050. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ScrollBarTest.h +39 -0
  1051. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ScrollWidgetTest.cpp +111 -0
  1052. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/ScrollWidgetTest.h +38 -0
  1053. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/SearchBoxTest.cpp +61 -0
  1054. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/SearchBoxTest.h +27 -0
  1055. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/SettingsTest.cpp +80 -0
  1056. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/SettingsTest.h +26 -0
  1057. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/SplitterTest.cpp +150 -0
  1058. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/SplitterTest.h +42 -0
  1059. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/StackLayoutTest.cpp +83 -0
  1060. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/StackLayoutTest.h +27 -0
  1061. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/StyleTest.cpp +87 -0
  1062. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/StyleTest.h +31 -0
  1063. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/TabWidgetTest.cpp +133 -0
  1064. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/TabWidgetTest.h +31 -0
  1065. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/TextEditModelTest.cpp +756 -0
  1066. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/TextEditModelTest.h +27 -0
  1067. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/WidgetJsonTest.cpp +163 -0
  1068. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/WidgetJsonTest.h +25 -0
  1069. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/WidgetOptionsTest.cpp +42 -0
  1070. tlrender-0.21.0/deps/ftk/lib/ftk/UITest/WidgetOptionsTest.h +30 -0
  1071. tlrender-0.21.0/deps/ftk/lib/ftk/ftkPy/Bindings.cpp +18 -0
  1072. tlrender-0.21.0/deps/ftk/lib/ftk/ftkPy/CMakeLists.txt +50 -0
  1073. tlrender-0.21.0/deps/ftk/lib/ftk/ftkPy/__init__.py +39 -0
  1074. tlrender-0.21.0/deps/ftk/pyproject.toml +87 -0
  1075. tlrender-0.21.0/deps/ftk/sbuild-linux.sh +9 -0
  1076. tlrender-0.21.0/deps/ftk/sbuild-macos.sh +9 -0
  1077. tlrender-0.21.0/deps/ftk/sbuild-win.bat +14 -0
  1078. tlrender-0.21.0/deps/ftk/tests/CMakeLists.txt +22 -0
  1079. tlrender-0.21.0/deps/ftk/tests/CorePyTest/__init__.py +0 -0
  1080. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testBox.py +112 -0
  1081. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testCmdLine.py +40 -0
  1082. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testColor.py +56 -0
  1083. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testCommand.py +236 -0
  1084. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testEnums.py +38 -0
  1085. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testImage.py +85 -0
  1086. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testMath.py +55 -0
  1087. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testMatrix.py +116 -0
  1088. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testMemory.py +34 -0
  1089. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testMesh.py +82 -0
  1090. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testNoise.py +27 -0
  1091. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testObservable.py +47 -0
  1092. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testObservableExtended.py +192 -0
  1093. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testObservableRange.py +50 -0
  1094. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testPath.py +88 -0
  1095. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testRandom.py +64 -0
  1096. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testRange.py +73 -0
  1097. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testRenderOptions.py +63 -0
  1098. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testSize.py +62 -0
  1099. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testString.py +31 -0
  1100. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testTime.py +21 -0
  1101. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testTimer.py +43 -0
  1102. tlrender-0.21.0/deps/ftk/tests/CorePyTest/testVector.py +114 -0
  1103. tlrender-0.21.0/deps/ftk/tests/UIPyTest/__init__.py +0 -0
  1104. tlrender-0.21.0/deps/ftk/tests/UIPyTest/testApp.py +66 -0
  1105. tlrender-0.21.0/deps/ftk/tests/UIPyTest/testModels.py +296 -0
  1106. tlrender-0.21.0/deps/ftk/tests/UIPyTest/testWidgets.py +169 -0
  1107. tlrender-0.21.0/deps/ftk/tests/ftk-test/CMakeLists.txt +27 -0
  1108. tlrender-0.21.0/deps/ftk/tests/ftk-test/ftk-test.cpp +389 -0
  1109. tlrender-0.21.0/deps/ftk/tests/ftk-test/ftk-test.h +37 -0
  1110. tlrender-0.21.0/deps/ftk/tests/run-python-tests.py +31 -0
  1111. tlrender-0.21.0/etc/Config/ci-linux-python.cmake +12 -0
  1112. tlrender-0.21.0/etc/Config/ci-linux-sdl2.cmake +7 -0
  1113. tlrender-0.21.0/etc/Config/ci-linux.cmake +6 -0
  1114. tlrender-0.21.0/etc/Config/ci-macos-python.cmake +12 -0
  1115. tlrender-0.21.0/etc/Config/ci-macos.cmake +14 -0
  1116. tlrender-0.21.0/etc/Config/ci-windows-python.cmake +12 -0
  1117. tlrender-0.21.0/etc/Config/ci-windows.cmake +11 -0
  1118. tlrender-0.21.0/etc/Config/ci.cmake +10 -0
  1119. tlrender-0.21.0/etc/Config/default.cmake +105 -0
  1120. tlrender-0.21.0/etc/Config/minimal-gles3.cmake +7 -0
  1121. tlrender-0.21.0/etc/Config/minimal.cmake +20 -0
  1122. tlrender-0.21.0/etc/Config/wheel.cmake +43 -0
  1123. tlrender-0.21.0/etc/Icons/ColorControls.svg +118 -0
  1124. tlrender-0.21.0/etc/Icons/ColorPicker.svg +86 -0
  1125. tlrender-0.21.0/etc/Icons/CompareA.svg +88 -0
  1126. tlrender-0.21.0/etc/Icons/CompareB.svg +75 -0
  1127. tlrender-0.21.0/etc/Icons/CompareButterfly.svg +59 -0
  1128. tlrender-0.21.0/etc/Icons/CompareDifference.svg +91 -0
  1129. tlrender-0.21.0/etc/Icons/CompareHorizontal.svg +79 -0
  1130. tlrender-0.21.0/etc/Icons/CompareOverlay.svg +86 -0
  1131. tlrender-0.21.0/etc/Icons/CompareTile.svg +89 -0
  1132. tlrender-0.21.0/etc/Icons/CompareVertical.svg +79 -0
  1133. tlrender-0.21.0/etc/Icons/CompareWipe.svg +81 -0
  1134. tlrender-0.21.0/etc/Icons/Devices.svg +97 -0
  1135. tlrender-0.21.0/etc/Icons/Export.svg +86 -0
  1136. tlrender-0.21.0/etc/Icons/FileOpenAudio.svg +86 -0
  1137. tlrender-0.21.0/etc/Icons/Files.svg +80 -0
  1138. tlrender-0.21.0/etc/Icons/Hidden.svg +79 -0
  1139. tlrender-0.21.0/etc/Icons/Info.svg +80 -0
  1140. tlrender-0.21.0/etc/Icons/Magnify.svg +90 -0
  1141. tlrender-0.21.0/etc/Icons/Messages.svg +82 -0
  1142. tlrender-0.21.0/etc/Icons/PlaybackLoop.svg +85 -0
  1143. tlrender-0.21.0/etc/Icons/PlaybackOnce.svg +80 -0
  1144. tlrender-0.21.0/etc/Icons/PlaybackPingPong.svg +101 -0
  1145. tlrender-0.21.0/etc/Icons/View.svg +94 -0
  1146. tlrender-0.21.0/etc/Icons/Visible.svg +79 -0
  1147. tlrender-0.21.0/etc/Icons/WindowSecondary.svg +89 -0
  1148. tlrender-0.21.0/etc/Icons/tlRender.svg +483 -0
  1149. tlrender-0.21.0/etc/Icons/tlRender_32.png +0 -0
  1150. tlrender-0.21.0/etc/Images/player_1.png +0 -0
  1151. tlrender-0.21.0/etc/Images/player_2.png +0 -0
  1152. tlrender-0.21.0/etc/Legal/CMakeLists.txt +44 -0
  1153. tlrender-0.21.0/etc/Legal/LICENSE_CMake.txt +132 -0
  1154. tlrender-0.21.0/etc/Legal/LICENSE_FFmpeg.txt +120 -0
  1155. tlrender-0.21.0/etc/Legal/LICENSE_LibRaw.txt +27 -0
  1156. tlrender-0.21.0/etc/Legal/LICENSE_MaterialX.txt +176 -0
  1157. tlrender-0.21.0/etc/Legal/LICENSE_OFL.txt +92 -0
  1158. tlrender-0.21.0/etc/Legal/LICENSE_OpenColorIO.txt +26 -0
  1159. tlrender-0.21.0/etc/Legal/LICENSE_OpenEXR.txt +34 -0
  1160. tlrender-0.21.0/etc/Legal/LICENSE_OpenImageIO.md +201 -0
  1161. tlrender-0.21.0/etc/Legal/LICENSE_OpenJPH.txt +27 -0
  1162. tlrender-0.21.0/etc/Legal/LICENSE_OpenSubdiv.txt +174 -0
  1163. tlrender-0.21.0/etc/Legal/LICENSE_OpenTimelineIO.txt +176 -0
  1164. tlrender-0.21.0/etc/Legal/LICENSE_OpenUSD.txt +751 -0
  1165. tlrender-0.21.0/etc/Legal/LICENSE_aom.txt +27 -0
  1166. tlrender-0.21.0/etc/Legal/LICENSE_boost.txt +23 -0
  1167. tlrender-0.21.0/etc/Legal/LICENSE_coi-serviceworker.txt +21 -0
  1168. tlrender-0.21.0/etc/Legal/LICENSE_expat.txt +21 -0
  1169. tlrender-0.21.0/etc/Legal/LICENSE_feather-tk.txt +26 -0
  1170. tlrender-0.21.0/etc/Legal/LICENSE_libjpeg-turbo.txt +27 -0
  1171. tlrender-0.21.0/etc/Legal/LICENSE_libjpeg.txt +375 -0
  1172. tlrender-0.21.0/etc/Legal/LICENSE_libpng.txt +134 -0
  1173. tlrender-0.21.0/etc/Legal/LICENSE_libtiff.txt +21 -0
  1174. tlrender-0.21.0/etc/Legal/LICENSE_minizip-ng.txt +17 -0
  1175. tlrender-0.21.0/etc/Legal/LICENSE_mp4box.txt +24 -0
  1176. tlrender-0.21.0/etc/Legal/LICENSE_nlohmann_json.txt +21 -0
  1177. tlrender-0.21.0/etc/Legal/LICENSE_nv-codec-headers.txt +22 -0
  1178. tlrender-0.21.0/etc/Legal/LICENSE_oneTBB.txt +201 -0
  1179. tlrender-0.21.0/etc/Legal/LICENSE_openapv.txt +28 -0
  1180. tlrender-0.21.0/etc/Legal/LICENSE_pystring.txt +27 -0
  1181. tlrender-0.21.0/etc/Legal/LICENSE_subprocess.txt +24 -0
  1182. tlrender-0.21.0/etc/Legal/LICENSE_svt-av1.txt +27 -0
  1183. tlrender-0.21.0/etc/Legal/LICENSE_tlRender.txt +26 -0
  1184. tlrender-0.21.0/etc/Legal/LICENSE_yaml-cpp.txt +19 -0
  1185. tlrender-0.21.0/etc/Legal/LICENSE_zlib.txt +21 -0
  1186. tlrender-0.21.0/etc/Linux/lcov.sh +20 -0
  1187. tlrender-0.21.0/etc/Linux/sbuild.sh +46 -0
  1188. tlrender-0.21.0/etc/Linux/setup-gha.sh +29 -0
  1189. tlrender-0.21.0/etc/Linux/stats.sh +3 -0
  1190. tlrender-0.21.0/etc/Python/fix_rpaths.py +98 -0
  1191. tlrender-0.21.0/etc/Python/repair_wheel.py +111 -0
  1192. tlrender-0.21.0/etc/Python/tlWheelDeps.cmake +128 -0
  1193. tlrender-0.21.0/etc/SampleData/Anamorphic.mov +0 -0
  1194. tlrender-0.21.0/etc/SampleData/AudioToneLeft.png +0 -0
  1195. tlrender-0.21.0/etc/SampleData/AudioToneLeft.wav +0 -0
  1196. tlrender-0.21.0/etc/SampleData/AudioToneNone.png +0 -0
  1197. tlrender-0.21.0/etc/SampleData/AudioToneRight.png +0 -0
  1198. tlrender-0.21.0/etc/SampleData/AudioToneRight.wav +0 -0
  1199. tlrender-0.21.0/etc/SampleData/AudioToneStereo.png +0 -0
  1200. tlrender-0.21.0/etc/SampleData/AudioToneStereo.wav +0 -0
  1201. tlrender-0.21.0/etc/SampleData/AudioTones.otio +630 -0
  1202. tlrender-0.21.0/etc/SampleData/AudioTones.svg +132 -0
  1203. tlrender-0.21.0/etc/SampleData/AudioTonesAndVideo.otio +1249 -0
  1204. tlrender-0.21.0/etc/SampleData/BART_2021-02-07.m4v +0 -0
  1205. tlrender-0.21.0/etc/SampleData/ClipColors.otio +94 -0
  1206. tlrender-0.21.0/etc/SampleData/ColorPattern.png +0 -0
  1207. tlrender-0.21.0/etc/SampleData/ColorPattern.svg +142 -0
  1208. tlrender-0.21.0/etc/SampleData/ColorPatternB.png +0 -0
  1209. tlrender-0.21.0/etc/SampleData/ColorPatternB.svg +141 -0
  1210. tlrender-0.21.0/etc/SampleData/ColorPatternPortrait.png +0 -0
  1211. tlrender-0.21.0/etc/SampleData/ColorPatternPortrait.svg +145 -0
  1212. tlrender-0.21.0/etc/SampleData/Cubes.0001.exr +0 -0
  1213. tlrender-0.21.0/etc/SampleData/Cubes.0001.jpg +0 -0
  1214. tlrender-0.21.0/etc/SampleData/Dinky_2015-06-11.m4v +0 -0
  1215. tlrender-0.21.0/etc/SampleData/ExrAndJpeg.otio +86 -0
  1216. tlrender-0.21.0/etc/SampleData/ExrAndJpegProxy.otio +72 -0
  1217. tlrender-0.21.0/etc/SampleData/Gap.otio +195 -0
  1218. tlrender-0.21.0/etc/SampleData/Gap2.otio +127 -0
  1219. tlrender-0.21.0/etc/SampleData/LUT_SRGB.cxx +42 -0
  1220. tlrender-0.21.0/etc/SampleData/LUT_SRGB_256.lut +258 -0
  1221. tlrender-0.21.0/etc/SampleData/Landscape.otio +52 -0
  1222. tlrender-0.21.0/etc/SampleData/LinePattern.png +0 -0
  1223. tlrender-0.21.0/etc/SampleData/LinePattern.svg +261 -0
  1224. tlrender-0.21.0/etc/SampleData/LinearTimeWarp.otio +59 -0
  1225. tlrender-0.21.0/etc/SampleData/Markers.otio +417 -0
  1226. tlrender-0.21.0/etc/SampleData/MissingMedia.otio +281 -0
  1227. tlrender-0.21.0/etc/SampleData/MissingMediaRef.otioz +0 -0
  1228. tlrender-0.21.0/etc/SampleData/MixedSeq.otioz +0 -0
  1229. tlrender-0.21.0/etc/SampleData/MovieAndSeq.otio +134 -0
  1230. tlrender-0.21.0/etc/SampleData/MultipleClips.otio +229 -0
  1231. tlrender-0.21.0/etc/SampleData/MultipleMediaRefs.otio +145 -0
  1232. tlrender-0.21.0/etc/SampleData/MultipleMediaRefs.otioz +0 -0
  1233. tlrender-0.21.0/etc/SampleData/MultipleRates.otio +98 -0
  1234. tlrender-0.21.0/etc/SampleData/NonPremultiplied.png +0 -0
  1235. tlrender-0.21.0/etc/SampleData/Overlay.otio +134 -0
  1236. tlrender-0.21.0/etc/SampleData/Overlay.png +0 -0
  1237. tlrender-0.21.0/etc/SampleData/Overlay.svg +102 -0
  1238. tlrender-0.21.0/etc/SampleData/OverlayB.png +0 -0
  1239. tlrender-0.21.0/etc/SampleData/PSR63_2012-06-02.mov +0 -0
  1240. tlrender-0.21.0/etc/SampleData/PartialSeq.otioz +0 -0
  1241. tlrender-0.21.0/etc/SampleData/Portrait.otio +52 -0
  1242. tlrender-0.21.0/etc/SampleData/RepeatClip.otio +163 -0
  1243. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0001.jpg +0 -0
  1244. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0001.png +0 -0
  1245. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0002.jpg +0 -0
  1246. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0002.png +0 -0
  1247. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0003.jpg +0 -0
  1248. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0003.png +0 -0
  1249. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0004.jpg +0 -0
  1250. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0004.png +0 -0
  1251. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0005.jpg +0 -0
  1252. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0005.png +0 -0
  1253. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0006.jpg +0 -0
  1254. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0006.png +0 -0
  1255. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0007.jpg +0 -0
  1256. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0007.png +0 -0
  1257. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0008.jpg +0 -0
  1258. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0008.png +0 -0
  1259. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0009.jpg +0 -0
  1260. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0009.png +0 -0
  1261. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0010.jpg +0 -0
  1262. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0010.png +0 -0
  1263. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0011.jpg +0 -0
  1264. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0011.png +0 -0
  1265. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0012.jpg +0 -0
  1266. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0012.png +0 -0
  1267. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0013.jpg +0 -0
  1268. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0013.png +0 -0
  1269. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0014.jpg +0 -0
  1270. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0014.png +0 -0
  1271. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0015.jpg +0 -0
  1272. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0015.png +0 -0
  1273. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0016.jpg +0 -0
  1274. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0016.png +0 -0
  1275. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0017.jpg +0 -0
  1276. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0017.png +0 -0
  1277. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0018.jpg +0 -0
  1278. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0018.png +0 -0
  1279. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0019.jpg +0 -0
  1280. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0019.png +0 -0
  1281. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0020.jpg +0 -0
  1282. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0020.png +0 -0
  1283. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0021.jpg +0 -0
  1284. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0021.png +0 -0
  1285. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0022.jpg +0 -0
  1286. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0022.png +0 -0
  1287. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0023.jpg +0 -0
  1288. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0023.png +0 -0
  1289. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0024.jpg +0 -0
  1290. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0024.png +0 -0
  1291. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0025.jpg +0 -0
  1292. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0025.png +0 -0
  1293. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0026.jpg +0 -0
  1294. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0026.png +0 -0
  1295. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0027.jpg +0 -0
  1296. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0027.png +0 -0
  1297. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0028.jpg +0 -0
  1298. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0028.png +0 -0
  1299. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0029.jpg +0 -0
  1300. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0029.png +0 -0
  1301. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0030.jpg +0 -0
  1302. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0030.png +0 -0
  1303. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0031.jpg +0 -0
  1304. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0031.png +0 -0
  1305. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0032.jpg +0 -0
  1306. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0032.png +0 -0
  1307. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0033.jpg +0 -0
  1308. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0033.png +0 -0
  1309. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0034.jpg +0 -0
  1310. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0034.png +0 -0
  1311. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0035.jpg +0 -0
  1312. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0035.png +0 -0
  1313. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0036.jpg +0 -0
  1314. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0036.png +0 -0
  1315. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0037.jpg +0 -0
  1316. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0037.png +0 -0
  1317. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0038.jpg +0 -0
  1318. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0038.png +0 -0
  1319. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0039.jpg +0 -0
  1320. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0039.png +0 -0
  1321. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0040.jpg +0 -0
  1322. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0040.png +0 -0
  1323. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0041.jpg +0 -0
  1324. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0041.png +0 -0
  1325. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0042.jpg +0 -0
  1326. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0042.png +0 -0
  1327. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0043.jpg +0 -0
  1328. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0043.png +0 -0
  1329. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0044.jpg +0 -0
  1330. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0044.png +0 -0
  1331. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0045.jpg +0 -0
  1332. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0045.png +0 -0
  1333. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0046.jpg +0 -0
  1334. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0046.png +0 -0
  1335. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0047.jpg +0 -0
  1336. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0047.png +0 -0
  1337. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0048.jpg +0 -0
  1338. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0048.png +0 -0
  1339. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0049.jpg +0 -0
  1340. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0049.png +0 -0
  1341. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0050.jpg +0 -0
  1342. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0050.png +0 -0
  1343. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0051.jpg +0 -0
  1344. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0051.png +0 -0
  1345. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0052.jpg +0 -0
  1346. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0052.png +0 -0
  1347. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0053.jpg +0 -0
  1348. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0053.png +0 -0
  1349. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0054.jpg +0 -0
  1350. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0054.png +0 -0
  1351. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0055.jpg +0 -0
  1352. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0055.png +0 -0
  1353. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0056.jpg +0 -0
  1354. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0056.png +0 -0
  1355. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0057.jpg +0 -0
  1356. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0057.png +0 -0
  1357. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0058.jpg +0 -0
  1358. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0058.png +0 -0
  1359. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0059.jpg +0 -0
  1360. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0059.png +0 -0
  1361. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0060.jpg +0 -0
  1362. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0060.png +0 -0
  1363. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0061.jpg +0 -0
  1364. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0061.png +0 -0
  1365. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0062.jpg +0 -0
  1366. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0062.png +0 -0
  1367. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0063.jpg +0 -0
  1368. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0063.png +0 -0
  1369. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0064.jpg +0 -0
  1370. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0064.png +0 -0
  1371. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0065.jpg +0 -0
  1372. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0065.png +0 -0
  1373. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0066.jpg +0 -0
  1374. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0066.png +0 -0
  1375. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0067.jpg +0 -0
  1376. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0067.png +0 -0
  1377. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0068.jpg +0 -0
  1378. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0068.png +0 -0
  1379. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0069.jpg +0 -0
  1380. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0069.png +0 -0
  1381. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0070.jpg +0 -0
  1382. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0070.png +0 -0
  1383. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0071.jpg +0 -0
  1384. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0071.png +0 -0
  1385. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0072.jpg +0 -0
  1386. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0072.png +0 -0
  1387. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0073.jpg +0 -0
  1388. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0073.png +0 -0
  1389. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0074.jpg +0 -0
  1390. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0074.png +0 -0
  1391. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0075.jpg +0 -0
  1392. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0075.png +0 -0
  1393. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0076.jpg +0 -0
  1394. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0076.png +0 -0
  1395. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0077.jpg +0 -0
  1396. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0077.png +0 -0
  1397. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0078.jpg +0 -0
  1398. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0078.png +0 -0
  1399. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0079.jpg +0 -0
  1400. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0079.png +0 -0
  1401. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0080.jpg +0 -0
  1402. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0080.png +0 -0
  1403. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0081.jpg +0 -0
  1404. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0081.png +0 -0
  1405. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0082.jpg +0 -0
  1406. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0082.png +0 -0
  1407. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0083.jpg +0 -0
  1408. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0083.png +0 -0
  1409. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0084.jpg +0 -0
  1410. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0084.png +0 -0
  1411. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0085.jpg +0 -0
  1412. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0085.png +0 -0
  1413. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0086.jpg +0 -0
  1414. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0086.png +0 -0
  1415. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0087.jpg +0 -0
  1416. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0087.png +0 -0
  1417. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0088.jpg +0 -0
  1418. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0088.png +0 -0
  1419. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0089.jpg +0 -0
  1420. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0089.png +0 -0
  1421. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0090.jpg +0 -0
  1422. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.0090.png +0 -0
  1423. tlrender-0.21.0/etc/SampleData/Seq/BART_2021-02-07.wav +0 -0
  1424. tlrender-0.21.0/etc/SampleData/Seq/Counter.0.png +0 -0
  1425. tlrender-0.21.0/etc/SampleData/Seq/Counter.1.png +0 -0
  1426. tlrender-0.21.0/etc/SampleData/Seq/Counter.2.png +0 -0
  1427. tlrender-0.21.0/etc/SampleData/Seq/Counter.3.png +0 -0
  1428. tlrender-0.21.0/etc/SampleData/Seq/Counter.4.png +0 -0
  1429. tlrender-0.21.0/etc/SampleData/Seq/Counter.5.png +0 -0
  1430. tlrender-0.21.0/etc/SampleData/Seq/Counter.6.png +0 -0
  1431. tlrender-0.21.0/etc/SampleData/Seq/Counter.7.png +0 -0
  1432. tlrender-0.21.0/etc/SampleData/Seq/Counter.8.png +0 -0
  1433. tlrender-0.21.0/etc/SampleData/Seq/Counter.9.png +0 -0
  1434. tlrender-0.21.0/etc/SampleData/SingleClip.otio +95 -0
  1435. tlrender-0.21.0/etc/SampleData/SingleClip.otioz +0 -0
  1436. tlrender-0.21.0/etc/SampleData/SingleClipSeq.otio +100 -0
  1437. tlrender-0.21.0/etc/SampleData/SingleClipSeq.otioz +0 -0
  1438. tlrender-0.21.0/etc/SampleData/SpatialCoordinates.otio +112 -0
  1439. tlrender-0.21.0/etc/SampleData/SpatialCoordinatesCentered.otio +112 -0
  1440. tlrender-0.21.0/etc/SampleData/SpatialCoordinatesOffsetY.otio +112 -0
  1441. tlrender-0.21.0/etc/SampleData/SpatialCoordinatesPartial.otio +99 -0
  1442. tlrender-0.21.0/etc/SampleData/SpatialCoordinatesSecondClip.otio +99 -0
  1443. tlrender-0.21.0/etc/SampleData/SpatialCoordinatesSideBySide.otio +112 -0
  1444. tlrender-0.21.0/etc/SampleData/SpatialCoordinatesUnits.otio +112 -0
  1445. tlrender-0.21.0/etc/SampleData/SpatialLarge.png +0 -0
  1446. tlrender-0.21.0/etc/SampleData/SpatialSmall.png +0 -0
  1447. tlrender-0.21.0/etc/SampleData/StillImage.otio +52 -0
  1448. tlrender-0.21.0/etc/SampleData/StreamedSeq.otioz +0 -0
  1449. tlrender-0.21.0/etc/SampleData/Transition.otio +191 -0
  1450. tlrender-0.21.0/etc/SampleData/Transition2.otio +157 -0
  1451. tlrender-0.21.0/etc/SampleData/Transition3.otio +157 -0
  1452. tlrender-0.21.0/etc/SampleData/TransitionAndLinearTimeWarp.otio +115 -0
  1453. tlrender-0.21.0/etc/SampleData/TransitionGap.otio +255 -0
  1454. tlrender-0.21.0/etc/SampleData/TransitionOverlay.otio +281 -0
  1455. tlrender-0.21.0/etc/SampleData/Version.otio +229 -0
  1456. tlrender-0.21.0/etc/SampleData/Version2.otio +297 -0
  1457. tlrender-0.21.0/etc/SampleData/Version3.otio +229 -0
  1458. tlrender-0.21.0/etc/SampleData/Version4.otio +161 -0
  1459. tlrender-0.21.0/etc/SampleData/Version5.otio +229 -0
  1460. tlrender-0.21.0/etc/SampleData/VideoLevels.png +0 -0
  1461. tlrender-0.21.0/etc/SampleData/VideoLevels.svg +254 -0
  1462. tlrender-0.21.0/etc/SampleData//345/244/247/345/271/263/345/216/237.otio +52 -0
  1463. tlrender-0.21.0/etc/SampleData//345/244/247/345/271/263/345/216/237.otioz +0 -0
  1464. tlrender-0.21.0/etc/SampleData//345/244/247/345/271/263/345/216/237.png +0 -0
  1465. tlrender-0.21.0/etc/SuperBuild/CMakeLists.txt +196 -0
  1466. tlrender-0.21.0/etc/SuperBuild/FFmpeg-patch/subfile.patch +31 -0
  1467. tlrender-0.21.0/etc/SuperBuild/LibRaw-patch/patch.cmake +17 -0
  1468. tlrender-0.21.0/etc/SuperBuild/NASM-patch/Makefile.in +548 -0
  1469. tlrender-0.21.0/etc/SuperBuild/NASM-patch/config/config.h.in +913 -0
  1470. tlrender-0.21.0/etc/SuperBuild/NASM-patch/configure +11471 -0
  1471. tlrender-0.21.0/etc/SuperBuild/OTIO-patch/otio.patch +600 -0
  1472. tlrender-0.21.0/etc/SuperBuild/ZLIB-patch/CMakeLists.txt +221 -0
  1473. tlrender-0.21.0/etc/SuperBuild/ZLIB-patch/zconf.h.cmakein +541 -0
  1474. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/ApplyPatch.cmake +35 -0
  1475. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/BuildFFmpeg.cmake +620 -0
  1476. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/BuildImath.cmake +16 -0
  1477. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/BuildLibRaw.cmake +43 -0
  1478. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/BuildNASM.cmake +17 -0
  1479. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/BuildOTIO.cmake +134 -0
  1480. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/BuildOpenColorIO.cmake +31 -0
  1481. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/BuildOpenEXR.cmake +24 -0
  1482. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/BuildOpenImageIO.cmake +60 -0
  1483. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/BuildOpenJPH.cmake +25 -0
  1484. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/BuildTIFF.cmake +33 -0
  1485. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/BuildUSD.cmake +47 -0
  1486. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/Buildaom.cmake +28 -0
  1487. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/Buildexpat.cmake +20 -0
  1488. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/Buildlibjpeg-turbo.cmake +48 -0
  1489. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/Buildminizip-ng.cmake +44 -0
  1490. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/Buildnv-codec-headers.cmake +14 -0
  1491. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/Buildopenapv.cmake +46 -0
  1492. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/Buildpystring.cmake +36 -0
  1493. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/Buildsubprocess.cmake +18 -0
  1494. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/Buildsvt-av1.cmake +31 -0
  1495. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/Buildyaml-cpp.cmake +22 -0
  1496. tlrender-0.21.0/etc/SuperBuild/cmake/Modules/OTIOInstallNames.cmake +91 -0
  1497. tlrender-0.21.0/etc/SuperBuild/pystring-patch/CMakeLists.txt +24 -0
  1498. tlrender-0.21.0/etc/SuperBuild/yaml-cpp-patch/src/emitterutils.cpp +498 -0
  1499. tlrender-0.21.0/etc/Web/coi-serviceworker.js +146 -0
  1500. tlrender-0.21.0/etc/Web/index.html.in +131 -0
  1501. tlrender-0.21.0/etc/Web/mp4box.all.min.js +4 -0
  1502. tlrender-0.21.0/etc/Web/test.otio +47 -0
  1503. tlrender-0.21.0/etc/Windows/sbuild.bat +58 -0
  1504. tlrender-0.21.0/etc/macOS/sbuild.sh +46 -0
  1505. tlrender-0.21.0/examples/CMakeLists.txt +29 -0
  1506. tlrender-0.21.0/examples/browse/CMakeLists.txt +3 -0
  1507. tlrender-0.21.0/examples/browse/browse.cpp +249 -0
  1508. tlrender-0.21.0/examples/player/CMakeLists.txt +36 -0
  1509. tlrender-0.21.0/examples/player/player.cpp +774 -0
  1510. tlrender-0.21.0/examples/player-python/App.py +108 -0
  1511. tlrender-0.21.0/examples/player-python/DocumentModel.py +65 -0
  1512. tlrender-0.21.0/examples/player-python/FileActions.py +54 -0
  1513. tlrender-0.21.0/examples/player-python/MainWindow.py +139 -0
  1514. tlrender-0.21.0/examples/player-python/Menus.py +87 -0
  1515. tlrender-0.21.0/examples/player-python/PlaybackActions.py +178 -0
  1516. tlrender-0.21.0/examples/player-python/PlaybackBar.py +110 -0
  1517. tlrender-0.21.0/examples/player-python/SettingsModel.py +60 -0
  1518. tlrender-0.21.0/examples/player-python/SettingsWidget.py +134 -0
  1519. tlrender-0.21.0/examples/player-python/StatusBar.py +92 -0
  1520. tlrender-0.21.0/examples/player-python/ToolBars.py +38 -0
  1521. tlrender-0.21.0/examples/player-python/ViewActions.py +66 -0
  1522. tlrender-0.21.0/examples/player-python/WindowActions.py +45 -0
  1523. tlrender-0.21.0/examples/player-python/player.py +18 -0
  1524. tlrender-0.21.0/examples/python/browser.py +158 -0
  1525. tlrender-0.21.0/examples/python/mdi.py +128 -0
  1526. tlrender-0.21.0/examples/python/player.py +100 -0
  1527. tlrender-0.21.0/examples/test-patterns/App.cpp +172 -0
  1528. tlrender-0.21.0/examples/test-patterns/App.h +49 -0
  1529. tlrender-0.21.0/examples/test-patterns/CMakeLists.txt +9 -0
  1530. tlrender-0.21.0/examples/test-patterns/TestPatterns.cpp +320 -0
  1531. tlrender-0.21.0/examples/test-patterns/TestPatterns.h +118 -0
  1532. tlrender-0.21.0/examples/test-patterns/main.cpp +30 -0
  1533. tlrender-0.21.0/lib/tlRender/BakeApp/App.cpp +721 -0
  1534. tlrender-0.21.0/lib/tlRender/BakeApp/App.h +138 -0
  1535. tlrender-0.21.0/lib/tlRender/BakeApp/CMakeLists.txt +32 -0
  1536. tlrender-0.21.0/lib/tlRender/CMakeLists.txt +35 -0
  1537. tlrender-0.21.0/lib/tlRender/Core/Audio.cpp +658 -0
  1538. tlrender-0.21.0/lib/tlRender/Core/Audio.h +170 -0
  1539. tlrender-0.21.0/lib/tlRender/Core/AudioInline.h +67 -0
  1540. tlrender-0.21.0/lib/tlRender/Core/AudioResample.cpp +155 -0
  1541. tlrender-0.21.0/lib/tlRender/Core/AudioResample.h +46 -0
  1542. tlrender-0.21.0/lib/tlRender/Core/CMakeLists.txt +72 -0
  1543. tlrender-0.21.0/lib/tlRender/Core/Export.h +69 -0
  1544. tlrender-0.21.0/lib/tlRender/Core/HDR.cpp +49 -0
  1545. tlrender-0.21.0/lib/tlRender/Core/HDR.h +74 -0
  1546. tlrender-0.21.0/lib/tlRender/Core/HDRInline.h +6 -0
  1547. tlrender-0.21.0/lib/tlRender/Core/ImageScale.cpp +379 -0
  1548. tlrender-0.21.0/lib/tlRender/Core/ImageScale.h +55 -0
  1549. tlrender-0.21.0/lib/tlRender/Core/Time.cpp +311 -0
  1550. tlrender-0.21.0/lib/tlRender/Core/Time.h +127 -0
  1551. tlrender-0.21.0/lib/tlRender/Core/TimeInline.h +31 -0
  1552. tlrender-0.21.0/lib/tlRender/Core/URL.cpp +92 -0
  1553. tlrender-0.21.0/lib/tlRender/Core/URL.h +22 -0
  1554. tlrender-0.21.0/lib/tlRender/Core/Util.h +7 -0
  1555. tlrender-0.21.0/lib/tlRender/Core/Version.h +16 -0
  1556. tlrender-0.21.0/lib/tlRender/CorePy/Audio.cpp +64 -0
  1557. tlrender-0.21.0/lib/tlRender/CorePy/AudioResample.cpp +31 -0
  1558. tlrender-0.21.0/lib/tlRender/CorePy/Bindings.cpp +29 -0
  1559. tlrender-0.21.0/lib/tlRender/CorePy/Bindings.h +23 -0
  1560. tlrender-0.21.0/lib/tlRender/CorePy/CMakeLists.txt +41 -0
  1561. tlrender-0.21.0/lib/tlRender/CorePy/HDR.cpp +49 -0
  1562. tlrender-0.21.0/lib/tlRender/CorePy/Time.cpp +31 -0
  1563. tlrender-0.21.0/lib/tlRender/CorePy/URL.cpp +26 -0
  1564. tlrender-0.21.0/lib/tlRender/CoreTest/AudioTest.cpp +399 -0
  1565. tlrender-0.21.0/lib/tlRender/CoreTest/AudioTest.h +43 -0
  1566. tlrender-0.21.0/lib/tlRender/CoreTest/CMakeLists.txt +25 -0
  1567. tlrender-0.21.0/lib/tlRender/CoreTest/HDRTest.cpp +72 -0
  1568. tlrender-0.21.0/lib/tlRender/CoreTest/HDRTest.h +28 -0
  1569. tlrender-0.21.0/lib/tlRender/CoreTest/TimeTest.cpp +418 -0
  1570. tlrender-0.21.0/lib/tlRender/CoreTest/TimeTest.h +30 -0
  1571. tlrender-0.21.0/lib/tlRender/CoreTest/URLTest.cpp +68 -0
  1572. tlrender-0.21.0/lib/tlRender/CoreTest/URLTest.h +27 -0
  1573. tlrender-0.21.0/lib/tlRender/GL/CMakeLists.txt +49 -0
  1574. tlrender-0.21.0/lib/tlRender/GL/Export.h +34 -0
  1575. tlrender-0.21.0/lib/tlRender/GL/Render.cpp +1086 -0
  1576. tlrender-0.21.0/lib/tlRender/GL/Render.h +233 -0
  1577. tlrender-0.21.0/lib/tlRender/GL/RenderPrims.cpp +96 -0
  1578. tlrender-0.21.0/lib/tlRender/GL/RenderPrivate.h +142 -0
  1579. tlrender-0.21.0/lib/tlRender/GL/RenderShaders_GLES_3.cpp +420 -0
  1580. tlrender-0.21.0/lib/tlRender/GL/RenderShaders_GL_4_1.cpp +487 -0
  1581. tlrender-0.21.0/lib/tlRender/GL/RenderVideo.cpp +1652 -0
  1582. tlrender-0.21.0/lib/tlRender/GLTest/CMakeLists.txt +26 -0
  1583. tlrender-0.21.0/lib/tlRender/GLTest/RenderTest.cpp +612 -0
  1584. tlrender-0.21.0/lib/tlRender/GLTest/RenderTest.h +36 -0
  1585. tlrender-0.21.0/lib/tlRender/IO/CMakeLists.txt +122 -0
  1586. tlrender-0.21.0/lib/tlRender/IO/Decode.cpp +18 -0
  1587. tlrender-0.21.0/lib/tlRender/IO/Decode.h +52 -0
  1588. tlrender-0.21.0/lib/tlRender/IO/EXR.cpp +851 -0
  1589. tlrender-0.21.0/lib/tlRender/IO/EXR.h +141 -0
  1590. tlrender-0.21.0/lib/tlRender/IO/EXRPrivate.h +59 -0
  1591. tlrender-0.21.0/lib/tlRender/IO/EXRRead.cpp +747 -0
  1592. tlrender-0.21.0/lib/tlRender/IO/EXRWrite.cpp +85 -0
  1593. tlrender-0.21.0/lib/tlRender/IO/Export.h +34 -0
  1594. tlrender-0.21.0/lib/tlRender/IO/FFmpeg.cpp +812 -0
  1595. tlrender-0.21.0/lib/tlRender/IO/FFmpeg.h +279 -0
  1596. tlrender-0.21.0/lib/tlRender/IO/FFmpegCmd.cpp +463 -0
  1597. tlrender-0.21.0/lib/tlRender/IO/FFmpegCmd.h +176 -0
  1598. tlrender-0.21.0/lib/tlRender/IO/FFmpegCmdPrivate.h +66 -0
  1599. tlrender-0.21.0/lib/tlRender/IO/FFmpegCmdRead.cpp +976 -0
  1600. tlrender-0.21.0/lib/tlRender/IO/FFmpegCmdWrite.cpp +293 -0
  1601. tlrender-0.21.0/lib/tlRender/IO/FFmpegPrivate.h +77 -0
  1602. tlrender-0.21.0/lib/tlRender/IO/FFmpegRead.cpp +661 -0
  1603. tlrender-0.21.0/lib/tlRender/IO/FFmpegReadAudio.cpp +714 -0
  1604. tlrender-0.21.0/lib/tlRender/IO/FFmpegReadPrivate.h +287 -0
  1605. tlrender-0.21.0/lib/tlRender/IO/FFmpegReadVideo.cpp +1307 -0
  1606. tlrender-0.21.0/lib/tlRender/IO/FFmpegWrite.cpp +1107 -0
  1607. tlrender-0.21.0/lib/tlRender/IO/IO.cpp +120 -0
  1608. tlrender-0.21.0/lib/tlRender/IO/IO.h +157 -0
  1609. tlrender-0.21.0/lib/tlRender/IO/IOInline.h +80 -0
  1610. tlrender-0.21.0/lib/tlRender/IO/OIIO.cpp +150 -0
  1611. tlrender-0.21.0/lib/tlRender/IO/OIIO.h +111 -0
  1612. tlrender-0.21.0/lib/tlRender/IO/OIIORead.cpp +259 -0
  1613. tlrender-0.21.0/lib/tlRender/IO/OIIOWrite.cpp +179 -0
  1614. tlrender-0.21.0/lib/tlRender/IO/PNG.cpp +114 -0
  1615. tlrender-0.21.0/lib/tlRender/IO/PNG.h +130 -0
  1616. tlrender-0.21.0/lib/tlRender/IO/PNGRead.cpp +66 -0
  1617. tlrender-0.21.0/lib/tlRender/IO/PNGWrite.cpp +59 -0
  1618. tlrender-0.21.0/lib/tlRender/IO/Plugin.cpp +91 -0
  1619. tlrender-0.21.0/lib/tlRender/IO/Plugin.h +85 -0
  1620. tlrender-0.21.0/lib/tlRender/IO/Read.cpp +95 -0
  1621. tlrender-0.21.0/lib/tlRender/IO/Read.h +125 -0
  1622. tlrender-0.21.0/lib/tlRender/IO/RequestQueuePrivate.h +319 -0
  1623. tlrender-0.21.0/lib/tlRender/IO/SVG.cpp +47 -0
  1624. tlrender-0.21.0/lib/tlRender/IO/SVG.h +72 -0
  1625. tlrender-0.21.0/lib/tlRender/IO/SVGRead.cpp +153 -0
  1626. tlrender-0.21.0/lib/tlRender/IO/SeqDecode.cpp +319 -0
  1627. tlrender-0.21.0/lib/tlRender/IO/SeqDecode.h +86 -0
  1628. tlrender-0.21.0/lib/tlRender/IO/SeqIO.cpp +65 -0
  1629. tlrender-0.21.0/lib/tlRender/IO/SeqIO.h +100 -0
  1630. tlrender-0.21.0/lib/tlRender/IO/SeqIOWrite.cpp +58 -0
  1631. tlrender-0.21.0/lib/tlRender/IO/System.cpp +377 -0
  1632. tlrender-0.21.0/lib/tlRender/IO/System.h +139 -0
  1633. tlrender-0.21.0/lib/tlRender/IO/SystemInline.h +41 -0
  1634. tlrender-0.21.0/lib/tlRender/IO/USD.cpp +129 -0
  1635. tlrender-0.21.0/lib/tlRender/IO/USD.h +125 -0
  1636. tlrender-0.21.0/lib/tlRender/IO/USDPrivate.h +62 -0
  1637. tlrender-0.21.0/lib/tlRender/IO/USDRead.cpp +70 -0
  1638. tlrender-0.21.0/lib/tlRender/IO/USDRender.cpp +987 -0
  1639. tlrender-0.21.0/lib/tlRender/IO/WebCodecs.cpp +747 -0
  1640. tlrender-0.21.0/lib/tlRender/IO/WebCodecs.h +116 -0
  1641. tlrender-0.21.0/lib/tlRender/IO/WebCodecsWorker.js +1242 -0
  1642. tlrender-0.21.0/lib/tlRender/IO/Write.cpp +58 -0
  1643. tlrender-0.21.0/lib/tlRender/IO/Write.h +85 -0
  1644. tlrender-0.21.0/lib/tlRender/IOPy/Bindings.cpp +30 -0
  1645. tlrender-0.21.0/lib/tlRender/IOPy/Bindings.h +22 -0
  1646. tlrender-0.21.0/lib/tlRender/IOPy/CMakeLists.txt +42 -0
  1647. tlrender-0.21.0/lib/tlRender/IOPy/IO.cpp +50 -0
  1648. tlrender-0.21.0/lib/tlRender/IOPy/Plugin.cpp +44 -0
  1649. tlrender-0.21.0/lib/tlRender/IOPy/Read.cpp +51 -0
  1650. tlrender-0.21.0/lib/tlRender/IOPy/SeqIO.cpp +45 -0
  1651. tlrender-0.21.0/lib/tlRender/IOPy/System.cpp +84 -0
  1652. tlrender-0.21.0/lib/tlRender/IOPy/Write.cpp +50 -0
  1653. tlrender-0.21.0/lib/tlRender/IOTest/CMakeLists.txt +49 -0
  1654. tlrender-0.21.0/lib/tlRender/IOTest/EXRTest.cpp +484 -0
  1655. tlrender-0.21.0/lib/tlRender/IOTest/EXRTest.h +55 -0
  1656. tlrender-0.21.0/lib/tlRender/IOTest/FFmpegTest.cpp +1727 -0
  1657. tlrender-0.21.0/lib/tlRender/IOTest/FFmpegTest.h +63 -0
  1658. tlrender-0.21.0/lib/tlRender/IOTest/IOTest.cpp +627 -0
  1659. tlrender-0.21.0/lib/tlRender/IOTest/IOTest.h +32 -0
  1660. tlrender-0.21.0/lib/tlRender/IOTest/OIIOTest.cpp +200 -0
  1661. tlrender-0.21.0/lib/tlRender/IOTest/OIIOTest.h +48 -0
  1662. tlrender-0.21.0/lib/tlRender/IOTest/PNGTest.cpp +174 -0
  1663. tlrender-0.21.0/lib/tlRender/IOTest/PNGTest.h +33 -0
  1664. tlrender-0.21.0/lib/tlRender/IOTest/RequestQueueTest.cpp +225 -0
  1665. tlrender-0.21.0/lib/tlRender/IOTest/RequestQueueTest.h +31 -0
  1666. tlrender-0.21.0/lib/tlRender/IOTest/SVGTest.cpp +146 -0
  1667. tlrender-0.21.0/lib/tlRender/IOTest/SVGTest.h +37 -0
  1668. tlrender-0.21.0/lib/tlRender/PlayApp/App.cpp +245 -0
  1669. tlrender-0.21.0/lib/tlRender/PlayApp/App.h +76 -0
  1670. tlrender-0.21.0/lib/tlRender/PlayApp/CMakeLists.txt +62 -0
  1671. tlrender-0.21.0/lib/tlRender/PlayApp/CompareActions.cpp +108 -0
  1672. tlrender-0.21.0/lib/tlRender/PlayApp/CompareActions.h +44 -0
  1673. tlrender-0.21.0/lib/tlRender/PlayApp/FileActions.cpp +144 -0
  1674. tlrender-0.21.0/lib/tlRender/PlayApp/FileActions.h +43 -0
  1675. tlrender-0.21.0/lib/tlRender/PlayApp/FilesModel.cpp +250 -0
  1676. tlrender-0.21.0/lib/tlRender/PlayApp/FilesModel.h +67 -0
  1677. tlrender-0.21.0/lib/tlRender/PlayApp/MainWindow.cpp +218 -0
  1678. tlrender-0.21.0/lib/tlRender/PlayApp/MainWindow.h +85 -0
  1679. tlrender-0.21.0/lib/tlRender/PlayApp/MenuBar.cpp +320 -0
  1680. tlrender-0.21.0/lib/tlRender/PlayApp/MenuBar.h +200 -0
  1681. tlrender-0.21.0/lib/tlRender/PlayApp/PlaybackActions.cpp +252 -0
  1682. tlrender-0.21.0/lib/tlRender/PlayApp/PlaybackActions.h +45 -0
  1683. tlrender-0.21.0/lib/tlRender/PlayApp/PlaybackBar.cpp +176 -0
  1684. tlrender-0.21.0/lib/tlRender/PlayApp/PlaybackBar.h +69 -0
  1685. tlrender-0.21.0/lib/tlRender/PlayApp/SettingsModel.cpp +66 -0
  1686. tlrender-0.21.0/lib/tlRender/PlayApp/SettingsModel.h +52 -0
  1687. tlrender-0.21.0/lib/tlRender/PlayApp/SettingsWidget.cpp +195 -0
  1688. tlrender-0.21.0/lib/tlRender/PlayApp/SettingsWidget.h +109 -0
  1689. tlrender-0.21.0/lib/tlRender/PlayApp/StatusBar.cpp +125 -0
  1690. tlrender-0.21.0/lib/tlRender/PlayApp/StatusBar.h +52 -0
  1691. tlrender-0.21.0/lib/tlRender/PlayApp/TabBar.cpp +88 -0
  1692. tlrender-0.21.0/lib/tlRender/PlayApp/TabBar.h +49 -0
  1693. tlrender-0.21.0/lib/tlRender/PlayApp/ToolBars.cpp +172 -0
  1694. tlrender-0.21.0/lib/tlRender/PlayApp/ToolBars.h +141 -0
  1695. tlrender-0.21.0/lib/tlRender/PlayApp/ViewActions.cpp +105 -0
  1696. tlrender-0.21.0/lib/tlRender/PlayApp/ViewActions.h +45 -0
  1697. tlrender-0.21.0/lib/tlRender/PlayApp/WindowActions.cpp +97 -0
  1698. tlrender-0.21.0/lib/tlRender/PlayApp/WindowActions.h +44 -0
  1699. tlrender-0.21.0/lib/tlRender/Resource/CMakeLists.txt +47 -0
  1700. tlrender-0.21.0/lib/tlRender/Timeline/Audio.cpp +13 -0
  1701. tlrender-0.21.0/lib/tlRender/Timeline/Audio.h +30 -0
  1702. tlrender-0.21.0/lib/tlRender/Timeline/AudioSystem.cpp +419 -0
  1703. tlrender-0.21.0/lib/tlRender/Timeline/AudioSystem.h +76 -0
  1704. tlrender-0.21.0/lib/tlRender/Timeline/BackgroundOptions.cpp +56 -0
  1705. tlrender-0.21.0/lib/tlRender/Timeline/BackgroundOptions.h +72 -0
  1706. tlrender-0.21.0/lib/tlRender/Timeline/CMakeLists.txt +83 -0
  1707. tlrender-0.21.0/lib/tlRender/Timeline/ColorOptions.cpp +166 -0
  1708. tlrender-0.21.0/lib/tlRender/Timeline/ColorOptions.h +111 -0
  1709. tlrender-0.21.0/lib/tlRender/Timeline/CompareOptions.cpp +329 -0
  1710. tlrender-0.21.0/lib/tlRender/Timeline/CompareOptions.h +123 -0
  1711. tlrender-0.21.0/lib/tlRender/Timeline/DisplayOptions.cpp +287 -0
  1712. tlrender-0.21.0/lib/tlRender/Timeline/DisplayOptions.h +185 -0
  1713. tlrender-0.21.0/lib/tlRender/Timeline/Export.h +34 -0
  1714. tlrender-0.21.0/lib/tlRender/Timeline/ForegroundOptions.cpp +173 -0
  1715. tlrender-0.21.0/lib/tlRender/Timeline/ForegroundOptions.h +149 -0
  1716. tlrender-0.21.0/lib/tlRender/Timeline/IRender.cpp +10 -0
  1717. tlrender-0.21.0/lib/tlRender/Timeline/IRender.h +77 -0
  1718. tlrender-0.21.0/lib/tlRender/Timeline/Init.cpp +55 -0
  1719. tlrender-0.21.0/lib/tlRender/Timeline/Init.h +20 -0
  1720. tlrender-0.21.0/lib/tlRender/Timeline/OTIOVersion.h +24 -0
  1721. tlrender-0.21.0/lib/tlRender/Timeline/Player.cpp +1121 -0
  1722. tlrender-0.21.0/lib/tlRender/Timeline/Player.h +448 -0
  1723. tlrender-0.21.0/lib/tlRender/Timeline/PlayerAudio.cpp +577 -0
  1724. tlrender-0.21.0/lib/tlRender/Timeline/PlayerOptions.cpp +21 -0
  1725. tlrender-0.21.0/lib/tlRender/Timeline/PlayerOptions.h +76 -0
  1726. tlrender-0.21.0/lib/tlRender/Timeline/PlayerPrivate.cpp +848 -0
  1727. tlrender-0.21.0/lib/tlRender/Timeline/PlayerPrivate.h +272 -0
  1728. tlrender-0.21.0/lib/tlRender/Timeline/System.cpp +103 -0
  1729. tlrender-0.21.0/lib/tlRender/Timeline/System.h +40 -0
  1730. tlrender-0.21.0/lib/tlRender/Timeline/TimeUnits.cpp +225 -0
  1731. tlrender-0.21.0/lib/tlRender/Timeline/TimeUnits.h +107 -0
  1732. tlrender-0.21.0/lib/tlRender/Timeline/Timeline.cpp +3349 -0
  1733. tlrender-0.21.0/lib/tlRender/Timeline/Timeline.h +389 -0
  1734. tlrender-0.21.0/lib/tlRender/Timeline/TimelineOptions.cpp +32 -0
  1735. tlrender-0.21.0/lib/tlRender/Timeline/TimelineOptions.h +124 -0
  1736. tlrender-0.21.0/lib/tlRender/Timeline/TimelinePrivate.h +332 -0
  1737. tlrender-0.21.0/lib/tlRender/Timeline/Transition.cpp +32 -0
  1738. tlrender-0.21.0/lib/tlRender/Timeline/Transition.h +31 -0
  1739. tlrender-0.21.0/lib/tlRender/Timeline/Util.cpp +595 -0
  1740. tlrender-0.21.0/lib/tlRender/Timeline/Util.h +126 -0
  1741. tlrender-0.21.0/lib/tlRender/Timeline/UtilInline.h +21 -0
  1742. tlrender-0.21.0/lib/tlRender/Timeline/Video.cpp +26 -0
  1743. tlrender-0.21.0/lib/tlRender/Timeline/Video.h +94 -0
  1744. tlrender-0.21.0/lib/tlRender/Timeline/Zip.cpp +509 -0
  1745. tlrender-0.21.0/lib/tlRender/Timeline/ZipPrivate.h +61 -0
  1746. tlrender-0.21.0/lib/tlRender/TimelinePy/Audio.cpp +53 -0
  1747. tlrender-0.21.0/lib/tlRender/TimelinePy/AudioSystem.cpp +61 -0
  1748. tlrender-0.21.0/lib/tlRender/TimelinePy/BackgroundOptions.cpp +93 -0
  1749. tlrender-0.21.0/lib/tlRender/TimelinePy/Bindings.cpp +51 -0
  1750. tlrender-0.21.0/lib/tlRender/TimelinePy/Bindings.h +33 -0
  1751. tlrender-0.21.0/lib/tlRender/TimelinePy/CMakeLists.txt +60 -0
  1752. tlrender-0.21.0/lib/tlRender/TimelinePy/ColorOptions.cpp +92 -0
  1753. tlrender-0.21.0/lib/tlRender/TimelinePy/CompareOptions.cpp +64 -0
  1754. tlrender-0.21.0/lib/tlRender/TimelinePy/DisplayOptions.cpp +185 -0
  1755. tlrender-0.21.0/lib/tlRender/TimelinePy/ForegroundOptions.cpp +111 -0
  1756. tlrender-0.21.0/lib/tlRender/TimelinePy/IRender.cpp +40 -0
  1757. tlrender-0.21.0/lib/tlRender/TimelinePy/OTIOCasters.h +122 -0
  1758. tlrender-0.21.0/lib/tlRender/TimelinePy/Player.cpp +155 -0
  1759. tlrender-0.21.0/lib/tlRender/TimelinePy/PlayerOptions.cpp +68 -0
  1760. tlrender-0.21.0/lib/tlRender/TimelinePy/System.cpp +36 -0
  1761. tlrender-0.21.0/lib/tlRender/TimelinePy/TimeUnits.cpp +53 -0
  1762. tlrender-0.21.0/lib/tlRender/TimelinePy/Timeline.cpp +127 -0
  1763. tlrender-0.21.0/lib/tlRender/TimelinePy/TimelineOptions.cpp +50 -0
  1764. tlrender-0.21.0/lib/tlRender/TimelinePy/Transition.cpp +39 -0
  1765. tlrender-0.21.0/lib/tlRender/TimelinePy/Util.cpp +50 -0
  1766. tlrender-0.21.0/lib/tlRender/TimelinePy/Video.cpp +59 -0
  1767. tlrender-0.21.0/lib/tlRender/TimelineTest/AudioSystemTest.cpp +48 -0
  1768. tlrender-0.21.0/lib/tlRender/TimelineTest/AudioSystemTest.h +23 -0
  1769. tlrender-0.21.0/lib/tlRender/TimelineTest/BackgroundOptionsTest.cpp +89 -0
  1770. tlrender-0.21.0/lib/tlRender/TimelineTest/BackgroundOptionsTest.h +25 -0
  1771. tlrender-0.21.0/lib/tlRender/TimelineTest/CMakeLists.txt +41 -0
  1772. tlrender-0.21.0/lib/tlRender/TimelineTest/ColorOptionsTest.cpp +104 -0
  1773. tlrender-0.21.0/lib/tlRender/TimelineTest/ColorOptionsTest.h +23 -0
  1774. tlrender-0.21.0/lib/tlRender/TimelineTest/CompareOptionsTest.cpp +202 -0
  1775. tlrender-0.21.0/lib/tlRender/TimelineTest/CompareOptionsTest.h +23 -0
  1776. tlrender-0.21.0/lib/tlRender/TimelineTest/DisplayOptionsTest.cpp +69 -0
  1777. tlrender-0.21.0/lib/tlRender/TimelineTest/DisplayOptionsTest.h +23 -0
  1778. tlrender-0.21.0/lib/tlRender/TimelineTest/ForegroundOptionsTest.cpp +128 -0
  1779. tlrender-0.21.0/lib/tlRender/TimelineTest/ForegroundOptionsTest.h +25 -0
  1780. tlrender-0.21.0/lib/tlRender/TimelineTest/PlayerOptionsTest.cpp +74 -0
  1781. tlrender-0.21.0/lib/tlRender/TimelineTest/PlayerOptionsTest.h +23 -0
  1782. tlrender-0.21.0/lib/tlRender/TimelineTest/PlayerTest.cpp +549 -0
  1783. tlrender-0.21.0/lib/tlRender/TimelineTest/PlayerTest.h +32 -0
  1784. tlrender-0.21.0/lib/tlRender/TimelineTest/TimeUnitsTest.cpp +96 -0
  1785. tlrender-0.21.0/lib/tlRender/TimelineTest/TimeUnitsTest.h +29 -0
  1786. tlrender-0.21.0/lib/tlRender/TimelineTest/TimelineTest.cpp +1697 -0
  1787. tlrender-0.21.0/lib/tlRender/TimelineTest/TimelineTest.h +44 -0
  1788. tlrender-0.21.0/lib/tlRender/TimelineTest/UtilTest.cpp +502 -0
  1789. tlrender-0.21.0/lib/tlRender/TimelineTest/UtilTest.h +32 -0
  1790. tlrender-0.21.0/lib/tlRender/UI/CMakeLists.txt +68 -0
  1791. tlrender-0.21.0/lib/tlRender/UI/Export.h +34 -0
  1792. tlrender-0.21.0/lib/tlRender/UI/FileBrowserThumbnails.cpp +103 -0
  1793. tlrender-0.21.0/lib/tlRender/UI/FileBrowserThumbnails.h +54 -0
  1794. tlrender-0.21.0/lib/tlRender/UI/FrameToolBar.cpp +131 -0
  1795. tlrender-0.21.0/lib/tlRender/UI/FrameToolBar.h +50 -0
  1796. tlrender-0.21.0/lib/tlRender/UI/Init.cpp +46 -0
  1797. tlrender-0.21.0/lib/tlRender/UI/Init.h +25 -0
  1798. tlrender-0.21.0/lib/tlRender/UI/ItemOptions.cpp +163 -0
  1799. tlrender-0.21.0/lib/tlRender/UI/ItemOptions.h +169 -0
  1800. tlrender-0.21.0/lib/tlRender/UI/PlaybackLoopWidget.cpp +231 -0
  1801. tlrender-0.21.0/lib/tlRender/UI/PlaybackLoopWidget.h +53 -0
  1802. tlrender-0.21.0/lib/tlRender/UI/PlaybackToolBar.cpp +176 -0
  1803. tlrender-0.21.0/lib/tlRender/UI/PlaybackToolBar.h +54 -0
  1804. tlrender-0.21.0/lib/tlRender/UI/ThumbnailSystem.cpp +1298 -0
  1805. tlrender-0.21.0/lib/tlRender/UI/ThumbnailSystem.h +179 -0
  1806. tlrender-0.21.0/lib/tlRender/UI/TimeEdit.cpp +296 -0
  1807. tlrender-0.21.0/lib/tlRender/UI/TimeEdit.h +99 -0
  1808. tlrender-0.21.0/lib/tlRender/UI/TimeLabel.cpp +228 -0
  1809. tlrender-0.21.0/lib/tlRender/UI/TimeLabel.h +68 -0
  1810. tlrender-0.21.0/lib/tlRender/UI/TimeUnitsWidget.cpp +109 -0
  1811. tlrender-0.21.0/lib/tlRender/UI/TimeUnitsWidget.h +43 -0
  1812. tlrender-0.21.0/lib/tlRender/UI/TimelineItem.cpp +1948 -0
  1813. tlrender-0.21.0/lib/tlRender/UI/TimelineItem.h +198 -0
  1814. tlrender-0.21.0/lib/tlRender/UI/TimelineItemPrivate.h +289 -0
  1815. tlrender-0.21.0/lib/tlRender/UI/TimelineRuler.cpp +825 -0
  1816. tlrender-0.21.0/lib/tlRender/UI/TimelineRuler.h +118 -0
  1817. tlrender-0.21.0/lib/tlRender/UI/TimelineWidget.cpp +1078 -0
  1818. tlrender-0.21.0/lib/tlRender/UI/TimelineWidget.h +262 -0
  1819. tlrender-0.21.0/lib/tlRender/UI/Viewport.cpp +1502 -0
  1820. tlrender-0.21.0/lib/tlRender/UI/Viewport.h +326 -0
  1821. tlrender-0.21.0/lib/tlRender/UIPy/Bindings.cpp +56 -0
  1822. tlrender-0.21.0/lib/tlRender/UIPy/Bindings.h +19 -0
  1823. tlrender-0.21.0/lib/tlRender/UIPy/CMakeLists.txt +56 -0
  1824. tlrender-0.21.0/lib/tlRender/UIPy/FrameToolBar.cpp +50 -0
  1825. tlrender-0.21.0/lib/tlRender/UIPy/ItemOptions.cpp +89 -0
  1826. tlrender-0.21.0/lib/tlRender/UIPy/ItemOptions.h +16 -0
  1827. tlrender-0.21.0/lib/tlRender/UIPy/PlaybackLoopWidget.cpp +47 -0
  1828. tlrender-0.21.0/lib/tlRender/UIPy/PlaybackLoopWidget.h +16 -0
  1829. tlrender-0.21.0/lib/tlRender/UIPy/PlaybackToolBar.cpp +50 -0
  1830. tlrender-0.21.0/lib/tlRender/UIPy/ThumbnailSystem.cpp +39 -0
  1831. tlrender-0.21.0/lib/tlRender/UIPy/ThumbnailSystem.h +15 -0
  1832. tlrender-0.21.0/lib/tlRender/UIPy/TimeEdit.cpp +57 -0
  1833. tlrender-0.21.0/lib/tlRender/UIPy/TimeEdit.h +16 -0
  1834. tlrender-0.21.0/lib/tlRender/UIPy/TimeLabel.cpp +50 -0
  1835. tlrender-0.21.0/lib/tlRender/UIPy/TimeLabel.h +16 -0
  1836. tlrender-0.21.0/lib/tlRender/UIPy/TimeUnitsWidget.cpp +46 -0
  1837. tlrender-0.21.0/lib/tlRender/UIPy/TimeUnitsWidget.h +16 -0
  1838. tlrender-0.21.0/lib/tlRender/UIPy/TimelineRuler.cpp +55 -0
  1839. tlrender-0.21.0/lib/tlRender/UIPy/TimelineRuler.h +16 -0
  1840. tlrender-0.21.0/lib/tlRender/UIPy/TimelineWidget.cpp +107 -0
  1841. tlrender-0.21.0/lib/tlRender/UIPy/TimelineWidget.h +16 -0
  1842. tlrender-0.21.0/lib/tlRender/UIPy/Viewport.cpp +214 -0
  1843. tlrender-0.21.0/lib/tlRender/UIPy/Viewport.h +15 -0
  1844. tlrender-0.21.0/lib/tlRender/UITest/CMakeLists.txt +21 -0
  1845. tlrender-0.21.0/lib/tlRender/UITest/ThumbnailSystemTest.cpp +397 -0
  1846. tlrender-0.21.0/lib/tlRender/UITest/ThumbnailSystemTest.h +29 -0
  1847. tlrender-0.21.0/lib/tlRender/tlRenderPy/Bindings.cpp +41 -0
  1848. tlrender-0.21.0/lib/tlRender/tlRenderPy/CMakeLists.txt +60 -0
  1849. tlrender-0.21.0/lib/tlRender/tlRenderPy/__init__.py +48 -0
  1850. tlrender-0.21.0/pyproject.toml +89 -0
  1851. tlrender-0.21.0/sbuild-linux.sh +9 -0
  1852. tlrender-0.21.0/sbuild-macos.sh +9 -0
  1853. tlrender-0.21.0/sbuild-win.bat +14 -0
  1854. tlrender-0.21.0/tests/CMakeLists.txt +40 -0
  1855. tlrender-0.21.0/tests/run-python-tests.py +31 -0
  1856. tlrender-0.21.0/tests/tl-test/CMakeLists.txt +42 -0
  1857. tlrender-0.21.0/tests/tl-test/tl-test.cpp +305 -0
  1858. tlrender-0.21.0/tests/tl-test/tl-test.h +43 -0
  1859. tlrender-0.21.0/tests/tlRenderPyTest/__init__.py +0 -0
  1860. tlrender-0.21.0/tests/tlRenderPyTest/testCore.py +62 -0
  1861. tlrender-0.21.0/tests/tlRenderPyTest/testEnums.py +39 -0
  1862. tlrender-0.21.0/tests/tlRenderPyTest/testIO.py +54 -0
  1863. tlrender-0.21.0/tests/tlRenderPyTest/testTimeline.py +269 -0
  1864. tlrender-0.21.0/tests/tlRenderPyTest/testUI.py +66 -0
  1865. tlrender-0.21.0/tlRenderConfig.cmake.in +187 -0
@@ -0,0 +1,6 @@
1
+ * text=auto
2
+
3
+ # Patches are applied by git, not compiled, and are the one thing here whose
4
+ # bytes have to survive a checkout as they were written. git apply copes with
5
+ # either ending in practice; this takes the question away.
6
+ *.patch -text
@@ -0,0 +1,18 @@
1
+ build
2
+ Debug
3
+ Release
4
+ RelWithDebInfo
5
+ doc/doxygen
6
+ *~
7
+ .git
8
+ .vscode
9
+ .DS_Store
10
+ .cache
11
+ __pycache__
12
+
13
+ # Personal build settings, read by etc/Config/default.cmake.
14
+ etc/Config/local.cmake
15
+
16
+ # Python wheel builds.
17
+ build-wheel
18
+ dist
@@ -0,0 +1,3 @@
1
+ [submodule "deps/ftk"]
2
+ path = deps/ftk
3
+ url = https://github.com/grizzlypeak3d/feather-tk.git
@@ -0,0 +1,411 @@
1
+ cmake_minimum_required(VERSION 3.31)
2
+ cmake_policy(SET CMP0091 NEW)
3
+ cmake_policy(SET CMP0114 NEW)
4
+ if(POLICY CMP0135)
5
+ cmake_policy(SET CMP0135 NEW)
6
+ endif()
7
+
8
+ file(READ "lib/tlRender/Core/Version.h" VERSION_H)
9
+ string(REGEX MATCH "VERSION_MAJOR ([0-9]*)" _ ${VERSION_H})
10
+ set(TLRENDER_VERSION_MAJOR ${CMAKE_MATCH_1})
11
+ string(REGEX MATCH "VERSION_MINOR ([0-9]*)" _ ${VERSION_H})
12
+ set(TLRENDER_VERSION_MINOR ${CMAKE_MATCH_1})
13
+ string(REGEX MATCH "VERSION_PATCH ([0-9]*)" _ ${VERSION_H})
14
+ set(TLRENDER_VERSION_PATCH ${CMAKE_MATCH_1})
15
+ string(REGEX MATCH "VERSION_DEV \"([0-9a-z.-]*)\"" _ ${VERSION_H})
16
+ set(TLRENDER_VERSION_DEV ${CMAKE_MATCH_1})
17
+ # Composed here rather than read: the header builds it from the macros
18
+ # above, so there is no literal in the file to match. Keep this in step
19
+ # with the way the header spells it.
20
+ set(TLRENDER_VERSION_FULL
21
+ "${TLRENDER_VERSION_MAJOR}.${TLRENDER_VERSION_MINOR}.${TLRENDER_VERSION_PATCH}${TLRENDER_VERSION_DEV}")
22
+
23
+ project(
24
+ tlRender
25
+ VERSION ${TLRENDER_VERSION_MAJOR}.${TLRENDER_VERSION_MINOR}.${TLRENDER_VERSION_PATCH}
26
+ DESCRIPTION "tlRender is an open source library for building playback and review applications for visual effects, film, and animation"
27
+ HOMEPAGE_URL "https://github.com/grizzlypeak3d/tlRender"
28
+ LANGUAGES CXX C)
29
+
30
+ # A Python wheel build: scikit-build-core sets SKBUILD. The wheel settings
31
+ # are read before the options below, the way "cmake -C" would read them, so
32
+ # they win; the dependencies are built here too, since pip runs one CMake
33
+ # project and nothing before it.
34
+ if(SKBUILD)
35
+ include(etc/Config/wheel.cmake)
36
+ include(etc/Python/tlWheelDeps.cmake)
37
+ endif()
38
+
39
+ #-------------------------------------------------------------------------------
40
+ # Build options
41
+
42
+ set(TLRENDER_OCIO ON CACHE BOOL "Enable support for OpenColorIO")
43
+ set(TLRENDER_EXR ON CACHE BOOL "Enable support for EXR I/O")
44
+ set(TLRENDER_FFMPEG ON CACHE BOOL "Enable support for FFmpeg (required for audio)")
45
+ set(TLRENDER_FFMPEG_PLUGIN ON CACHE BOOL "Enable support for FFmpeg I/O")
46
+ set(TLRENDER_OIIO ON CACHE BOOL "Enable support for OpenImageIO")
47
+ set(TLRENDER_SVG ON CACHE BOOL "Enable support for SVG I/O")
48
+ set(TLRENDER_USD OFF CACHE BOOL "Enable support for USD")
49
+ set(TLRENDER_PYTHON OFF CACHE BOOL "Enable support for Python")
50
+ # Where the tlrender package goes, relative to the install prefix. The
51
+ # default keeps "PYTHONPATH=<prefix>/lib" working; a wheel puts the
52
+ # package at its root instead.
53
+ set(TLRENDER_PYTHON_INSTALL_DIR "lib/tlrender" CACHE STRING "Python package install directory")
54
+ # feather-tk built as part of this project from deps/ftk, or an installed
55
+ # one found with find_package() -- which is what a wheel does, so that
56
+ # tlrender loads the libraries in the feather-tk wheel rather than copies.
57
+ set(TLRENDER_FTK_PACKAGE OFF CACHE BOOL "Use an installed feather-tk rather than deps/ftk")
58
+ # Where FFmpeg was installed; the super build puts it in the install prefix.
59
+ set(TLRENDER_FFMPEG_PREFIX "${CMAKE_INSTALL_PREFIX}" CACHE PATH "FFmpeg install prefix")
60
+ set(TLRENDER_PROGRAMS ON CACHE BOOL "Build programs")
61
+ set(TLRENDER_EXAMPLES ON CACHE BOOL "Build examples")
62
+ set(TLRENDER_TESTS ON CACHE BOOL "Build tests")
63
+ set(TLRENDER_TESTS_NO_GL OFF CACHE BOOL "Run only the tests that do not need OpenGL")
64
+ if(APPLE)
65
+ set(TLRENDER_IGNORE_PREFIX_PATH_DEFAULT /opt/homebrew)
66
+ endif()
67
+ set(TLRENDER_IGNORE_PREFIX_PATH ${TLRENDER_IGNORE_PREFIX_PATH_DEFAULT} CACHE STRING "Ignore the given prefix path")
68
+ set(TLRENDER_GCOV OFF CACHE BOOL "Enable gcov code coverage")
69
+ set(TLRENDER_GPROF OFF CACHE BOOL "Enable gprof code profiling")
70
+ set(TLRENDER_SANITIZE "" CACHE STRING "Enable sanitizers (comma-separated, e.g. address,undefined)")
71
+
72
+ #-------------------------------------------------------------------------------
73
+ # Internal configuration
74
+
75
+ list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake/Modules)
76
+
77
+ if(NOT CMAKE_CXX_STANDARD)
78
+ set(CMAKE_CXX_STANDARD 20)
79
+ endif()
80
+
81
+ if(NOT BUILD_SHARED_LIBS)
82
+ set(BUILD_SHARED_LIBS OFF)
83
+ endif()
84
+
85
+ if(NOT CMAKE_POSITION_INDEPENDENT_CODE)
86
+ set(CMAKE_POSITION_INDEPENDENT_CODE ON)
87
+ endif()
88
+
89
+ if(TLRENDER_IGNORE_PREFIX_PATH)
90
+ set(CMAKE_IGNORE_PREFIX_PATH ${TLRENDER_IGNORE_PREFIX_PATH})
91
+ endif()
92
+
93
+ if(TLRENDER_TESTS)
94
+ set(CTEST_OUTPUT_ON_FAILURE ON)
95
+ enable_testing()
96
+ endif()
97
+
98
+ if(TLRENDER_GPROF)
99
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pg")
100
+ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pg")
101
+ set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -pg")
102
+ endif()
103
+ if(TLRENDER_SANITIZE)
104
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=${TLRENDER_SANITIZE} -fno-omit-frame-pointer")
105
+ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=${TLRENDER_SANITIZE} -fno-omit-frame-pointer")
106
+ set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fsanitize=${TLRENDER_SANITIZE}")
107
+ set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -fsanitize=${TLRENDER_SANITIZE}")
108
+ endif()
109
+
110
+ if(TLRENDER_GCOV)
111
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --coverage -fprofile-update=atomic")
112
+ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} --coverage -fprofile-update=atomic")
113
+ set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} --coverage -fprofile-update=atomic")
114
+ endif()
115
+
116
+ if(MSVC)
117
+ set(CMAKE_MSVC_RUNTIME_LIBRARY MultiThreaded$<$<CONFIG:Debug>:Debug>DLL)
118
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP")
119
+ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /MP")
120
+ endif()
121
+
122
+ if(APPLE)
123
+ set(CMAKE_FIND_FRAMEWORK LAST)
124
+ endif()
125
+
126
+ if(WIN32)
127
+ elseif(APPLE)
128
+ # @loader_path rather than @executable_path, so that the libraries have
129
+ # an rpath of their own as well as the executables: the loading chain's
130
+ # rpaths usually cover a library, but not one loaded by itself, and the
131
+ # wheel repair tool checks each library that way.
132
+ set(CMAKE_INSTALL_RPATH "@loader_path/../lib")
133
+ # The freshly built libraries have to come before the installed
134
+ # copies, or a binary run from the build tree quietly loads the
135
+ # stale install -- so they are gathered into one directory that
136
+ # leads the search path. The install prefix entry cannot simply be
137
+ # dropped: CMake adds it back for the prebuilt dependencies, and
138
+ # after the build tree's own directories only because they are
139
+ # listed here first.
140
+ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
141
+ set(CMAKE_BUILD_RPATH
142
+ "${CMAKE_BINARY_DIR}/lib"
143
+ "${CMAKE_INSTALL_PREFIX}/lib")
144
+ else()
145
+ set(CMAKE_INSTALL_RPATH "$ORIGIN/../lib")
146
+ endif()
147
+ # The rest of an rpath, relative to <prefix>/lib: a wheel names feather-tk's
148
+ # libraries in the feather_tk package beside it.
149
+ if(TLRENDER_INSTALL_RPATH_EXTRA)
150
+ if(APPLE)
151
+ list(APPEND CMAKE_INSTALL_RPATH "@loader_path/${TLRENDER_INSTALL_RPATH_EXTRA}")
152
+ elseif(UNIX)
153
+ list(APPEND CMAKE_INSTALL_RPATH "$ORIGIN/${TLRENDER_INSTALL_RPATH_EXTRA}")
154
+ endif()
155
+ endif()
156
+
157
+ set_property(GLOBAL PROPERTY USE_FOLDERS ON)
158
+
159
+ #-------------------------------------------------------------------------------
160
+ # Dependencies
161
+
162
+ # Base dependencies
163
+ find_package(ZLIB REQUIRED)
164
+ find_package(Imath REQUIRED)
165
+ find_package(nlohmann_json REQUIRED)
166
+ find_package(minizip-ng REQUIRED)
167
+ find_package(OpenTimelineIO REQUIRED)
168
+
169
+ # OpenColorIO dependencies
170
+ if(TLRENDER_OCIO)
171
+ find_package(OpenColorIO REQUIRED)
172
+ endif()
173
+
174
+ # I/O dependencies
175
+ if(TLRENDER_EXR)
176
+ find_package(OpenEXR REQUIRED)
177
+ endif()
178
+ if(TLRENDER_FFMPEG)
179
+ if(WIN32)
180
+ set(FFmpeg_FOUND TRUE)
181
+ add_library(FFmpeg::avutil STATIC IMPORTED)
182
+ set_property(TARGET FFmpeg::avutil PROPERTY
183
+ IMPORTED_LOCATION "${TLRENDER_FFMPEG_PREFIX}/lib/avutil.lib")
184
+ add_library(FFmpeg::avdevice STATIC IMPORTED)
185
+ set_property(TARGET FFmpeg::avdevice PROPERTY
186
+ IMPORTED_LOCATION "${TLRENDER_FFMPEG_PREFIX}/lib/avdevice.lib")
187
+ add_library(FFmpeg::avformat STATIC IMPORTED)
188
+ set_property(TARGET FFmpeg::avformat PROPERTY
189
+ IMPORTED_LOCATION "${TLRENDER_FFMPEG_PREFIX}/lib/avformat.lib")
190
+ add_library(FFmpeg::avcodec STATIC IMPORTED)
191
+ set_property(TARGET FFmpeg::avcodec PROPERTY
192
+ IMPORTED_LOCATION "${TLRENDER_FFMPEG_PREFIX}/lib/avcodec.lib")
193
+ add_library(FFmpeg::swresample STATIC IMPORTED)
194
+ set_property(TARGET FFmpeg::swresample PROPERTY
195
+ IMPORTED_LOCATION "${TLRENDER_FFMPEG_PREFIX}/lib/swresample.lib")
196
+ add_library(FFmpeg::swscale STATIC IMPORTED)
197
+ set_property(TARGET FFmpeg::swscale PROPERTY
198
+ IMPORTED_LOCATION "${TLRENDER_FFMPEG_PREFIX}/lib/swscale.lib")
199
+ add_library(FFmpeg::FFmpeg INTERFACE IMPORTED)
200
+ set_property(TARGET FFmpeg::FFmpeg PROPERTY
201
+ INTERFACE_LINK_LIBRARIES
202
+ FFmpeg::avdevice
203
+ FFmpeg::avformat
204
+ FFmpeg::avcodec
205
+ FFmpeg::swresample
206
+ FFmpeg::swscale
207
+ FFmpeg::avutil)
208
+ elseif(APPLE)
209
+ set(FFmpeg_FOUND TRUE)
210
+ add_library(FFmpeg::avdevice STATIC IMPORTED)
211
+ set_property(TARGET FFmpeg::avdevice PROPERTY
212
+ IMPORTED_LOCATION "${TLRENDER_FFMPEG_PREFIX}/lib/libavdevice.dylib")
213
+ add_library(FFmpeg::avformat STATIC IMPORTED)
214
+ set_property(TARGET FFmpeg::avformat PROPERTY
215
+ IMPORTED_LOCATION "${TLRENDER_FFMPEG_PREFIX}/lib/libavformat.dylib")
216
+ add_library(FFmpeg::avcodec STATIC IMPORTED)
217
+ set_property(TARGET FFmpeg::avcodec PROPERTY
218
+ IMPORTED_LOCATION "${TLRENDER_FFMPEG_PREFIX}/lib/libavcodec.dylib")
219
+ add_library(FFmpeg::swresample STATIC IMPORTED)
220
+ set_property(TARGET FFmpeg::swresample PROPERTY
221
+ IMPORTED_LOCATION "${TLRENDER_FFMPEG_PREFIX}/lib/libswresample.dylib")
222
+ add_library(FFmpeg::swscale STATIC IMPORTED)
223
+ set_property(TARGET FFmpeg::swscale PROPERTY
224
+ IMPORTED_LOCATION "${TLRENDER_FFMPEG_PREFIX}/lib/libswscale.dylib")
225
+ add_library(FFmpeg::avutil STATIC IMPORTED)
226
+ set_property(TARGET FFmpeg::avutil PROPERTY
227
+ IMPORTED_LOCATION "${TLRENDER_FFMPEG_PREFIX}/lib/libavutil.dylib")
228
+ add_library(FFmpeg::FFmpeg INTERFACE IMPORTED)
229
+ set_property(TARGET FFmpeg::FFmpeg PROPERTY
230
+ INTERFACE_LINK_LIBRARIES
231
+ FFmpeg::avdevice
232
+ FFmpeg::avformat
233
+ FFmpeg::avcodec
234
+ FFmpeg::swresample
235
+ FFmpeg::swscale
236
+ FFmpeg::avutil)
237
+ elseif(EMSCRIPTEN)
238
+ # Only the libraries Core uses: the I/O plugin is not built for
239
+ # the web, and neither is the rest of FFmpeg.
240
+ set(FFmpeg_FOUND TRUE)
241
+ add_library(FFmpeg::avutil STATIC IMPORTED)
242
+ set_property(TARGET FFmpeg::avutil PROPERTY
243
+ IMPORTED_LOCATION "${TLRENDER_FFMPEG_PREFIX}/lib/libavutil.a")
244
+ add_library(FFmpeg::swresample STATIC IMPORTED)
245
+ set_property(TARGET FFmpeg::swresample PROPERTY
246
+ IMPORTED_LOCATION "${TLRENDER_FFMPEG_PREFIX}/lib/libswresample.a")
247
+ add_library(FFmpeg::swscale STATIC IMPORTED)
248
+ set_property(TARGET FFmpeg::swscale PROPERTY
249
+ IMPORTED_LOCATION "${TLRENDER_FFMPEG_PREFIX}/lib/libswscale.a")
250
+ else()
251
+ find_package(PkgConfig REQUIRED)
252
+ pkg_check_modules(
253
+ swresample REQUIRED IMPORTED_TARGET
254
+ libswresample)
255
+ pkg_check_modules(
256
+ swscale REQUIRED IMPORTED_TARGET
257
+ libswscale)
258
+ pkg_check_modules(
259
+ avutil REQUIRED IMPORTED_TARGET
260
+ libavutil)
261
+ pkg_check_modules(
262
+ FFmpeg REQUIRED IMPORTED_TARGET
263
+ libavdevice
264
+ libavformat
265
+ libavcodec
266
+ libswresample
267
+ libswscale
268
+ libavutil)
269
+ add_library(FFmpeg::FFmpeg ALIAS PkgConfig::FFmpeg)
270
+ add_library(FFmpeg::swresample ALIAS PkgConfig::swresample)
271
+ add_library(FFmpeg::swscale ALIAS PkgConfig::swscale)
272
+ add_library(FFmpeg::avutil ALIAS PkgConfig::avutil)
273
+ endif()
274
+ endif()
275
+ if(TLRENDER_FFMPEG_PLUGIN)
276
+ # The command line reader's subprocess.h is a single header with no
277
+ # CMake configuration: the super build copies it into the install
278
+ # prefix, a system build into a prefix on the search path.
279
+ find_path(subprocess_INCLUDE_DIR subprocess.h REQUIRED)
280
+ endif()
281
+ if(TLRENDER_OIIO)
282
+ find_package(OpenImageIO)
283
+ endif()
284
+ if(TLRENDER_SVG)
285
+ # Also a dependency of ftk, which is where it comes from.
286
+ find_package(lunasvg REQUIRED)
287
+ endif()
288
+ if(TLRENDER_USD)
289
+ find_package(OpenGL REQUIRED)
290
+ find_package(pxr REQUIRED)
291
+ endif()
292
+
293
+ # A distribution's package can install a CMake configuration whose include
294
+ # directories are not there: Ubuntu puts OpenColorIO's where its relative
295
+ # prefix resolves to "/", so it asks for "/include", and OpenImageIO's names
296
+ # the OpenCV headers it was built with, which its development package does
297
+ # not bring. CMake refuses to generate with them, so the directories that do
298
+ # not exist are dropped; the headers themselves are in /usr/include, which
299
+ # the compiler searches anyway.
300
+ function(tlrender_prune_include_directories TARGET)
301
+ if(TARGET ${TARGET})
302
+ get_target_property(DIRS ${TARGET} INTERFACE_INCLUDE_DIRECTORIES)
303
+ if(DIRS)
304
+ set(KEPT)
305
+ foreach(DIR ${DIRS})
306
+ if(DIR MATCHES "\\$<" OR EXISTS "${DIR}")
307
+ list(APPEND KEPT "${DIR}")
308
+ else()
309
+ message(STATUS "Dropping missing include directory ${DIR} from ${TARGET}")
310
+ endif()
311
+ endforeach()
312
+ set_property(TARGET ${TARGET} PROPERTY INTERFACE_INCLUDE_DIRECTORIES "${KEPT}")
313
+ endif()
314
+ endif()
315
+ endfunction()
316
+ tlrender_prune_include_directories(OpenColorIO::OpenColorIO)
317
+ tlrender_prune_include_directories(OpenImageIO::OpenImageIO)
318
+
319
+ # Python dependencies
320
+ #
321
+ # The tlrender module is built the way feather-tk's module is, the stable
322
+ # ABI or not and against the same nanobind library, since nanobind shares
323
+ # types only between modules built alike and the tlrender module takes its
324
+ # types from feather_tk. So this is feather-tk's own option, declared here too because
325
+ # feather-tk is not added until below.
326
+ set(ftk_PYTHON_STABLE_ABI ON CACHE BOOL "Build the Python module against the stable ABI")
327
+ if(TLRENDER_PYTHON)
328
+ # Development.Module rather than Development, as feather-tk asks: an
329
+ # extension module does not link libpython.
330
+ set(TLRENDER_PYTHON_COMPONENTS Interpreter Development.Module)
331
+ set(TLRENDER_PYTHON_VERSION 3.10)
332
+ set(TLRENDER_NANOBIND_LIBRARY nanobind-static)
333
+ if(ftk_PYTHON_STABLE_ABI)
334
+ # nanobind supports the stable ABI from Python 3.12.
335
+ list(APPEND TLRENDER_PYTHON_COMPONENTS Development.SABIModule)
336
+ set(TLRENDER_PYTHON_VERSION 3.12)
337
+ set(TLRENDER_NANOBIND_LIBRARY nanobind-static-abi3)
338
+ endif()
339
+ find_package(Python ${TLRENDER_PYTHON_VERSION} REQUIRED COMPONENTS ${TLRENDER_PYTHON_COMPONENTS})
340
+ find_package(nanobind REQUIRED CONFIG)
341
+ endif()
342
+
343
+ #-------------------------------------------------------------------------------
344
+ # feather-tk
345
+
346
+ if(TLRENDER_FTK_PACKAGE)
347
+ find_package(ftk REQUIRED)
348
+ # The graphics API is feather-tk's option, which an installed package
349
+ # does not carry; the wheels are OpenGL 4.1.
350
+ if(NOT ftk_API)
351
+ set(ftk_API "GL_4_1")
352
+ endif()
353
+ # The resource tool is the package's imported target; the name
354
+ # ftk_icon_resources() falls back on is the one inside feather-tk's
355
+ # own tree.
356
+ set(ftk_RESOURCE_COMMAND ftk::ftk-resource)
357
+ if(TLRENDER_PYTHON)
358
+ # feather-tk builds this library when it is added below; an
359
+ # installed one leaves it to us. Built the same way, since the
360
+ # binding libraries are compiled into the module against it.
361
+ nanobind_build_library(${TLRENDER_NANOBIND_LIBRARY})
362
+ if(ftk_PYTHON_STABLE_ABI)
363
+ target_compile_definitions(${TLRENDER_NANOBIND_LIBRARY} PUBLIC Py_LIMITED_API=0x030C0000)
364
+ endif()
365
+ endif()
366
+ else()
367
+ find_package(Git REQUIRED)
368
+ if(NOT EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/deps/ftk/CMakeLists.txt")
369
+ execute_process(
370
+ COMMAND ${GIT_EXECUTABLE} submodule update --init --recursive
371
+ WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
372
+ RESULT_VARIABLE GIT_SUBMODULE_RESULT)
373
+ if(NOT GIT_SUBMODULE_RESULT EQUAL 0)
374
+ message(FATAL_ERROR "git submodule update failed with ${GIT_SUBMODULE_RESULT}")
375
+ endif()
376
+ endif()
377
+
378
+ add_subdirectory(deps/ftk)
379
+ add_library(ftk::ftkResource ALIAS ftkResource)
380
+ add_library(ftk::ftkCore ALIAS ftkCore)
381
+ add_library(ftk::ftkGL ALIAS ftkGL)
382
+ add_library(ftk::ftkUI ALIAS ftkUI)
383
+ add_library(ftk::ftkTestLib ALIAS ftkTestLib)
384
+ endif()
385
+
386
+ #-------------------------------------------------------------------------------
387
+ # Sub-directories
388
+
389
+ add_subdirectory(lib/tlRender)
390
+ if(TLRENDER_PROGRAMS)
391
+ add_subdirectory(bin)
392
+ endif()
393
+ if(TLRENDER_TESTS)
394
+ add_subdirectory(tests)
395
+ endif()
396
+ if(TLRENDER_EXAMPLES)
397
+ add_subdirectory(examples)
398
+ endif()
399
+ add_subdirectory(etc/Legal)
400
+
401
+ include(CMakePackageConfigHelpers)
402
+ set(INCLUDE_INSTALL_DIR include/tlRender)
403
+ configure_package_config_file(
404
+ tlRenderConfig.cmake.in
405
+ ${CMAKE_CURRENT_BINARY_DIR}/tlRenderConfig.cmake
406
+ INSTALL_DESTINATION lib/cmake/tlRender
407
+ PATH_VARS INCLUDE_INSTALL_DIR)
408
+ install(
409
+ FILES ${CMAKE_CURRENT_BINARY_DIR}/tlRenderConfig.cmake
410
+ DESTINATION lib/cmake/tlRender
411
+ COMPONENT dev)