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
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<floater name="TexFetchDebugger" title="Depurador de obtención de texturas">
<text name="total_num_fetched_label">
1, Número total de texturas obtenidas: [NUM]
</text>
<text name="total_num_fetching_requests_label">
2, Número total de solicitudes de obtención: [NUM]
</text>
<text name="total_num_cache_hits_label">
3, Número total de aciertos de caché: [NUM]
</text>
<text name="total_num_visible_tex_label">
4, Número total de texturas visibles: [NUM]
</text>
<text name="total_num_visible_tex_fetch_req_label">
5, Número total de solicitudes de obtención de texturas visibles: [NUM]
</text>
<text name="total_fetched_data_label">
6, Número total de datos obtenidos: [SIZE1] KB, Datos descodificados: [SIZE2] KB, [PIXEL] MPíxeles
</text>
<text name="total_fetched_vis_data_label">
7, Número total de datos visibles: [SIZE1] KB, Datos descodificados: [SIZE2] KB
</text>
<text name="total_fetched_rendered_data_label">
8, Número total de datos representados: [SIZE1] KB, Datos descodificados: [SIZE2] KB, [PIXEL] MPíxeles
</text>
<text name="total_time_cache_read_label">
9, Tiempo total en lecturas de caché: [TIME] segundos
</text>
<text name="total_time_cache_write_label">
10, Tiempo total en escrituras de caché: [TIME] segundos
</text>
<text name="total_time_decode_label">
11, Tiempo total en descodificaciones: [TIME] segundos
</text>
<text name="total_time_gl_label">
12, Tiempo total en la creación de texturas gl: [TIME] segundos
</text>
<text name="total_time_http_label">
13, Tiempo total en obtención de HTTP: [TIME] segundos
</text>
<text name="total_time_fetch_label">
14, Tiempo total en obtención completa: [TIME] segundos
</text>
<text name="total_time_refetch_vis_cache_label">
15, Volviendo a obtener visibles de la caché, Tiempo: [TIME] segundos, Obtenidos: [SIZE] KB, [PIXEL] MPíxeles
</text>
<text name="total_time_refetch_all_cache_label">
16, Volviendo a obtener todas las texturas de caché, Tiempo: [TIME] segundos, Obtenidos: [SIZE] KB, [PIXEL] MPíxeles
</text>
<text name="total_time_refetch_vis_http_label">
17, Volviendo a obtener visibles de HTTP, Tiempo: [TIME] segundos, Obtenidos: [SIZE] KB, [PIXEL] MPíxeles
</text>
<text name="total_time_refetch_all_http_label">
18, Volviendo a obtener todas las texturas de HTTP, Tiempo: [TIME] segundos, Obtenidos: [SIZE] KB, [PIXEL] MPíxeles
</text>
<spinner label="19, Proporción de texeles/píxeles:" name="texel_pixel_ratio"/>
<text name="texture_source_label">
20, Fuente de texturas:
</text>
<radio_group name="texture_source">
<radio_item label="Caché + HTTP" name="0"/>
<radio_item label="Solo HTTP" name="1"/>
</radio_group>
<button label="Iniciar" name="start_btn"/>
<button label="Restablecer" name="clear_btn"/>
<button label="Cerrar" name="close_btn"/>
<button label="Lectura de caché" name="cacheread_btn"/>
<button label="Escritura de caché" name="cachewrite_btn"/>
<button label="HTTP" name="http_btn"/>
<button label="Descodificar" name="decode_btn"/>
<button label="Textura GL" name="gl_btn"/>
<button label="Volver a obtener caché de vis." name="refetchviscache_btn"/>
<button label="Volver a obtener toda la caché" name="refetchallcache_btn"/>
<button label="Volver a obtener HTTP de vis." name="refetchvishttp_btn"/>
<button label="Volver a obtener todo el HTTP" name="refetchallhttp_btn"/>
</floater>
|