-Ability to debug video memory usage
-Small fix to xml saver (swapping > and <)
This commit is contained in:
parent
f6a790d58c
commit
b59c86f6f9
18 changed files with 271 additions and 7 deletions
|
|
@ -112,6 +112,21 @@ void VisualServerRaster::texture_set_reload_hook(RID p_texture,ObjectID p_owner,
|
|||
rasterizer->texture_set_reload_hook(p_texture,p_owner,p_function);
|
||||
}
|
||||
|
||||
void VisualServerRaster::texture_set_path(RID p_texture,const String& p_path) {
|
||||
|
||||
rasterizer->texture_set_path(p_texture,p_path);
|
||||
}
|
||||
|
||||
String VisualServerRaster::texture_get_path(RID p_texture) const{
|
||||
|
||||
return rasterizer->texture_get_path(p_texture);
|
||||
}
|
||||
|
||||
void VisualServerRaster::texture_debug_usage(List<TextureInfo> *r_info){
|
||||
|
||||
rasterizer->texture_debug_usage(r_info);
|
||||
}
|
||||
|
||||
/* SHADER API */
|
||||
|
||||
RID VisualServerRaster::shader_create(ShaderMode p_mode) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue