|
221 | 221 | ]
|
222 | 222 | }
|
223 | 223 | },
|
| 224 | + "getVRRSupport":{ |
| 225 | + "summary": "Returns the EDID VRR bit value.", |
| 226 | + "params": { |
| 227 | + "type":"object", |
| 228 | + "properties": { |
| 229 | + "portId":{ |
| 230 | + "$ref": "#/definitions/portId" |
| 231 | + } |
| 232 | + }, |
| 233 | + "required": [ |
| 234 | + "portid" |
| 235 | + ] |
| 236 | + }, |
| 237 | + "result": { |
| 238 | + "type": "object", |
| 239 | + "properties": { |
| 240 | + "vrrSupport": { |
| 241 | + "summary": "The VRR bit value in edid", |
| 242 | + "type": "boolean", |
| 243 | + "example": true |
| 244 | + }, |
| 245 | + "success": { |
| 246 | + "$ref": "#/common/success" |
| 247 | + } |
| 248 | + }, |
| 249 | + "required": [ |
| 250 | + "vrrSupport", |
| 251 | + "success" |
| 252 | + ] |
| 253 | + } |
| 254 | + }, |
224 | 255 | "getEdidVersion":{
|
225 | 256 | "summary": "Returns the EDID version.",
|
226 | 257 | "params": {
|
|
491 | 522 | "$ref": "#/common/result"
|
492 | 523 | }
|
493 | 524 | },
|
| 525 | + "setVRRSupport": { |
| 526 | + "summary": "Sets an HDMI VRR bit in EDID.", |
| 527 | + "params": { |
| 528 | + "type":"object", |
| 529 | + "properties": { |
| 530 | + "portId":{ |
| 531 | + "$ref": "#/definitions/portId" |
| 532 | + }, |
| 533 | + "vrrSupport":{ |
| 534 | + "summary": "The VRR support in EDID", |
| 535 | + "type": "boolean", |
| 536 | + "example": true |
| 537 | + } |
| 538 | + }, |
| 539 | + "required": [ |
| 540 | + "portId", |
| 541 | + "vrrSupport" |
| 542 | + ] |
| 543 | + }, |
| 544 | + "result": { |
| 545 | + "$ref": "#/common/result" |
| 546 | + } |
| 547 | + }, |
494 | 548 | "setEdidVersion": {
|
495 | 549 | "summary": "Sets an HDMI EDID version.",
|
496 | 550 | "params": {
|
|
652 | 706 | "type": "object",
|
653 | 707 | "properties": {
|
654 | 708 | "mode": {
|
655 |
| - "summary": "The current game feature status. Mode is required only for ALLM. Need to add support for future game features", |
| 709 | + "summary": "The current status of the game features like ALLM, VRR-HDMI, VRR-FREESYNC, VRR-FREESYNC-PREMIUM and VRR-FREESYNC-PREMIUM-PRO.", |
656 | 710 | "type": "boolean",
|
657 | 711 | "example": true
|
658 | 712 | }
|
|
786 | 840 | }
|
787 | 841 | },
|
788 | 842 | "gameFeatureStatusUpdate": {
|
789 |
| - "summary": "Triggered whenever game feature(ALLM) status changes for an HDMI Input", |
| 843 | + "summary": "Triggered whenever game feature status changes for an HDMI Input", |
790 | 844 | "params": {
|
791 | 845 | "type": "object",
|
792 | 846 | "properties": {
|
|
799 | 853 | "example": "ALLM"
|
800 | 854 | },
|
801 | 855 | "mode": {
|
802 |
| - "summary": "The current game feature status. Mode is required only for ALLM. Need to add support for future game features", |
| 856 | + "summary": "The current status of the game features like ALLM, VRR-HDMI, VRR-FREESYNC, VRR-FREESYNC-PREMIUM and VRR-FREESYNC-PREMIUM-PRO.", |
803 | 857 | "type": "boolean",
|
804 | 858 | "example": true
|
805 | 859 | }
|
|
0 commit comments