How to get information about memory?

HUDis

New member
Do you know why these commands:
MAIN*SYSTEM*TEXTURE MEMORY_INFO GET
or
TEXTURE MEMORY_INFO GET
w sent to the console they return the message: invalid command?

I am sending commands via TCP from my application::
0 MAIN*SYSTEM*TEXTURE MEMORY_INFO GET' \0

After sending this command, Viz sends me the following message:
b'0 ERROR <MAIN*SYSTEM*TEXTURE MEMORY_INFO GET>: invalid location of MAIN*SYSTEM*TEXTURE\x00'
 
Do you know why these commands:
MAIN*SYSTEM*TEXTURE MEMORY_INFO GET
or
TEXTURE MEMORY_INFO GET
w sent to the console they return the message: invalid command?

I am sending commands via TCP from my application::
0 MAIN*SYSTEM*TEXTURE MEMORY_INFO GET' \0

After sending this command, Viz sends me the following message:
b'0 ERROR <MAIN*SYSTEM*TEXTURE MEMORY_INFO GET>: invalid location of MAIN*SYSTEM*TEXTURE\x00'
try:

Displays heap memory usage of viz engine process:
send SYSTEM*MEMORY GET
0 SYSTEM*MEMORY GET \0

Displays texture memory usage of viz engine process:
send TEXTURE*MEMORY GET
0 TEXTURE*MEMORY GET \0


memory.JPG
 
Thank you very much mlynarik.jozef :)
TEXTURE*MEMORY GET and SYSTEM*MEMORY_ADVANCED GET works fine (y)
SYSTEM*MEMORY GET freze the viz :cautious:
Where can I download such a list of commands? Are there more of them? Would you mind sharing it with me? ;-)
I have one manual but I think it is not complete
 
Thank you very much mlynarik.jozef :)
TEXTURE*MEMORY GET and SYSTEM*MEMORY_ADVANCED GET works fine (y)
SYSTEM*MEMORY GET freze the viz :cautious:
Where can I download such a list of commands? Are there more of them? Would you mind sharing it with me? ;-)
I have one manual but I think it is not complete
You can find the list of commands on the local disk after installing the engine, e.g.:

Viz 5.1.0 - Commands
file:///C:/Program%20Files/Vizrt/VizEngine/Documentation/viz-cmd-doc-webhelp/class_CMain.html#Properties
Viz 3.14.5 - Commands
file:///C:/Program%20Files/Vizrt/Viz3/Documentation/CommandInterface/index.html
 
Last edited:
You can find the list of commands on the local disk after installing the engine, e.g.:

Viz 5.1.0 - Commands
file:///C:/Program%20Files/Vizrt/VizEngine/Documentation/viz-cmd-doc-webhelp/class_CMain.html#Properties
Viz 3.14.5 - Commands
file:///C:/Program%20Files/Vizrt/Viz3/Documentation/CommandInterface/index.html
Of course 🫣
Thx (y):)
 
Back
Top