Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Mistake in CMake option | 112275a2e0bc8619612ab49d808daeeeb599b8de | Jackalope | 2020-05-24 00:11:04 |
Device selection settings: 1. First suitable. 2. User can select with stdin/stdout. 3. User function callback. | adcfd55f60dfc6eea019f083019012a0b4aa8f02 | Jackalope | 2020-05-23 13:52:07 |
ModuleGraphics: fix for mip level computation was wrong because depth is ignored. | 834ceab8e0ea99b6b8c25928c9f3be968679cff3 | Jackalope | 2020-05-21 11:57:26 |
Compute module. Image copy staging buffer size limit problem fixed by representing row image memory in staging buffer. | 740d8bf1d12352b08da05a63957afcb508ea6fd5 | Jackalope | 2020-05-21 11:55:31 |
Math new types update | d0069637df7a0f74a9492a2a2a2d7a33102afde6 | Jackalope | 2020-05-21 11:51:46 |
Checking for blit support and fix typo in texture write | f1adac801689ee3f7905d2582ac26948260bb352 | Jackalope | 2020-05-20 18:39:36 |
Added VkFormat properties checks and fallbacks to follow specification rules. | 3c38bb0e9916aea31ef796a53a024aa3111e1ec7 | Jackalope | 2020-05-19 17:42:59 |
renamed compute::BindingsSet to BindingSet, vkw::BindNo to vkw::Binding, compute::BindingCreateInfo.bindingNo to binding | 072430e257166208d6f4a7b759169779f21bf4c8 | Jackalope | 2020-05-18 17:51:25 |
better documentation | 5233938573e5c557667de4f467209099a3d48faa | Jackalope | 2020-05-18 17:38:59 |
README improvements | 3efd2a514affc8c6d706799fd56857c1a7c0d0f6 | Jackalope | 2020-05-18 17:35:48 |
better hash for white noise | 55b1d39969b9a27a602c464ca216a89ec92cee0b | Jackalope | 2020-05-17 11:20:30 |
another reference to temporary removed | 84231ce8c36619f9c696cb7da2879f504fa2e66c | Jackalope | 2020-05-17 10:46:26 |
removed git_sh directory | 4fab20bc30f66ff96fdc9a336708cc5049c13ecb | Jackalope | 2020-05-17 04:13:34 |
README | 9f70b0aba59a4eed15c5dc86423b0f7976734ce2 | Jackalope | 2020-05-17 04:09:18 |
removed C99 extension used in the nested structures initialization | b5f33b0c562fd8cc872217eefde5fd6f58318ea3 | Jackalope | 2020-05-17 03:53:57 |
Make JEN modules as separate CMake targets | e51ffd5b6cb8b1ba15e1f5df683feec8e0665240 | Jackalope | 2020-05-17 03:52:55 |
Automated shaders compilation with cmake, no more binaries in git | efa9657336852c3543221bc56f4121f698f26044 | Jackalope | 2020-05-16 13:07:12 |
Compute process bug fix: correctly fences reset and removed reference to temporary | c30b7bf737890cc3a23022c5c5470225bb324443 | Jackalope | 2020-05-16 07:00:15 |
pass shader specialization by constant refference | 9e14c11e60d709d374f71aec393d28377b1525d2 | Jackalope | 2020-05-15 12:45:06 |
Added second template argument for white noise to support custom hash function. | 9a714ad51903e35d158ff285fc6e1f517e7100c0 | TheArtOfGriefing | 2020-05-15 12:22:08 |
File | Lines added | Lines deleted |
---|---|---|
src/graphics/CMakeLists.txt | 1 | 1 |
File src/graphics/CMakeLists.txt changed (mode: 100644) (index 517ce05..b76ee16) | |||
... | ... | cmake_minimum_required(VERSION 3.5) | |
18 | 18 | find_package(Freetype REQUIRED) | find_package(Freetype REQUIRED) |
19 | 19 | ||
20 | 20 | option(JEN_MULTITHREADED_DRAW_FRAME "Use thread pool for draw_frame") | option(JEN_MULTITHREADED_DRAW_FRAME "Use thread pool for draw_frame") |
21 | option_define01(JEN_GRAPHICS PRIVATE JEN_MULTITHREADED_DRAW_FRAME) | ||
21 | option_define01(PRIVATE JEN_MULTITHREADED_DRAW_FRAME) | ||
22 | 22 | ||
23 | 23 | add_library(JEN_GRAPHICS STATIC | add_library(JEN_GRAPHICS STATIC |
24 | 24 | gpu_transfer/data.cpp | gpu_transfer/data.cpp |