forked from shader-slang/slang-rhi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
36 lines (36 loc) · 2.17 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
- replace IDevice::getFormatSupportedResourceStates with IDevice::getFormatSupport
- rename TextureDesc::allowedStates -> TextureDesc::usage and introduce TextureUsage enum
- rename BufferDesc::allowedStates -> BufferDesc::usage and introduce BufferUsage enum
- rename IQueryPool::Desc -> QueryPoolDesc, add label to QueryPoolDesc
- rename IFence::Desc -> FenceDesc, add label to FenceDesc
- implement dynamic rendering in Vulkan
- remove IFramebuffer and IFramebufferLayout
- rename IFramebufferLayout::Desc -> FramebufferLayoutDesc
- rename IInputLayout::Desc -> InputLayoutDesc
- introduce ICommandEncoder, which is the new base interface for all command encoders (encoders don't inherit the IResourceCommandEncoder anymore)
- remove IDevice::createProgram2
- rename IDevice::createProgram -> IDevice::createShaderProgram
- rename IShaderProgram::Desc -> ShaderProgramDesc
- remove SLANG_RHI_FORMAT(x) macro, extended FormatInfo with name
- refactor NativeHandle to hold the actual type of the handle instead of just a category
- rename InteropHandle -> NativeHandle
- remove IResource::setDebugName/getDebugName, add label to BufferDesc and TextureDesc instead
- rename IPipelineState -> IPipeline
- rename IDevice::createRayTracingPipelineState -> IDevice::createRayTracingPipeline
- rename IDevice::createComputePipelineState -> IDevice::createComputePipeline
- rename IDevice::createGraphicsPipelineState -> IDevice::createRenderPipeline
- rename RayTracingPipelineStateDesc -> RayTracingPipelineDesc
- rename ComputePipelineStateDesc -> ComputePipelineDesc
- rename GraphicsPipelineStateDesc -> RenderPipelineDesc
- remove SampleDesc and instead add sampleCount and sampleQuality to TextureDesc
- rename ISamplerState -> ISampler
- rename ISamplerState::Desc -> SamlerDesc
- rename BufferDesc::sizeInBytes -> size
- replace IResource::Type with TextureType, buffers don't have a type
- remove nested structs from IBuffer & ITexture
- rename ITexture::Desc -> TextureDesc
- rename IBuffer::Desc -> BufferDesc
- rename ITextureResource -> ITexture
- rename IDevice::createTextureResource -> IDevice::createTexture
- rename IBufferResource -> IBuffer
- rename IDevice::createBufferResource -> IDevice::createBuffer