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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828
|
function varargout = PsychVulkan(cmd, varargin)
% PsychVulkan - Interface with the Vulkan graphics and compute api for special purpose tasks.
%
% This function allows to utilize the Khronos Vulkan rendering and compute api
% for special purpose display tasks on suitable operating systems with suitable
% Vulkan v1.1+ capable graphics and display hardware.
%
% Most often you won't call this function directly, but Psychtoolbox will call
% it appropriately from the PsychImaging() function. Read relevant sections
% related to Vulkan in 'help PsychImaging' first, before venturing into the
% functions offered by this function!
%
% Commands and their meaning:
% ---------------------------
%
% oldVerbosity = PsychVulkan('Verbosity' [, verbosity]);
% - Returns and optionally sets level of 'verbosity' for driver debug output.
% 'verbosity' = New level of verbosity: 0 = Silent, 1 = Errors only, 2 = Warnings,
% 3 = Info, 4 = Debug, 5 -- ... = Higher debug levels.
%
%
% isSupported = PsychVulkan('Supported');
% - Returns if use of the Vulkan rendering and display api is in principle supported
% on this setup. 1 = Supported, 0 = No driver, hardware or operating system support.
%
% oldFlags = PsychVulkan('OverrideFlags' [, flags]);
% - Returns and optionally sets override for 'flags' parameter in low-level
% function PsychVulkan('PerformPostWindowOpenSetup' ..., flags ...); for
% driver debugging and testing. By default, override flags are not set or
% used.
%
% History:
% 28-Jun-2020 mk Written.
global GL;
persistent verbosity;
persistent supported;
persistent vulkan;
persistent usedOutputs;
persistent outputMappings;
persistent noglfinish;
persistent ovrFlags;
% Fast path dispatch of functions called from within Screen() imaging pipeline
% processing slots. Numeric 'cmd' codes, placed here for most efficient execution:
if nargin > 0 && isscalar(cmd) && isnumeric(cmd)
if cmd == 0
% Execute flip operation via a Vulkan Present operation at the appropriately
% scheduled requested visual stimulus onset time:
win = varargin{1};
vwin = varargin{2};
tWhen = varargin{3};
if varargin{4} == 0
doTimestamp = 1;
else
doTimestamp = 0;
end
% Does underlying Vulkan driver support high-precision native timestamping?
if vulkan{win}.SupportsTiming
% Yes. Present and get maximum precision and reliability timestamp from Vulkan driver:
predictedOnset = PsychVulkanCore('Present', vwin, tWhen, doTimestamp);
% Inject predictedOnset == visual stimulus onset time into Screen(), for usual handling
% and reporting back to usercode via Screen('Flip'):
Screen('Hookfunction', win, 'SetOneshotFlipResults', '', predictedOnset);
else
% No. Need to use fallback with the help of Screen():
% Assign this windows usedOutput as rank 0 output setting in Screen:
% This affects beamposition based Vblank timestamping and Beamposition
% in Screen('GetWindowInfo'), so we query scanout position of the correct
% display engine for this win'dow:
outputIndex = vulkan{win}.usedOutput;
screenId = vulkan{win}.screenId;
if ~isempty(outputIndex)
Screen('Preference', 'ScreenToHead', screenId, outputMappings{screenId + 1}(1, outputIndex + 1), outputMappings{screenId + 1}(2, outputIndex + 1), 0);
end
% Perform a blocking Vulkan Present operation of the rendered interop image
% to the display of Vulkan window vwin associated with onscreen window win.
%
% vblTime is the visual stimulus onset time, as computed by PsychVulkanCore's
% own timestamping. This would only be accurate if the underlying Vulkan driver
% supported high-precision timestamping, which it doesn't if we are in this path.
% Therefore it is a simple GetSecs() style approximation:
vblTime = PsychVulkanCore('Present', vwin, tWhen, doTimestamp);
% As long as we don't have high precision timestamp support in PsychVulkanCore,
% use Screen()'s VBLANK timestamps as reasonably accurate and mostly reliable surrogate:
winfo = Screen('GetWindowInfo', win, 7);
% Restore rank 0 output setting in Screen:
if ~isempty(outputIndex)
Screen('Preference', 'ScreenToHead', screenId, outputMappings{screenId + 1}(1, 1), outputMappings{screenId + 1}(2, 1), 0);
end
predictedOnset = winfo.LastVBLTime;
% If predictedOnset is valid, use it. Otherwise fall back to vblTime:
if predictedOnset > 0
vblTime = predictedOnset;
else
predictedOnset = vblTime;
end
% Inject vblTime and visual stimulus onset time into Screen(), for usual handling
% and reporting back to usercode via Screen('Flip'), also current beamposition:
Screen('Hookfunction', win, 'SetOneshotFlipResults', '', vblTime, predictedOnset, [], winfo.Beamposition);
end
return;
end
if cmd == 1
% Vulkan window close operation, closes the Vulkan onscreen window associated with
% a PTB onscreen window. Called from Screen('Close', win) and Screen('CloseAll') as
% well as from usual "close window on error" error handling pathes:
win = varargin{1};
screenId = vulkan{win}.screenId;
PsychVulkanCore('CloseWindow', vulkan{win}.vwin);
% Remove windows display output from set of used outputs for windows screenId:
usedOutputs{screenId + 1} = setdiff(usedOutputs{screenId + 1}, vulkan{win}.usedOutput);
% TODO: Restore gamma lut on individual outputs or screens?
% Restore rank 0 output setting in Screen:
if ~isempty(vulkan{win}.usedOutput)
Screen('Preference', 'ScreenToHead', screenId, outputMappings{screenId + 1}(1, 1), outputMappings{screenId + 1}(2, 1), 0);
end
if vulkan{win}.needsNvidiaWa
system(sprintf('xrandr --screen %i --output %s --auto ; sleep 1', screenId, vulkan{win}.outputName));
end
% Do we need a complete driver shutdown to work around Mesa < 20.1.2 bugs?
if vulkan{win}.needsMesaDDMWa
PsychVulkanCore('Close');
clear usedOutputs;
end
return;
end
end % Of fast-path dispatch.
% Slow path dispatch:
if nargin < 1 || isempty(cmd)
help PsychVulkan;
fprintf('\n\nAlso available are functions from PsychVulkanCore:\n');
PsychVulkanCore;
return;
end
if isempty(usedOutputs)
% Init list of usedOutputs for fullscreen/direct-display mode to empty:
usedOutputs = cell(length(Screen('Screens')), 1);
% Store Screen()'s original screenId -> output/display engine mapping:
outputMappings = cell(size(usedOutputs));
for i = Screen('Screens')
outputMappings{i + 1} = Screen('Preference','ScreenToHead', i);
end
try
if exist('PsychVulkanCore', 'file')
verbosity = PsychVulkanCore('Verbosity');
else
verbosity = 3;
end
catch
lasterror('reset'); %#ok<*LERR>
verbosity = 3;
end
end
if strcmpi(cmd, 'Verbosity')
varargout{1} = verbosity;
if (~isempty(varargin)) && ~isempty(varargin{1})
verbosity = varargin{1};
if exist('PsychVulkanCore', 'file')
try
PsychVulkanCore('Verbosity', verbosity);
catch
lasterror('reset');
end
end
end
return;
end
if strcmpi(cmd, 'OverrideFlags')
varargout{1} = ovrFlags;
if ~isempty(varargin)
ovrFlags = varargin{1};
end
return;
end
% isSupported = PsychVulkan('Supported');
if strcmpi(cmd, 'Supported')
% Init supported flag via one-time probe:
if isempty(supported)
try
if exist('PsychVulkanCore', 'file') && PsychVulkanCore('GetCount') > 0
supported = 1;
else
supported = 0;
end
if isempty(verbosity)
verbosity = 3;
PsychVulkanCore('Verbosity', verbosity);
end
catch
lasterror('reset');
supported = 0;
end
end
varargout{1} = supported;
return;
end
% [winRect, ovrfbOverrideRect, ovrSpecialFlags, outputName] = PsychVulkan('OpenWindowSetup', outputName, screenId, winRect, ovrfbOverrideRect, ovrSpecialFlags);
if strcmpi(cmd, 'OpenWindowSetup')
outputName = varargin{1};
screenId = varargin{2};
winRect = varargin{3};
ovrfbOverrideRect = varargin{4}; %#ok<NASGU>
ovrSpecialFlags = varargin{5};
if isempty(ovrSpecialFlags)
ovrSpecialFlags = 0;
end
outputIndex = [];
% On Linux X11 one can select a single video output via outputName parameter or winRect:
if IsLinux && ~IsWayland
if ~isempty(outputName)
% Try to find the output with the requested name on requested X-Screen screenId:
output = [];
for i = 0:Screen('ConfigureDisplay', 'NumberOutputs', screenId)-1
% Skip this output i if it is in the set of outputs used on this
% screenId in direct display mode already, ie. RandR leased:
if ismember(i, usedOutputs{screenId + 1})
continue;
end
output = Screen('ConfigureDisplay', 'Scanout', screenId, i);
if strcmp(output.name, outputName)
% This output i is the right output.
% Position our onscreen window accordingly:
outputIndex = i;
winRect = OffsetRect([0, 0, output.width, output.height], output.xStart, output.yStart);
if verbosity >= 4
fprintf('PsychVulkan-INFO: Positioning onscreen window at rect [%i, %i, %i, %i] to align with display output %i [%s] on screen %i.\n', ...
winRect(1), winRect(2), winRect(3), winRect(4), i, outputName, screenId);
end
break;
else
output = [];
outputIndex = [];
end
end
if isempty(output)
% No such output with outputName!
sca;
error('PsychVulkan-ERROR: Invalid outputName ''%s'' requested for Vulkan fullscreen display on screen %i. No such output available or output already in fullscreen use.', outputName, screenId);
end
else
% No outputName given, 'winRect' provided?
if ~isempty(winRect)
% Yes. Does it match an attached RandR output exactly?
output = [];
for i = 0:Screen('ConfigureDisplay', 'NumberOutputs', screenId)-1
% Skip this output i if it is in the set of outputs used on this
% screenId in direct display mode already, ie. RandR leased:
if ismember(i, usedOutputs{screenId + 1})
continue;
end
output = Screen('ConfigureDisplay', 'Scanout', screenId, i);
outputRect = OffsetRect([0, 0, output.width, output.height], output.xStart, output.yStart);
if isequal(winRect, outputRect)
% This output i is the right output.
outputName = output.name;
outputIndex = i;
if verbosity >= 4
fprintf('PsychVulkan-INFO: Onscreen window at rect [%i, %i, %i, %i] is aligned with display output %i [%s] of screen %i.\n', ...
winRect(1), winRect(2), winRect(3), winRect(4), i, outputName, screenId);
end
break;
else
output = [];
outputIndex = [];
end
end
% Does an output 'outputName' match the winRect?
if isempty(output)
% No. So the non-empty winRect specifies a non-fullscreen window,
% only covering part of an X-Screen and part of outputs. Iow.,
% this is a windowed window:
outputName = [];
end
else
% Empty winRect on a Linux X11 screen. Assume fullscreen on primary output for screenId:
i = 0;
% Skip this output i if it is in the set of outputs used on this
% screenId in direct display mode already, ie. RandR leased:
while ismember(i, usedOutputs{screenId + 1})
% Try next available output on the screenId:
i = i + 1;
if i == Screen('ConfigureDisplay', 'NumberOutputs', screenId)
% No more outputs available - All are already leased in
% direct display mode:
sca;
error('PsychVulkan-ERROR: Could not find a free output for Vulkan fullscreen display on screen %i. All outputs are already in fullscreen use.', screenId);
end
end
output = Screen('ConfigureDisplay', 'Scanout', screenId, i);
outputName = output.name;
outputIndex = i;
% Update winRect accordingly:
winRect = OffsetRect([0, 0, output.width, output.height], output.xStart, output.yStart);
if verbosity >= 4
fprintf('PsychVulkan-INFO: Positioning onscreen window at rect [%i, %i, %i, %i] to align with display output %i [%s] of screen %i.\n', ...
winRect(1), winRect(2), winRect(3), winRect(4), i, outputName, screenId);
end
end
end
else
% Not Linux X11: Linux DRM/KMS VT, Linux Wayland, MS-Windows etc.
if isempty(winRect)
% No winRect given: Means fullscreen on a specific monitor, defined by screenId:
winRect = Screen('GlobalRect', screenId);
outputName = 1;
outputIndex = 0;
else
% Non-empty winRect: Fullscreen on monitor defined by screenId?
if isequal(winRect, Screen('GlobalRect', screenId))
% Yes: Fullscreen display:
outputName = 1;
outputIndex = 0;
else
% No: Windowed non-fullscreen window:
outputName = [];
outputIndex = [];
end
end
if ~isempty(outputName)
if verbosity >= 3
fprintf('PsychVulkan-INFO: Onscreen window at rect [%i, %i, %i, %i] is aligned with fullscreen exclusive output for screenId %i.\n', ...
winRect(1), winRect(2), winRect(3), winRect(4), screenId);
end
end
end
% If a fullscreen output is assigned, then set its crtc and display engine
% as rank 0 primary output:
if ~isempty(outputIndex)
Screen('Preference', 'ScreenToHead', screenId, outputMappings{screenId + 1}(1, outputIndex + 1), outputMappings{screenId + 1}(2, outputIndex + 1), 0);
end
% These always have to match:
ovrfbOverrideRect = winRect;
% Set ovrSpecialFlags override settings to mark the onscreen window as not
% important for visual stimulation, because the actual window / OpenGL windowing
% backend is not used for primary stimulus display. Instead we / Vulkan/WSI is
% in charge for proper visual stimulus display to the actual display monitor.
% This will cause Screen() to skip certain tests or calibrations and omit certain
% warnings, e.g., wrt. timing precision, active desktop compositors etc., as they
% don't really apply - or at least not in a way Screen() can deal with, as it is
% the Vulkan drivers job to handle that:
ovrSpecialFlags = mor(ovrSpecialFlags, kPsychExternalDisplayMethod);
% Assign modified return args:
varargout{1} = winRect;
varargout{2} = ovrfbOverrideRect;
varargout{3} = ovrSpecialFlags;
varargout{4} = outputName;
return;
end
% vwin = PsychVulkan('PerformPostWindowOpenSetup', window, windowRect, isFullscreen, outputName, hdrMode, colorPrecision, colorSpace, colorFormat, gpuIndex, flags)
if strcmpi(cmd, 'PerformPostWindowOpenSetup')
% Setup operations after Screen's PTB onscreen window is opened, and OpenGL and
% the imaging pipeline are brought up. Needs to hook up the imaging pipeline to
% ourselves and the PsychVulkanCore low-level driver.
% noglfinish, if set to 1, will avoid glFinish() for OpenGL->Vulkan sync, but
% instead request and use a shared semaphore for sync, which should be a bit
% faster in theory:
noglfinish = 1;
% Must have global GL constants:
if isempty(GL)
varargout{1} = 0;
warning('PTB internal error in PsychVulkan: GL struct not initialized?!?');
return;
end
% Psychtoolbox Screen onscreen window handle:
win = varargin{1};
% Window position and size rectangle:
windowRect = varargin{2};
% Fullscreen flag: 1 = Take over a whole monitor, 0 = Operate as regular window.
isFullscreen = varargin{3};
% Display output name - Only relevant on Linux/X11 atm.:
outputName = varargin{4};
% hdrMode: 0 = SDR, 1 = HDR-10:
hdrMode = varargin{5};
% colorPrecision: 0 = 8 bpc RGBA8, 1 = 10 bpc RGB10_A2, 2 = fp16 RGBA16F half-float:
colorPrecision = varargin{6};
% VkColorSpace id. If empty, then will be set automatically according to hdrMode:
colorSpace = varargin{7};
% VkFormat color format. If empty, then will be set automatically according to colorPrecision and/or hdrMode:
colorFormat = varargin{8};
% gpuIndex of Vulkan driver+gpu combo to use: 0 = Auto-Select, 1 = 1st, 2 = 2nd, ... gpu.
gpuIndex = varargin{9};
% Optional flags, and'ed together: +1 = Diagnostic display only, no interop:
flags = varargin{10};
% Override flags specified?
if ~isempty(ovrFlags)
% Yes. Use them as override:
fprintf('PsychVulkan-INFO: Global low level override flags %i specified via PsychVulkan(''OverrideFlags''). Using it instead of caller-provided flags %i.\n', ovrFlags, flags);
flags = ovrFlags;
end
winfo = Screen('GetWindowInfo', win);
screenId = Screen('WindowScreenNumber', win);
refreshHz = Screen('Framerate', screenId);
devs = PsychVulkanCore('GetDevices');
% Restore rank 0 output setting in Screen:
Screen('Preference', 'ScreenToHead', screenId, outputMappings{screenId + 1}(1, 1), outputMappings{screenId + 1}(2, 1), 0);
% AMD gpu under MS-Windows?
if IsWin && ~isempty(strfind(winfo.GLVendor, 'ATI'))
% For some of these the AMD Vulkan driver is buggy in that
% switching to fullscreen-exclusive mode for fullscreen windows
% causes massive malfunctions and a black screen display only,
% e.g., the Radeon RX 460 (Polaris, pci device id 0x67EF).
% Check gpu against badFSEIds list and enable a workaround if it is
% one of the bad gpu's:
badFSEIds = hex2dec({'67EF'});
for i=1:length(devs)
if (devs(i).VendorId == 4098) && strcmp(winfo.GLRenderer, devs(i).GpuName) && ismember(devs(i).DeviceId, badFSEIds)
% Got a bad one! Disable fullscreen-exclusive mode for fullscreen windows:
flags = mor(flags, 2);
fprintf('PsychVulkan-INFO: AMD gpu [%s] with buggy Vulkan driver for fullscreen mode detected! Enabling workaround, timing reliability may suffer.\n', devs(i).GpuName);
end
end
end
if isempty(strfind(glGetString(GL.EXTENSIONS), 'GL_EXT_memory_object')) %#ok<STREMP>
flags = mor(flags, 1);
noInterop = 1;
% If no specific Vulkan gpu was requested, select the first non-AMD/NVidia
% gpuIndex (as we know AMD/NVidia can't be it - they fully support interop).
% Default to gpuIndex 1 in case this filtering fails to find an elegible gpu:
if isempty(gpuIndex) || gpuIndex == 0
gpuIndex = 1;
for i=1:length(devs)
if ~ismember(devs(i).DriverId, [1, 2, 3, 4])
gpuIndex = devs(i).DeviceIndex;
end
end
end
fprintf('PsychVulkan-INFO: OpenGL implementation does not support OpenGL-Vulkan interop! Enabling basic diagnostic mode on gpu %i.\n', gpuIndex);
else
noInterop = 0;
end
usedOutput = [];
oldbpc = 0;
if IsLinux
if isFullscreen
if ~isempty(outputName)
% Try to find the output with the requested name:
output = [];
for i = 0:Screen('ConfigureDisplay', 'NumberOutputs', screenId)-1
if ismember(i, usedOutputs{screenId + 1})
continue;
end
output = Screen('ConfigureDisplay', 'Scanout', screenId, i);
if strcmp(output.name, outputName)
% This output i is the right output.
usedOutput = i;
% Position our onscreen window accordingly:
winRect = OffsetRect([0, 0, output.width, output.height], output.xStart, output.yStart);
if verbosity >= 3
fprintf('PsychVulkan-INFO: Positioning onscreen window at rect [%i, %i, %i, %i] to align with display output %i [%s] of screen %i.\n', ...
winRect(1), winRect(2), winRect(3), winRect(4), i, outputName, screenId);
end
break;
else
output = [];
end
end
else
% Choose primary output for screenId:
if ~ismember(0, usedOutputs{screenId + 1})
usedOutput = 0;
output = Screen('ConfigureDisplay', 'Scanout', screenId, 0);
else
output = [];
end
end
if isempty(output)
sca;
error('Failed to open Vulkan window: Could not find suitable fullscreen output.');
end
% On Linux in fullscreen mode, outputHandle encodes the X11 RandR XID
% of the RandR output which we want to take over for direct mode display:
outputHandle = uint64(output.outputHandle);
outputName = output.name;
refreshHz = output.hz;
% More than 8 bpc output precision desired?
% Note that colorPrecision == 0 and hdrMode > 0 gets handled automatically
% by the Vulkan driver (amdvlk), ie. setup for 10 bpc -> 8/10 is fine.
if colorPrecision > 0
% Need to call SetWindowBackendOverrides early before Vulkan openwindow,
% as potential RandR 'max bpc' output precision setup will no longer work
% once the X-Server is locked out by Vulkan.
% Therefore set bpc to the maximum possible, given our current information.
% Later on we will call SetWindowBackendOverrides again after window open,
% when we actually know the true effective framebuffer output precision.
%
% Assign override color depth and refresh interval for display:
if colorPrecision == 1
% RGB10_A2:
bpc = 10;
elseif colorPrecision == 2 || colorPrecision == 6
% fp16 ~ 11:
bpc = 11;
else
% 16 bpc fixed point:
bpc = 16;
end
Screen('HookFunction', win, 'SetWindowBackendOverrides', [], bpc * 3, 1 / refreshHz);
oldbpc = bpc;
end
else
% On Linux in windowed mode, outputHandle encodes the X11 window handle of
% the PTB onscreen window, which we will use for the Vulkan display:
outputHandle = uint64(winfo.SysWindowHandle);
% TODO XXX: Should we calculate refreshHz per output or from FlipInterval instead?
end
else
% On Windows, outputHandle is meaningless atm.:
outputHandle = uint64(0);
if isFullscreen
% Mark output 0 (the only possible output for a screenId on
% non-Linux/X11) of screenId as used:
if ~ismember(0, usedOutputs{screenId + 1})
usedOutput = 0;
else
% Output already used!
sca;
error('Failed to open Vulkan window: Tried to open fullscreen-exclusive output on screenId %i, but that one is already in use.', screenId);
end
end
end
% Get the UUID of the Vulkan device that is compatible with our associated
% OpenGL renderer/gpu. Compatible means: Can by used for OpenGL-Vulkan interop:
if ~isempty(winfo.GLDeviceUUID)
targetUUID = winfo.GLDeviceUUID;
else
% None provided, because the OpenGL implementation does not support
% OpenGL-Vulkan interop. Assign empty id for most basic testing:
targetUUID = zeros(1, 16, 'uint8');
end
% Is the special fullscreen direct display mode workaround for NVidia blobs on Linux needed?
needsNvidiaWa = IsLinux && isFullscreen && strcmp(winfo.DisplayCoreId, 'NVidia') && ~isempty(strfind(winfo.GLVendor, 'NVIDIA'));
% Try to open the Vulkan window and setup Vulkan side of interop:
try
% Awful hack to deal with NVidia blobs limitations wrt. output leasing. Output leasing only works for disabled
% outputs, so we have to shut the output down before opening a Vulkan window:
if needsNvidiaWa
system(sprintf('xrandr --screen %i --output %s --off ; sleep 1', screenId, outputName));
end
if hdrMode
% We want an identity hardware gamma lut in HDR, but at maximum lut precision,
% so output does not get truncated to 8 bpc. Therefore we can't use LoadIdentityClut()
% which is aimed at 8 bpc identity pixel passthrough.
% On Linux X11 we may have to address individual RandR outputs:
if IsLinux && ~IsWayland
physicalDisplay = usedOutput;
else
physicalDisplay = [];
end
% Backup old lut for this screen:
BackupCluts(screenId);
% Upload a perfectly linear lut for the given gpu:
[~, ~, reallutsize] = Screen('ReadNormalizedGammaTable', win, physicalDisplay);
% AMD gpu under Linux?
if IsLinux && strcmp(winfo.DisplayCoreId, 'AMD')
% Use special identity gamma table (like in LoadIdentityClut()) that
% is known and verified to get recognized by amdgpu-kms DC and trigger
% gamma table hardware bypass mode in hardware:
identityLUT = (linspace(0, 1, 256)' * ones(1, 3));
else
% Other gpu + driver + os combo: Standard identity lut:
identityLUT = repmat(linspace(0, 1, reallutsize)', 1, 3);
end
Screen('LoadNormalizedGammaTable', win, identityLUT, 0, physicalDisplay);
if verbosity >= 3
fprintf('PsychVulkan-INFO: Loaded identity gamma table into output for HDR.\n');
end
end
% Open the Vulkan window:
vwin = PsychVulkanCore('OpenWindow', gpuIndex, targetUUID, isFullscreen, screenId, windowRect, outputHandle, hdrMode, colorPrecision, refreshHz, colorSpace, colorFormat, flags);
% No interop, or semaphores unsupported?
if noInterop || isempty(strfind(glGetString(GL.EXTENSIONS), 'GL_EXT_semaphore')) %#ok<STREMP>
if ~noInterop
fprintf('PsychVulkan-INFO: OpenGL implementation does not support OpenGL-Vulkan interop semaphores! Enabling operation without semaphores on gpu %i.\n', gpuIndex);
else
fprintf('PsychVulkan-INFO: Interop disabled! Enabling operation without semaphores on gpu %i.\n', gpuIndex);
end
% In no-interop debug mode we must not use semaphores, because they
% are likely unsupported by the OpenGL or Vulkan driver as well, so
% use classic fallback path with glFinish:
noglfinish = 0;
end
% Get all required info for OpenGL-Vulkan interop:
[interopObjectHandle, allocationSize, formatSpec, tilingMode, memoryOffset, width, height, renderCompleteSemaphore] = PsychVulkanCore('GetInteropHandle', vwin, noglfinish);
catch
% Failed! Reenable RandR output if this was a failed attempt at output leasing on Linux + NVidia:
if needsNvidiaWa
system(sprintf('xrandr --screen %i --output %s --auto ; sleep 1', screenId, outputName));
end
% Close all windows:
sca;
error('Failed to open Vulkan window.');
end
% We got the open Vulkan window, and the interop info. Setup OpenGL interop:
% Selection of format for the OpenGL interop texture, matching what Vulkan selected:
switch formatSpec
case 0
internalFormat = GL.RGBA8;
bpc = 8;
if verbosity >= 3
fprintf('PsychVulkan-INFO: 8 bpc linear precision framebuffer will be used.\n');
end
case 1
internalFormat = GL.RGB10_A2;
bpc = 10;
if verbosity >= 3
fprintf('PsychVulkan-INFO: 10 bpc linear precision framebuffer will be used.\n');
end
case 2
internalFormat = GL.RGBA16F;
bpc = 11;
if verbosity >= 3
fprintf('PsychVulkan-INFO: 16 bpc non-linear half-float precision framebuffer will be used.\n');
end
case 3
internalFormat = GL.RGBA16;
bpc = 16;
if verbosity >= 3
fprintf('PsychVulkan-INFO: 16 bpc linear precision framebuffer will be used.\n');
end
otherwise
sca;
error('Unknown formatSpec provided!');
end
% Selection of OpenGL tiling mode for rendering into interop texture:
if tilingMode
tilingMode = GL.OPTIMAL_TILING_EXT;
if verbosity >= 4
fprintf('PsychVulkan-INFO: Using tiled rendering layout framebuffer for interop rendering.\n');
end
else
tilingMode = GL.LINEAR_TILING_EXT;
if verbosity >= 4
fprintf('PsychVulkan-INFO: Using linear rendering layout framebuffer for interop rendering.\n');
end
end
% Set it up:
if ~noInterop
Screen('Hookfunction', win, 'ImportDisplayBufferInteropMemory', [], 0, interopObjectHandle, allocationSize, internalFormat, tilingMode, memoryOffset, width, height, renderCompleteSemaphore);
end
vulkan{win}.valid = 1;
vulkan{win}.win = win;
vulkan{win}.vwin = vwin;
vulkan{win}.width = width;
vulkan{win}.height = height;
vulkan{win}.isFullscreen = isFullscreen;
vulkan{win}.screenId = screenId;
vulkan{win}.windowRect = windowRect;
vulkan{win}.outputHandle = outputHandle;
vulkan{win}.outputName = outputName;
vulkan{win}.needsNvidiaWa = needsNvidiaWa;
% Find out which Vulkan device was chosen to drive this window:
hdrInfo = PsychVulkanCore('GetHDRProperties', vwin);
gpuIndex = hdrInfo.GPUIndex;
% Mesa opens-source AMD radv or Intel anvil driver of Mesa version < 20.1.2 in use for fullscreen direct display mode?
if isFullscreen && ismember(devs(gpuIndex).DriverId, [3, 6]) && (devs(gpuIndex).DriverVersionRaw < bitshift (20, 22) + bitshift (1, 12) + 2)
% These pre-20.1.2 drivers have a bug where in direct display mode they won't release the
% display unless the complete Vulkan instance is destroyed. Iow. we need a full driver
% shutdown:
vulkan{win}.needsMesaDDMWa = 1;
fprintf('PsychVulkan-WARNING: Need to enable full-driver-shutdown workaround for buggy Mesa Vulkan driver!\n');
fprintf('PsychVulkan-WARNING: This may fail badly on multi-window configurations and is a bad hack!\n');
fprintf('PsychVulkan-WARNING: Please upgrade to Mesa version 20.1.2 or later to get rid of this hack.\n');
else
vulkan{win}.needsMesaDDMWa = 0;
end
% Store for win'dow if Vulkan driver supports high-precision timing and timestamping natively:
vulkan{win}.SupportsTiming = devs(gpuIndex).SupportsTiming;
% Interop enabled. Set up callbacks from Screen() imaging pipeline into our driver:
% Optimized method: Use semaphore for render completion signalling by OpenGL,
% Do not reset "one-shot" flags, so we do not set them again before each flip.
% We do all swap scheduling and timestamping, so Screen can skip OpenGL buffer swaps,
% waits/scheduling/timestamping:
Screen('Hookfunction', win, 'SetOneshotFlipFlags', '', kPsychDontAutoResetOneshotFlags + kPsychSkipWaitForFlipOnce + kPsychSkipSwapForFlipOnce + kPsychSkipTimestampingForFlipOnce);
if ~noglfinish
% Old method as fallback: Use glFinish to sync Vulkan with OpenGL:
Screen('Hookfunction', win, 'AppendMFunction', 'LeftFinalizerBlitChain', 'Vulkan Mono commit operation', 'moglcore(''glFinish'');');
Screen('Hookfunction', win, 'Enable', 'LeftFinalizerBlitChain');
end
cmdString = sprintf('PsychVulkan(0, %i, %i, IMAGINGPIPE_FLIPTWHEN, IMAGINGPIPE_FLIPVBLSYNCLEVEL);', win, vwin);
Screen('Hookfunction', win, 'AppendMFunction', 'PreSwapbuffersOperations', 'Vulkan Present operation', cmdString);
Screen('Hookfunction', win, 'Enable', 'PreSwapbuffersOperations');
cmdString = sprintf('PsychVulkan(1, %i);', win);
Screen('Hookfunction', win, 'PrependMFunction', 'CloseOnscreenWindowPreGLShutdown', 'Vulkan cleanup', cmdString);
Screen('Hookfunction', win, 'Enable', 'CloseOnscreenWindowPreGLShutdown');
% Avoid redundant call, if already done in Linux fullscreen path and effective
% bpc has not changed since then. Redundant calls are not harmful, but produce
% needless redundant status message clutter.
if oldbpc ~= bpc
% Assign override color depth and refresh interval for display:
Screen('HookFunction', win, 'SetWindowBackendOverrides', [], bpc * 3, 1 / refreshHz);
end
% Mark usedOutput as being used by this window:
vulkan{win}.usedOutput = usedOutput;
% Mark usedOutput as being used on windows screenId:
usedOutputs{screenId + 1} = union(usedOutputs{screenId + 1}, usedOutput);
varargout{1} = vwin;
return;
end
% 'cmd' so far not dispatched? Let's assume it is a command
% meant for PsychVulkanCore:
if (~isempty(varargin)) && ~isempty(varargin{1}) && isscalar(varargin{1}) && isreal(varargin{1}) && (Screen('WindowKind', varargin{1}) == 1)
win = varargin{1};
vwin = vulkan{win}.vwin;
[ varargout{1:nargout} ] = PsychVulkanCore(cmd, vwin, varargin{2:end});
else
[ varargout{1:nargout} ] = PsychVulkanCore(cmd, varargin{:});
end
end
|