-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtexture.cpp
121 lines (107 loc) · 2.59 KB
/
texture.cpp
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
#include <SOIL/SOIL.h>
#include "texture.h"
#include "clutil.h"
#include "debug.h"
std::vector<Texture*> Texture::textures;
size_t Texture::frame_width = 0;
size_t Texture::frame_height = 0;
unsigned char* load_texture(const char* file, int* width, int* height)
{
return SOIL_load_image(file, width, height, 0, SOIL_LOAD_RGBA);
}
Texture::Texture( const char* filename )
{
static int ID = 0;
int width;
int height;
texture = load_texture( filename, &width, &height );
if(!texture)
{
dprintf(0, "Fatal: could not load texture \"%s\"\n", filename);
}
this->width = width;
this->height = height;
this->ID = ID++;
this->filename = filename;
textures.push_back(this);
frame_width = frame_width > size_t(width) ? frame_width : size_t(width);
frame_height = frame_height > size_t(height) ? frame_height : size_t(height);
}
cl_mem Texture::compileTextureImage( cl_context clcontext, cl_command_queue clqueue )
{
cl_mem image = 0;
cl_image_format imf = { CL_RGBA, CL_UNSIGNED_INT8 };
cl_image_desc imd =
{
CL_MEM_OBJECT_IMAGE2D_ARRAY,
frame_width,
frame_height,
1,
textures.size(),
0,
0,
0,
0,
0
};
HandleErrorPar(
image = clCreateImage( clcontext,
CL_MEM_READ_ONLY,
&imf,
&imd,
NULL,
HANDLE_ERROR
)
);
for( unsigned i = 0; i < textures.size(); i++ )
{
size_t origin[] = {0,0,i};
size_t region[] = {
textures[i]->width,
textures[i]->height,
1
};
HandleErrorRet(
clEnqueueWriteImage( clqueue,
image,
i == textures.size()-1,
origin,
region,
textures[i]->width*4,
0,
textures[i]->texture,
0,
NULL,
NULL
)
);
}
return image;
}
void Texture::writeTextureData( std::vector<float>& buffer )
{
buffer.push_back( float(ID) );
buffer.push_back( float(width)/float(frame_width) );
buffer.push_back( float(height)/float(frame_height) );
}
Image::Image( const char* filename )
{
int width;
int height;
image = load_texture( filename, &width, &height );
if(!image)
{
dprintf(0, "Fatal: could not load image \"%s\"\n", filename);
return;
}
this->width = width;
this->height = height;
this->filename = filename;
printf("Muh res: %d, %d\n", width, height);
glGenTextures(1, &TID);glErrorCheck;
glBindTexture(GL_TEXTURE_2D, TID);glErrorCheck;
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, image); glErrorCheck;
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); glErrorCheck;
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); glErrorCheck;
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glErrorCheck;
}