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
|
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <dirent.h>
#include <waffle-1/waffle.h>
#include "piglit_ktx.h"
/* This process requires that we construct blobs of LOD0 images, LOD1, etc
and pass those in as images[] for libktx */
GLint
_mesa_components_in_format(GLenum format)
{
switch (format) {
case GL_RGB:
case GL_BGR:
return 3;
case GL_RGBA:
case GL_BGRA:
return 4;
default:
return -1;
}
}
GLint
_mesa_bytes_per_pixel(GLenum format, GLenum type)
{
GLint comps = _mesa_components_in_format(format);
if (comps < 0)
return -1;
switch (type) {
case GL_BYTE:
case GL_UNSIGNED_BYTE:
return comps * sizeof(GLubyte);
case GL_SHORT:
case GL_UNSIGNED_SHORT:
return comps * sizeof(GLshort);
case GL_INT:
case GL_UNSIGNED_INT:
return comps * sizeof(GLint);
case GL_FLOAT:
return comps * sizeof(GLfloat);
case GL_HALF_FLOAT:
return comps * sizeof(GLhalf);
default:
return -1;
}
}
int
no_dot_output_filter (const struct dirent * dir_entity)
{
return strlen(dir_entity->d_name) > 2 &&
strstr(dir_entity->d_name, "waffles.ktx") == NULL &&
strstr(dir_entity->d_name, ".ktx") != NULL &&
strstr(dir_entity->d_name, "swp") == NULL;
}
void make_context()
{
/* Generate a context */
struct waffle_display *dpy;
struct waffle_config *config;
struct waffle_window *window;
struct waffle_context *ctx;
const int32_t init_attrs[] = {
WAFFLE_PLATFORM, WAFFLE_PLATFORM_X11_EGL,
0,
};
const int32_t config_attrs[] = {
WAFFLE_CONTEXT_API, WAFFLE_CONTEXT_OPENGL_ES2,
WAFFLE_RED_SIZE, 8,
WAFFLE_BLUE_SIZE, 8,
WAFFLE_GREEN_SIZE, 8,
0,
};
const int32_t window_width = 320;
const int32_t window_height = 240;
waffle_init(init_attrs);
dpy = waffle_display_connect(NULL);
// Exit if OpenGL ES2 is unsupported.
if (!waffle_display_supports_context_api(dpy, WAFFLE_CONTEXT_OPENGL_ES2)
|| !waffle_dl_can_open(WAFFLE_DL_OPENGL_ES2))
{
exit(EXIT_FAILURE);
}
config = waffle_config_choose(dpy, config_attrs);
window = waffle_window_create(config, window_width, window_height);
ctx = waffle_context_create(config, NULL);
waffle_make_current(dpy, window, ctx);
}
/* Accepts the mipmap dir, the output filename */
int
main(int argc, char *argv[])
{
/* Get arguments */
char * filename = argv[1];
int miplevels = atoi(argv[2]);
int arg_offset = 3;
unsigned imgs = argc - arg_offset;
/* Create GLES2 context */
make_context();
/* Structs used to write the final output */
KTX_image_info *img_info = (KTX_image_info*)malloc(imgs * sizeof(KTX_image_info));
KTX_texture_info tex_info;
/* Fill out final struct */
/* Read in the file from memory */
char * cur_file = argv[arg_offset];
FILE* file = fopen(cur_file, "rb");
if (file == NULL)
printf("File not opened\n");
/* Skip the identifier and endianness */
int error = fseek(file, 16, SEEK_SET);
if (error)
printf("File seek bad\n");
/* Read the appropriate header bits */
size_t size_read = fread(&tex_info, 1, sizeof(tex_info), file);
if (size_read < sizeof(tex_info))
printf("bad read 1\n");
/* Close the file */
if (file != NULL)
fclose(file);
/* Update the array section */
tex_info.numberOfArrayElements = imgs;
int cur_lev;
int cur_img;
struct piglit_ktx* files[imgs];
for (cur_lev = 0; cur_lev < miplevels; ++cur_lev) {
int level_size = 0;
for (cur_img = 0; cur_img < imgs; ++cur_img) {
char * cur_file = argv[cur_img+arg_offset];
printf("%s\n", cur_file);
/* Read in the files into memory */
if (cur_lev == 0) {
files[cur_img] = piglit_ktx_read_file(cur_file);
}
/* Get level size */
level_size += piglit_ktx_get_image(files[cur_img], cur_lev, 0)->size;
}
printf("Level %d size is %d\n", cur_lev, level_size);
/* Create the texture array */
img_info[cur_lev].size = level_size;
img_info[cur_lev].data = (char*) malloc(level_size);
int next_offset = 0;
for (cur_img = 0; cur_img < imgs; ++cur_img) {
const struct piglit_ktx_image* pimg = piglit_ktx_get_image(files[cur_img], cur_lev, 0);
memcpy(img_info[cur_lev].data + next_offset, pimg->data, pimg->size);
next_offset += pimg->size;
}
}
/* Write memory object to file */
KTX_error_code kec;
kec = ktxWriteKTXN(filename, &tex_info, 0, NULL, miplevels, img_info);
printf("%s - %s\n", filename, ktxErrorString(kec));
/* Cleanup */
// for (cur_img = 0; cur_img < imgs; ++cur_img)
// free(img_info[cur_img].data);
// free(img_info);
return 0;
}
|