mirror of
https://github.com/status-im/Vulkan-Docs.git
synced 2025-02-09 04:54:08 +00:00
* Update release number to 91. Public Issues: * Update Ubuntu subsystem build instructions in `BUILD.adoc` (public pull request 624). * Delete the `VK_KHR_mir_surface` extension from the Specification and XML, due to EOL of the only driver known to have supported it, and near-EOL of Mir itself (public issue 814). * Fix options for some figures that were using old ones (public pull request 841). * Fix various accidentally repeated words (public pull request 843). * Use `time.process_time()`, introduced in Python 3.3, in the scripts instead of `time.clock()`, which will be removed in Python 3.8 (public pull request 844). Internal Issues: * Update valid usage statements for `VK_ANDROID_external_memory_android_hardware_buffer` in slink:VkMemoryAllocateInfo, slink:VkImportAndroidHardwareBufferInfoANDROID, and flink:vkGetAndroidHardwareBufferPropertiesANDROID to actually be verifiable (internal issue 1419). * Update valid usage statements for `VK_ANDROID_external_memory_android_hardware_buffer` in slink:VkMemoryAllocateInfo, slink:VkImageCreateInfo, and slink:VkImageViewCreateInfo to move valid usage statements in doubly-nested bullet points up one level, accomodating limitations of the valid usage extraction script that creates `validusage.json` (internal issue 1434). * Fix typo etext:VK_ACCESS_SHADING_RATE_IMAGE_BIT_NV to the correct ename:VK_ACCESS_SHADING_RATE_IMAGE_READ_BIT_NV. * Add missing etext:VK_STRUCTURE_TYPE_* tokens to appendices for extensions missing them. New Extensions: * `VK_AMD_memory_overallocation_behavior` * `VK_NV_ray_tracing`, replacing `VK_NVX_raytracing`
72 lines
1.8 KiB
Plaintext
72 lines
1.8 KiB
Plaintext
include::meta/VK_NV_scissor_exclusive.txt[]
|
|
|
|
*Last Modified Date*::
|
|
2018-07-31
|
|
*IP Status*::
|
|
No known IP claims.
|
|
*Interactions and External Dependencies*::
|
|
None
|
|
*Contributors*::
|
|
- Pat Brown, NVIDIA
|
|
- Jeff Bolz, NVIDIA
|
|
- Piers Daniell, NVIDIA
|
|
- Daniel Koch, NVIDIA
|
|
|
|
This extension adds support for an exclusive scissor test to Vulkan.
|
|
The exclusive scissor test behaves like the scissor test, except that the
|
|
exclusive scissor test fails for pixels inside the corresponding rectangle
|
|
and passes for pixels outside the rectangle.
|
|
If the same rectangle is used for both the scissor and exclusive scissor
|
|
tests, the exclusive scissor test will pass if and only if the scissor test
|
|
fails.
|
|
|
|
=== New Object Types
|
|
|
|
None.
|
|
|
|
=== New Enum Constants
|
|
|
|
* Extending elink:VkStructureType
|
|
** ename:VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_EXCLUSIVE_SCISSOR_STATE_CREATE_INFO_NV
|
|
** ename:VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXCLUSIVE_SCISSOR_FEATURES_NV
|
|
* Extending elink:VkDynamicState
|
|
** ename:VK_DYNAMIC_STATE_EXCLUSIVE_SCISSOR_NV
|
|
|
|
=== New Enums
|
|
|
|
None.
|
|
|
|
=== New Structures
|
|
|
|
* slink:VkPhysicalDeviceExclusiveScissorFeaturesNV
|
|
* slink:VkPipelineExclusiveScissorStateCreateInfoNV
|
|
|
|
=== New Functions
|
|
|
|
* flink:vkCmdSetExclusiveScissorNV
|
|
|
|
=== New Built-In Variables
|
|
|
|
None.
|
|
|
|
=== New SPIR-V Capabilities
|
|
|
|
None.
|
|
|
|
=== Issues
|
|
|
|
1) For the scissor test, the viewport state must be created with a matching
|
|
number of scissor and viewport rectangles.
|
|
Should we have the same requirement for exclusive scissors?
|
|
|
|
*RESOLVED*: For exclusive scissors, we relax this requirement and allow an
|
|
exclusive scissor rectangle count that is either zero or equal to the number
|
|
of viewport rectangles.
|
|
If you pass in an exclusive scissor count of zero, the exclusive scissor
|
|
test is treated as disabled.
|
|
|
|
=== Version History
|
|
|
|
* Revision 1, 2018-07-31 (Pat Brown)
|
|
- Internal revisions
|