Bram Buurlage
057507f7c2
Fixed issue #857 / swapchain resize causes panic ( #908 )
...
* Fixed issue #857
* Update CHANGELOG.md
2018-01-09 08:47:19 +01:00
Lucas Kent
aedb37f93e
Enforce one ClearValue per Attachment ( #905 )
2018-01-08 13:52:58 +01:00
Anna Harren
5974ea6d8d
Added documentation to vulkano_shader_derive ( #909 )
...
This isn't full documentation of everything that the crate generates,
but it at least covers how to use it. I'm only working off my reading
of the source code, so it's entirely possible I got things wrong, but
crappy documentation is better than no documentation. I think.
Note that this has to add vulkano itself as a dev-dependency in order
for the doctest to compile, but that's also going to help with writing
tests if that ever happens.
An improvement over this would be to detail what the proc macro itself
generates and the functions, structs, etc you get from it. The details
on that are in vulkan-shaders, and are a bit harder to decipher.
2018-01-08 13:51:01 +01:00
Pierre Krieger
4f5d479118
Add gitter badge in README ( #901 )
2017-12-28 15:06:53 +01:00
Benjamin Saunders
52fedcf77f
Simplify constructing pipelines that use dynamic buffers ( #894 )
...
* Simplify constructing pipelines that use dynamic buffers
* Simplify PipelineLayoutDescTweaks API
2017-12-14 10:26:02 +01:00
Benjamin Saunders
70013d2678
Add object name setters ( #895 )
2017-12-13 09:50:08 +01:00
thelearnerofcode
80e1ed6dc3
Updated Dependencies. ( #876 )
...
* Updated Dependencies
* Complied with changes mentioned in pull request.
2017-12-11 10:23:40 +01:00
cbbowen
bc01c79992
Expose vkCmdCopyImage ( #888 )
...
* Expose vkCmdCopyImage.
* Add copy_image to changelog
2017-11-29 22:10:43 +01:00
jansol
0ae08dceec
Fix linking against MoltenVK ( #880 )
...
Starting from version 0.19.0 MoltenVK depends on IOSurface.framework
2017-11-17 12:41:02 +01:00
tomaka
c16e4d81b2
Fix triangle example panicking on wayland ( #873 )
2017-11-11 11:23:53 +01:00
Branan Riley
a3a4e89778
Do not try to hardlink glslangValidator ( #870 )
...
Previously, it was possible for the hardlinked glslangValidator
to become truncated when the glsl-to-spirv crate was rebuilt. The
file would be successfully hardlinked the first time, but on
subsequent builds the hardlink attempt would fail becasue the target
already exists. This would cause the build script to fall back to
a copy, which truncates when source and dest are the same file.
This removes the hardlinking entirely, meaning that we always just
copy our built glslangValidator to where we want it. While it would
be possible to try to make the hardlinking/copying logic idempotent,
the complexity (and potential fragility to similar bugs in the
future) doesn't seem worth it to avoid one copy.
This fixes #95
2017-10-24 07:51:50 +02:00
AustinJ235
36d74eab9f
Clear value validation for AutoCommandBufferBuilder::begin_render_pass() ( #869 )
...
* Clear value validation for AutoCommandBufferBuilder::begin_render_pass()
* Add changelog entry and TODO comment
* Add changelog entry
2017-10-18 19:22:23 +02:00
AustinJ235
c7d77e5d8c
Allow depth/stencil images to be used with AutoCommandBufferBuilder::copy_image_to_buffer() ( #868 )
...
* Allow depth/stencil images to be used with AutoCommandBufferBuilder::copy_image_to_buffer()
* Corrected the copy_image_to_buffer() change
2017-10-16 08:20:02 +02:00
tomaka
c60265c67b
Changed ShaderInterfaceMismatchError
to be more verbose ( #862 )
...
* Changed `ShaderInterfaceMismatchError` to be more verbose
* Add entry to changelog
2017-10-11 19:43:25 +02:00
tomaka
e590f22bf2
Fix the version of vk-sys required by vulkano ( #864 )
2017-10-10 15:11:50 +02:00
tomaka
c9b35bc9e2
Publish 0.7.2 ( #861 )
2017-10-09 14:46:41 +02:00
Florian Marending
188a11fb32
Fix typos in README ( #860 )
2017-10-09 10:46:45 +02:00
tomaka
82225bb3ad
Added GraphicsPipelineBuilder::with_pipeline_layout ( #859 )
2017-10-08 17:38:58 +02:00
Benjamin Saunders
3e56a917ab
Minimal command buffer debug marker support ( #847 )
...
* Minimal command buffer debug marker support
* Suppress debug marker use when the extension isn't loaded
* Update CHANGELOG
* Revert "Suppress debug marker use when the extension isn't loaded"
This reverts commit 116ea5573bfbb34956f7f180659d570fc42d33e5.
* Document required extension for debug markers
* Document debug marker safety issues
2017-10-08 17:38:51 +02:00
tomaka
b438ee919c
Directly build a vkPipelineInputAssemblyStateCreateInfo in the gfx pipeline builder ( #855 )
2017-10-08 10:17:32 +02:00
tomaka
3b10fe87bb
Changed GraphicsPipelineBuilder
to default to a buffer-less vertex … ( #856 )
...
* Changed `GraphicsPipelineBuilder` to default to a buffer-less vertex input
* Fix compilation
2017-10-08 09:54:16 +02:00
tomaka
ae5cf711a0
Check the min_texel_buffer_offset_alignment limit in buffer views ( #846 )
2017-10-07 16:11:05 +02:00
Fabio Krapohl
14ff3db022
impl_vertex accept generic structs ( #849 )
...
* fixed macro for vertex
* Update CHANGELOG.md
2017-10-07 11:18:11 +02:00
Benjamin Saunders
054e76e67d
Fix unnecessary CString heap alloc when loading pointers ( #853 )
2017-10-07 08:53:15 +02:00
tomaka
626863d7c0
Run rustfmt ( #843 )
2017-10-03 14:39:55 +02:00
Benjamin Saunders
d845b15ff1
Add a method to execute an arbitrary secondary vk::CommandBuffer ( #842 )
2017-10-03 14:19:43 +02:00
tomaka
8c05eb6453
Publish 0.7.1 ( #837 )
2017-09-28 14:05:20 +02:00
tomaka
93cbe33265
Some work on correct support for multisampling ( #835 )
...
* Some work on correct support for multisampling
* Note that Multisample is deprecated
2017-09-28 13:23:53 +02:00
tomaka
67650e415d
Another fix for the render pass macro with resolve ( #834 )
2017-09-26 12:11:15 +02:00
tomaka
e8e48daadb
Fix the render pass macros when it comes to resolving attachments ( #833 )
...
* Fix trhe render pass macros when it comes to resolving attachments
* Fix single_pass_renderpass
2017-09-26 10:29:34 +02:00
Pyry Kontio
ddb66a5513
Fixed the layer scaling issue on macOS. ( #830 )
...
* Fixed the layer scaling issue on macOS. Changed the triangle example to use the surface extents instead of window dimensions, as that seems to be a more robust source of correct information.
* Updated changelog. Fixed other examples' window extent problem.
2017-09-26 10:29:26 +02:00
Icy Defiance
430cabfe90
Fixed le() and ge() for DescriptorsCount ( #832 )
...
This also fixes a potential memory leak when allocating descriptor sets
2017-09-23 20:21:14 +02:00
tomaka
089d0879f7
Publish 0.7.0 ( #829 )
...
* Publish 0.7.0
* Fix dependencies versions
2017-09-21 13:27:10 +02:00
tomaka
bf583c7ef3
is_superset_of now returns a Result ( #828 )
2017-09-21 10:35:59 +02:00
tomaka
be9e6dc103
Add RuntimePipelineDesc ( #827 )
...
* Add RuntimePipelineDesc
* Minor changelog fix
2017-09-20 09:47:43 +02:00
tomaka
0f41adfe6f
Add some documentation to FixedSizeDescriptorSetsPool ( #826 )
2017-09-20 09:47:37 +02:00
tomaka
bfa77ca45f
Use ManuallyDrop in StandardCommandPoolAlloc ( #824 )
2017-09-19 08:43:12 +02:00
tomaka
db78c50218
Minor warning fix in tests ( #825 )
2017-09-17 15:18:06 +02:00
tomaka
88743a6361
Check image layout in try_gpu_lock ( #816 )
...
* [WIP] Check image layout in try_gpu_lock
* Finish implementation
* Add entry in CHANGELOG
* Fix wrong unlock with error recovery
* Improve CommandBufferExecError::AccessError to provide a hint
* Fix AttachmentImage wrong layout report
2017-09-14 16:29:11 +02:00
tomaka
bdcc06950e
Add a "contributing" section to the README ( #820 )
2017-09-14 15:32:00 +02:00
Benjamin Saunders
24496cc725
Bufferless vertex definition ( #819 )
...
* Bufferless vertex definition
* Define `BufferlessVertices` to enable bufferless instanced drawing
* Cleanup
2017-09-13 19:29:53 +02:00
John-John Tedro
de25bb2906
Provide 32-bit word constructor for ShaderModule ( #818 )
...
This provides the alternative constructor `ShaderModule::from_words(..)`, which uses `&[u32]` for the SPIR-V code.
`ShaderModule` currently uses an argument of type `&[u8]`, which causes interoperability issues with libraries like [shaderc][shaderc] and [rspirv][rspirv].
This is spec-compliant since the byte-code of the shader module is defined as `[..] a series of 32-bit words in host endianness.`
[shaderc]: https://docs.rs/shaderc/0.2.0/shaderc/struct.CompilationArtifact.html
[rspirv]: https://docs.rs/rspirv/0.4.0/rspirv/binary/trait.Assemble.html#tymethod.assemble
2017-09-11 12:37:48 +02:00
Christian Sdunek
fa6d56de76
Fix layer count check in swapchain constructor ( #817 )
2017-09-10 13:02:53 +02:00
tomaka
9abc9e431d
Simplify BufferAccess and ImageAccess ( #811 )
2017-09-09 09:11:58 +02:00
tomaka
bdf026a78b
Propagate allocation errors to CpuBufferPool::next() and chunk() ( #809 )
...
* Propagate allocation errors to CpuBufferPool::next() and chunk()
* Add entry in CHANGELOG
2017-09-09 08:55:20 +02:00
tomaka
e0d700a044
Remove the unused CommandBufferBuild trait ( #813 )
2017-09-07 19:33:12 +02:00
tomaka
df9d2f60db
Remove some TODOs ( #812 )
2017-09-07 19:33:04 +02:00
tomaka
885f21c96a
Fix warnings in the build ( #814 )
2017-09-07 19:32:57 +02:00
tomaka
c70f3efb6b
Add some debug assertions for set_scissor ( #810 )
2017-09-07 16:52:41 +02:00
tomaka
9662f8b092
Run rustfmt on the code ( #807 )
...
* Run rustfmt on the code
* Fix compilation
2017-09-06 21:35:06 +02:00