当前位置: 首页>>代码示例>>C#>>正文


C# IDeviceContext.Unmap方法代码示例

本文整理汇总了C#中IDeviceContext.Unmap方法的典型用法代码示例。如果您正苦于以下问题:C# IDeviceContext.Unmap方法的具体用法?C# IDeviceContext.Unmap怎么用?C# IDeviceContext.Unmap使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IDeviceContext的用法示例。


在下文中一共展示了IDeviceContext.Unmap方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: CalculateLossy

        public unsafe void CalculateLossy(IDeviceContext context, ITexture2D target, ITexture2D previous, ITexture2D temporalDiff, int mostDetailedMip)
        {
            var mipInfo = new MipInfo { MipLevel = mostDetailedMip, CoordDivisor = 1 << mostDetailedMip };

            var map = context.Map(mipInfoBuffer, 0, MapType.WriteDiscard, MapFlags.None);
            *(MipInfo*)map.Data = mipInfo;
            context.Unmap(mipInfoBuffer, 0);

            // todo: try doing everything using MostDetailedMip of SRV

            context.ShaderForDispatching = computeShader;
            context.ComputeStage.UniformBuffers[0] = mipInfoBuffer;
            context.ComputeStage.ShaderResources[0] = previous.ViewAsShaderResource(formatId, 0, previous.MipLevels);
            context.ComputeStage.ShaderResources[1] = temporalDiff.ViewAsShaderResource(formatId, 0, temporalDiff.MipLevels);
            context.ComputeStage.UnorderedAccessResources[0] = target.ViewAsUnorderedAccessResource(formatId, 0);

            context.Dispatch(RavcMath.DivideAndCeil(target.Width, 16), RavcMath.DivideAndCeil(target.Height, 16), 1);
        }
开发者ID:Zulkir,项目名称:RAVC,代码行数:18,代码来源:GpuLossyCalculator.cs

示例2: CalculateDiff

        public unsafe void CalculateDiff(IDeviceContext context, ITexture2D target, ITexture2D current, ITexture2D parentTexture, int colorDiffThreshold)
        {
            context.ShaderForDispatching = computeShader;

            var map = context.Map(frameInfoBuffer, 0, MapType.WriteDiscard, MapFlags.None);
            *(Vector4*)map.Data = new Vector4(colorDiffThreshold, 0, 0, 0);
            context.Unmap(frameInfoBuffer, 0);

            context.ComputeStage.UniformBuffers[0] = frameInfoBuffer;

            for (int i = 0; i < EncodingConstants.MipLevels; i++)
            {
                var uav = target.ViewAsUnorderedAccessResource(formatId, i);
                var currentSrv = current.ViewAsShaderResource(formatId, i, 1);
                var parentSrv = parentTexture.ViewAsShaderResource(formatId, i, 1);

                context.ComputeStage.UnorderedAccessResources[0] = uav;
                context.ComputeStage.ShaderResources[0] = currentSrv;
                context.ComputeStage.ShaderResources[1] = parentSrv;

                context.Dispatch(RavcMath.DivideAndCeil(target.Width >> i, 16), RavcMath.DivideAndCeil(target.Height >> i, 16), 1);
            }
        }
开发者ID:Zulkir,项目名称:RAVC,代码行数:23,代码来源:GpuTemporalDiffCalculator.cs


注:本文中的IDeviceContext.Unmap方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。