You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Area of Cosmos - What area of Cosmos are we dealing with?
I think with Canvas.Disable
Expected Behaviour - What do you think that should happen?
Kills the grahics driver and return to normal CLI/TTY mode
Actual Behaviour - What unexpectedly happens?
Vmware disaplays this error:
Reproduction - How did you get this error to appear?
with this custom function:
public static void Disable()
{
try
{
cnv.Disable(); ProcessMgr.running.Clear(); Kernel.SetGraphicsMode('c');
} catch(Exception ex) { aText.Errore("disable gpu",ex.Message); }
}
p.s. cnv is the Canvas.
and kernel.setgraphics mode 'c' is:
[...]
case 'c':
onGUI = false;
if (!aCLI.alreadyInit)
{
aCLI.Init();
aCLI.alreadyInit = true;
}
graphicsMode = 'c';
break;
[...]
and kernel loop is:
try
{
//update the clock
aClock.Aggiorna();
//Ottimizza la gestione della Memoria - Memory manager optimization
Heap.Collect();
//update respectevly about graphics mode.
switch (graphicsMode)
{
/*
* c => CLI/TTY mode
* g => GPU drivers & GUI at Window with Mouse.
* e => When occoures a severe error (a.k.a. crash)
*/
default:
case 'c':
aCLI.Loop();
break;
[...]
Version - Were you using the User Kit or Dev Kit? And what User Kit version or Dev Kit commit (Cosmos, IL2CPU, X#)?
I'm using devkit v106027
The text was updated successfully, but these errors were encountered:
Area of Cosmos - What area of Cosmos are we dealing with?
I think with Canvas.Disable
Expected Behaviour - What do you think that should happen?
Kills the grahics driver and return to normal CLI/TTY mode
Actual Behaviour - What unexpectedly happens?
Vmware disaplays this error:
Reproduction - How did you get this error to appear?
with this custom function:
public static void Disable()
{
try
{
cnv.Disable(); ProcessMgr.running.Clear(); Kernel.SetGraphicsMode('c');
} catch(Exception ex) { aText.Errore("disable gpu",ex.Message); }
}
p.s. cnv is the Canvas.
and kernel.setgraphics mode 'c' is:
[...]
case 'c':
onGUI = false;
if (!aCLI.alreadyInit)
{
aCLI.Init();
aCLI.alreadyInit = true;
}
graphicsMode = 'c';
break;
[...]
and kernel loop is:
try
{
//update the clock
aClock.Aggiorna();
//Ottimizza la gestione della Memoria - Memory manager optimization
Heap.Collect();
[...]
Version - Were you using the User Kit or Dev Kit? And what User Kit version or Dev Kit commit (Cosmos, IL2CPU, X#)?
I'm using devkit v106027
The text was updated successfully, but these errors were encountered: