Subject | Hash | Author | Date (UTC) |
---|---|---|---|
fixed uninitialized value | 8313a622987f51e74b068231cddde3ff34a93625 | Jackalope | 2020-04-26 08:04:48 |
disable checking present support when graphics module not loaded | b2ff208cef191444cd995c40989c6b9414c1fb9f | Jackalope | 2020-04-26 02:35:19 |
added debug extension loading when graphics module is disabled | 54bc7c5eff1353559ec29e560a4095cfa9ef33d8 | Jackalope | 2020-04-26 02:32:45 |
Noise library: removed excess commentary lines | 6b518ad33508161bd0cc8790eb13f4d03d827acc | TheArtOfGriefing | 2020-04-23 20:56:55 |
Noise library: added forgotten hash function use in gradient computation. | bfce031f8de0410107aaf33009b46e455acd5095 | TheArtOfGriefing | 2020-04-23 18:40:05 |
Noise library update: +6 hash functions +1D,2D,3D,4D highly optimized simplex noise +1D,2D,3D,4D white noise | 731cba496cf3c253ad365355faae9df45e1e714e | TheArtOfGriefing | 2020-04-23 17:37:19 |
simd library moved to simdcpp submodule, also updates to match new version | 36fa65052847fbb258e0ceaf2a2c3fab40e5c3a7 | Jackalope | 2020-04-21 23:19:24 |
jlib update | d7d711f8b289b2a84e58c66d20c0871c21d17350 | Jackalope | 2020-04-15 09:54:57 |
hiding clang-10 new warnings | 6d3a1a1dbc928d9ed75024848f06f541d55e1580 | Jackalope | 2020-04-15 09:54:39 |
vkw new Vulkan API result values | 0eed6a08e659a2e58ed35d9870022d235f0d87d4 | Jackalope | 2020-04-15 09:54:04 |
removed temporary fence, validation layers still complaining | ba2b7277f0db6e549e68619f8f61ecc50066343d | Jackalope | 2020-04-15 09:41:02 |
device queues had incorrect orders in memory layout | 28bf6b0e793ae988c390571baa5e8654200f6b42 | Jackalope | 2020-04-15 07:10:19 |
updated new vulkan enum names | a7f4e2fdd01884df5469abda3520ca3901a44532 | Jackalope | 2020-04-15 07:09:55 |
fix gradient values in simplex noise | 75ee283d9f06b69936c9db3d1eabe5c876b418cf | Jackalope | 2020-04-03 04:00:15 |
conditional device queues loading based on ModulesMask | 952bb3a4d1ae3c867309b136543bbc7a072684bb | Jackalope | 2020-04-02 02:44:36 |
fixed issue when gpu_transfer is sleeping while jobs queued | 7af01807ffbc1ffae785745378f832303bcf79dc | Jackalope | 2020-03-31 07:40:10 |
real_coordinate_to_face_simd correct face values | 7fb655197ff078fcb11b144025e08f9bedaa3b5d | Jackalope | 2020-03-29 14:41:29 |
chenged cube faces enumeration order | a02f523b115a2ada261f6b4e65042925ad1b042c | Jackalope | 2020-03-29 14:24:52 |
gpu data destroy queue infinite loop bug fix | eae02d74cb1c0cfa780d2038c12c6c568e9845d4 | Jackalope | 2020-03-29 09:05:16 |
jlib update | 3137705c28c8dcbda3c742361cb31a040cf172cd | Jackalope | 2020-03-29 07:07:37 |
File | Lines added | Lines deleted |
---|---|---|
src/instance.cpp | 2 | 0 |
File src/instance.cpp changed (mode: 100644) (index 8c3a29f..0cd54af) | |||
... | ... | init(ModulesMask modules_mask, const char *window_title) { | |
53 | 53 | res = window.create_surface(instance, &surface); | res = window.create_surface(instance, &surface); |
54 | 54 | if (res != VK_SUCCESS) | if (res != VK_SUCCESS) |
55 | 55 | goto CANCEL_INSTANCE; | goto CANCEL_INSTANCE; |
56 | } else { | ||
57 | surface = {}; | ||
56 | 58 | } | } |
57 | 59 | #ifdef JEN_VLK_VALIDATION | #ifdef JEN_VLK_VALIDATION |
58 | 60 | (void)callback.init(instance); | (void)callback.init(instance); |