ProEssentials pro v9 历史更新列表--注册版

news2024/12/24 8:36:58

ProEssentials标准版和专业版之间的唯一区别是可以渲染的数据点和注释的数量。标准版与专业版一样拥有所有的功能和接口。所有版本包括WPF、WinForm、WebForm、ActiveX、VCL和DLL接口。标准版仅限于8000个数据点和800个图表注释。此限制适用于每个控件实例。你可以运行多个控件,每个控件都有上述限制。例如,8000个数据点可以代表一个3D曲面图,88行88列创建7744个多边形。又或者一个科学图表可以有4个轴,每个轴有一个子集,每个轴代表2000个点,共8000个数据点

 

ProEssentials v9 Maintenance Info

06/11/23

Gigasoft has uploaded version 9.8.0.38 on 06/11/23.

1) Fixed an issue with Pego, Pesgo ToolTip event CustomTrackingOtherText which was not triggering for GraphAnnotation hot spots. Now tooltip text can be updated in response to the cursor over GraphAnnotations.

04/23/23

Gigasoft has uploaded version 9.8.0.36 on 04/23/23.

1) More work-arounds dealing with the poor quality Intel Iris Xe driver. The WPF interfaces were fixed related to Pe3do Direct3D and the Iris Xe driver.
2) We created a WPF example project that modifies our current WPF project to use our Winforms interface instead of our WPF interface. For now this example is located at WPF-C#.Net-Winform Pro Example We recommend this appoach for several reasons, the latest reason is Iris Xe driver still crashes systems when attempting to render Direct3D content to a Texture with MSAA greater than 1 (though we added code to test for the Iris Xe driver and force MSAA = 1 in this case to avoid the crash.)
3) Intel notified us that Iris Xe driver 4311 resolved the MSAA issue, however, our testing shows that all Intel did was hard code the samplecount = 1 and disable anti-aliasing themselves to avoid their own crash. It would be wise for all to contact Intel via their Community Forum and request improved Direct3D MSAA support along with supporting double precision floats within shaders. No other driver that we know of lacks these features.
4) We've added the Step and PointsPlusLine plotting methods for Pesgo 2D and RenderEngine = Direct3D.
5) Buy AMD, tell your organization, colleagues, customers, the World, to buy AMD based systems, either integrated graphics or discreet.

01/13/23

Gigasoft has uploaded version 9.8.0.32 on 01/13/23.

1) Related to RenderEngine = Direct3D, (Direct2D not an issue), The good news is latest Intel integrated graphics is fairly fast (compared to legacy HD), with one catch, Direct3D MultiSampleAntiAliasing might need to be disabled. We decided to make a change related Intel graphics drivers (integrated graphics). When Intel introduced Iris Xe graphics (we started getting problem reports mid 2021) we discovered the Iris Xe driver was unstable with a SampleCount greater than 1 when rendering charts (no D3DebugLayer errors, warnings, or failed function calls). Now, instead of improving the Intel Iris Xe driver, Intel may have propagated questionable logic to more of their chips and related graphics drivers (UHD) as we have recently received a few problem reports related to 12th gen Intel chips and UHD non Iris Xe. So for now, we are defaulting SampleCount=1 when creating the 3D device context with a driver that includes the word "Intel" in its description. We will again attempt to communicate with Intel to see if they can improve their graphics drivers to prevent crashing software with no reported errors and no failed function calls. SampleCount=1 in other words disables Direct3D inherent MultiSampleAntiAliasing feature. The performance and stability increase related to setting SampleCount=1 definitely far outweighs the minimal degraded visual quality on low end systems with Intel integrated graphics. As always we recommend discreet graphics, for example, laptops with AMD RDNA, NVidia MX or even AMD Vega with older cpus will out perform a new 12th or 13th gen Intel with Iris Xe or UHD at less cost. Stay tuned, and we appreciate customers also emailing the Intel graphics driver support team and mention "Direct3D SampleCount greater than 1 causing stability issues". Customers can control the sample count with our property PEP_nDXMSAA, Pe3do1.PeSpecial.DxMSAA. Customers can avoid the Intel driver check by setting this property to non-zero PEP_nIGNOREDRIVERCHECK (1781). Hopefully Intel will listen and help. We appreciate feedback related to your experiences with systems with Intel integrated graphics, especially 12th or 13th gen Intel. On our end we will be researching the issue and possibly look into an end-of-pipeline anti-aliasing mechanism as a work around. In our many years of providing Direct3D charting, we've never had an issue with graphic drivers (NVidia, AMD, legacy Intel HD) until Intel and Iris Xe. We believe older Intel HD graphics systems are fine (though slow) and we are mostly being proactive related to newer 11th, 12th and 13th gen Intel with integrated UHD graphic drivers; but also believe the Intel HD drivers will benefit in performance from this change.
2) Related to Pesgo and Direct3D, we added logic to test if the graphics driver supports double precision and now optionally choose shaders with float or double precision which resolves issues with zooming inward deeply in 2D.
3) PEsearchsubsetandpoint has been enhanced to handle scenarios of large blocks of identical XData. Identical XData was preventing our logic to consider the data sequential. Now blocks of identical XData will still be considered sequential, we recommend setting PEP_nSEQUENTIALDATAX(2039) to 1 if you know your data might include an initial block of identical XData and wish to use PEsearchsubsetandpoint.

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1148900.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

《数字图像处理-OpenCV/Python》连载(33)使用掩模图像控制处理区域

**本书京东优惠购书链接:https://item.jd.com/14098452.html** **本书CSDN独家连载专栏:https://blog.csdn.net/youcans/category_12418787.html** 第 5 章 图像的算术运算 在OpenCV中,图像是以Numpy数组格式存储的,图像的算术运…

抓包分析DSCP字段在FTP/RSTP协议中的应用

抓包分析DSCP字段在FTP协议中的应用 简介 本文介绍DSCP字段的作用,以及抓包分析DSCP字段在FTP协议中的应用。最后通过实验证明有可能DSCP字段实际上对普通用户没啥用,原因是运营商可能会将用户设置的DSCP字段重置。 DSCP IP报文中有个TOS字段 &#…

C语言选择排序

1.选择排序(Selection sort) 选择排序是简单直观的排序算法。 基本思想:从首元素开始,首元素与它后面的所有元素进行比较,找到数列中最小的元素,与首元素值交换。然后下一个元素与它后面的元素比较,得到第二小的元素…

Zynq UltraScale+ XCZU5EV 纯VHDL解码 IMX214 MIPI 视频,2路视频拼接输出,提供vivado工程源码和技术支持

目录 1、前言免责声明 2、我这里已有的 MIPI 编解码方案3、本 MIPI CSI2 模块性能及其优越性4、详细设计方案设计原理框图IMX214 摄像头及其配置D-PHY 模块CSI-2-RX 模块Bayer转RGB模块伽马矫正模块VDMA图像缓存Video Scaler 图像缓存DP 输出 5、vivado工程详解PL端FPGA硬件设计…

C语言实现输入 n 个字符串,把其中以字母 A 打头的字符串输出

完整代码&#xff1a; // 输入 n 个字符串&#xff0c;把其中以字母 A 打头的字符串输出。 #include<stdio.h> #include<stdlib.h> //字符串的最大长度 #define N 20int main(){int n;printf("请输入字符串个数n:");scanf("%d",&n);//读取…

使用OBS Browser+访问华为云OBS存储【Windows】

背景 项目中使用华为云 S3 存储,java 代码中通过华为云 OBS 提供的esdk-obs-java 来访问文件。 但是,通过 JAVA SDK 方式不太方便运维,所以我们需要一款可视化的客户端软件。 华为云 OBS 自身也提供了一款客户端软件,名为 OBS Browser+。 OBS Browser+简介 OBS Browse…

【洛谷算法题】P5709-Apples Prologue / 苹果和虫子【入门2分支结构】

&#x1f468;‍&#x1f4bb;博客主页&#xff1a;花无缺 欢迎 点赞&#x1f44d; 收藏⭐ 留言&#x1f4dd; 加关注✅! 本文由 花无缺 原创 收录于专栏 【洛谷算法题】 文章目录 【洛谷算法题】P5709-Apples Prologue / 苹果和虫子【入门2分支结构】&#x1f30f;题目描述&am…

深入理解指针3

提示&#xff1a;文章写完后&#xff0c;目录可以自动生成&#xff0c;如何生成可参考右边的帮助文档 目录 前言 1. 字符指针变量 2. 数组指针变量 2.1 数组指针变量是什么&#xff1f; 2.2 数组指针变量怎么初始化 3. 二维数组传参的本质 4. 函数指针变量 4.1 函数指针变量的创…

比亚迪应届生爆料,真实的工作状态!

一位比亚迪的应届生发帖子称&#xff0c;校招入职比亚迪一个月&#xff0c;爱上了这里的工作文化&#xff0c;不怎么加班&#xff0c;工作日常就是开会对问题&#xff0c;顺便吵架扯皮&#xff0c;不用写令人头疼的代码&#xff0c;但是却拿着高工资&#xff0c;感觉现在的生活…

详解类生到死的来龙去脉

类生命周期和加载过程 一个类在 JVM 里的生命周期有 7 个阶段&#xff0c;分别是加载&#xff08;Loading&#xff09;、校验&#xff08;Verification&#xff09;、准备&#xff08;Preparation&#xff09;、解析&#xff08;Resolution&#xff09;、初始化&#xff08;Ini…

C++ 内存

内存分区模型 代码区&#xff1a;存放函数体的二进制代码&#xff0c;由操作系统进行管理全局区&#xff1a;存放全局变量和静态变量以及常量栈区&#xff1a;由编译器自动分配释放&#xff0c;存放函数的参数值、局部变量等堆区&#xff1a;由程序员分配和释放&#xff0c;若…

C#,数值计算——分类与推理Svmlinkernel的计算方法与源程序

1 文本格式 using System; namespace Legalsoft.Truffer { public class Svmlinkernel : Svmgenkernel { public int n { get; set; } public double[] mu { get; set; } public Svmlinkernel(double[,] ddata, double[] yy) : base(yy, ddata) …

SSM游戏购物商城

摘 要 信息化爆炸的时代&#xff0c;互联网技术的指数型的增长&#xff0c;信息化程度的不断普及&#xff0c;社会节奏在加快&#xff0c;每天都有大量的信息扑面而来&#xff0c;人们正处于数字信息化世界。数字化的互联网具有便捷性&#xff0c;传递快&#xff0c;效率高&am…

二叉树问题——前/中/后/层遍历(递归与栈)

摘要 博文主要介绍二叉树的前/中/后/层遍历(递归与栈)方法 一、前/中/后/层遍历问题 144. 二叉树的前序遍历 145. 二叉树的后序遍历 94. 二叉树的中序遍历 102. 二叉树的层序遍历 二、二叉树遍历递归解析 // 前序遍历递归LC144_二叉树的前序遍历 class Solution {publi…

一键转换:将mp4视频批量转换为mov格式

在视频编辑和后期制作领域&#xff0c;不同的视频格式往往有着各自的优势和适用场景。其中&#xff0c;MP4和MOV是两种常见的视频格式&#xff0c;它们都具有广泛的应用。有时候&#xff0c;为了满足特定的需求或兼容性&#xff0c;我们需要将MP4视频批量转换为MOV格式。为了实…

力扣第738题 单调递增的数字 c++ 暴力超时 贪心优化

题目 738. 单调递增的数字 中等 相关标签 贪心 数学 当且仅当每个相邻位数上的数字 x 和 y 满足 x < y 时&#xff0c;我们称这个整数是单调递增的。 给定一个整数 n &#xff0c;返回 小于或等于 n 的最大数字&#xff0c;且数字呈 单调递增 。 示例 1: 输入: n 1…

在虚拟环境中,通过pip安装tensorflow

目录 激活python虚拟环境&#xff0c;更新pip 通过pip 安装tensorflow 确定python版本&#xff1a; ​编辑安装tensorflow: ​编辑 为什么使用pip安装tensorflow? 激活python虚拟环境&#xff0c;更新pip 命令为python -m pip install --upgrade pip 通过pip 安装tensorf…

WLAN的组网架构和工作原理

目录 WLAN的组网架构 FAT AP架构 AC FIT AP架构 敏捷分布式AP 下一代园区网络&#xff1a;智简园区&#xff08;大中型园区网络&#xff09; WLAN工作原理 WLAN工作流程 1.AP上线 &#xff08;1&#xff09;AP获取IP地址&#xff1b; &#xff08;2&#xff09;AP发…

网络协议--TCP的保活定时器

23.1 引言 许多TCP/IP的初学者会很惊奇地发现可以没有任何数据流通过一个空闲的TCP连接。也就是说&#xff0c;如果TCP连接的双方都没有向对方发送数据&#xff0c;则在两个TCP模块之间不交换任何信息。例如&#xff0c;没有可以在其他网络协议中发现的轮询。这意味着我们可以…

应用开发平台集成工作流系列之17——流程建模功能前端设计与改造回顾

背景 对于流程设置不友好的问题&#xff0c;国内钉钉另行设计与实现了一套流程建模模式&#xff0c;跟bpmn规范无关&#xff0c;有人仿照实现了下&#xff0c;并做了开源&#xff08;https://github.com/StavinLi/Workflow-Vue3&#xff09;&#xff0c;效果图如下&#xff1a…