mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 03:08:05 +02:00
Rename print() to printMESA().
This commit is contained in:
parent
563f8ad50a
commit
b6e92d090c
2 changed files with 101 additions and 94 deletions
|
|
@ -1566,114 +1566,114 @@ bool __operator ! (const bool a) {
|
|||
}
|
||||
|
||||
//
|
||||
// mesa-specific extension functions.
|
||||
// MESA-specific extension functions.
|
||||
//
|
||||
|
||||
void print (const float f) {
|
||||
void printMESA (const float f) {
|
||||
__asm float_print f;
|
||||
}
|
||||
|
||||
void print (const int i) {
|
||||
void printMESA (const int i) {
|
||||
__asm int_print i;
|
||||
}
|
||||
|
||||
void print (const bool b) {
|
||||
void printMESA (const bool b) {
|
||||
__asm bool_print b;
|
||||
}
|
||||
|
||||
void print (const vec2 v) {
|
||||
print (v.x);
|
||||
print (v.y);
|
||||
void printMESA (const vec2 v) {
|
||||
printMESA (v.x);
|
||||
printMESA (v.y);
|
||||
}
|
||||
|
||||
void print (const vec3 v) {
|
||||
print (v.x);
|
||||
print (v.y);
|
||||
print (v.z);
|
||||
void printMESA (const vec3 v) {
|
||||
printMESA (v.x);
|
||||
printMESA (v.y);
|
||||
printMESA (v.z);
|
||||
}
|
||||
|
||||
void print (const vec4 v) {
|
||||
print (v.x);
|
||||
print (v.y);
|
||||
print (v.z);
|
||||
print (v.w);
|
||||
void printMESA (const vec4 v) {
|
||||
printMESA (v.x);
|
||||
printMESA (v.y);
|
||||
printMESA (v.z);
|
||||
printMESA (v.w);
|
||||
}
|
||||
|
||||
void print (const ivec2 v) {
|
||||
print (v.x);
|
||||
print (v.y);
|
||||
void printMESA (const ivec2 v) {
|
||||
printMESA (v.x);
|
||||
printMESA (v.y);
|
||||
}
|
||||
|
||||
void print (const ivec3 v) {
|
||||
print (v.x);
|
||||
print (v.y);
|
||||
print (v.z);
|
||||
void printMESA (const ivec3 v) {
|
||||
printMESA (v.x);
|
||||
printMESA (v.y);
|
||||
printMESA (v.z);
|
||||
}
|
||||
|
||||
void print (const ivec4 v) {
|
||||
print (v.x);
|
||||
print (v.y);
|
||||
print (v.z);
|
||||
print (v.w);
|
||||
void printMESA (const ivec4 v) {
|
||||
printMESA (v.x);
|
||||
printMESA (v.y);
|
||||
printMESA (v.z);
|
||||
printMESA (v.w);
|
||||
}
|
||||
|
||||
void print (const bvec2 v) {
|
||||
print (v.x);
|
||||
print (v.y);
|
||||
void printMESA (const bvec2 v) {
|
||||
printMESA (v.x);
|
||||
printMESA (v.y);
|
||||
}
|
||||
|
||||
void print (const bvec3 v) {
|
||||
print (v.x);
|
||||
print (v.y);
|
||||
print (v.z);
|
||||
void printMESA (const bvec3 v) {
|
||||
printMESA (v.x);
|
||||
printMESA (v.y);
|
||||
printMESA (v.z);
|
||||
}
|
||||
|
||||
void print (const bvec4 v) {
|
||||
print (v.x);
|
||||
print (v.y);
|
||||
print (v.z);
|
||||
print (v.w);
|
||||
void printMESA (const bvec4 v) {
|
||||
printMESA (v.x);
|
||||
printMESA (v.y);
|
||||
printMESA (v.z);
|
||||
printMESA (v.w);
|
||||
}
|
||||
|
||||
void print (const mat2 m) {
|
||||
print (m[0]);
|
||||
print (m[1]);
|
||||
void printMESA (const mat2 m) {
|
||||
printMESA (m[0]);
|
||||
printMESA (m[1]);
|
||||
}
|
||||
|
||||
void print (const mat3 m) {
|
||||
print (m[0]);
|
||||
print (m[1]);
|
||||
print (m[2]);
|
||||
void printMESA (const mat3 m) {
|
||||
printMESA (m[0]);
|
||||
printMESA (m[1]);
|
||||
printMESA (m[2]);
|
||||
}
|
||||
|
||||
void print (const mat4 m) {
|
||||
print (m[0]);
|
||||
print (m[1]);
|
||||
print (m[2]);
|
||||
print (m[3]);
|
||||
void printMESA (const mat4 m) {
|
||||
printMESA (m[0]);
|
||||
printMESA (m[1]);
|
||||
printMESA (m[2]);
|
||||
printMESA (m[3]);
|
||||
}
|
||||
|
||||
void print (const sampler1D e) {
|
||||
void printMESA (const sampler1D e) {
|
||||
__asm int_print e;
|
||||
}
|
||||
|
||||
void print (const sampler2D e) {
|
||||
void printMESA (const sampler2D e) {
|
||||
__asm int_print e;
|
||||
}
|
||||
|
||||
void print (const sampler3D e) {
|
||||
void printMESA (const sampler3D e) {
|
||||
__asm int_print e;
|
||||
}
|
||||
|
||||
void print (const samplerCube e) {
|
||||
void printMESA (const samplerCube e) {
|
||||
__asm int_print e;
|
||||
}
|
||||
|
||||
void print (const sampler1DShadow e) {
|
||||
void printMESA (const sampler1DShadow e) {
|
||||
__asm int_print e;
|
||||
}
|
||||
|
||||
void print (const sampler2DShadow e) {
|
||||
void printMESA (const sampler2DShadow e) {
|
||||
__asm int_print e;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -500,39 +500,46 @@
|
|||
108,0,18,101,0,0,18,97,0,0,18,98,0,0,0,8,18,103,0,18,101,0,32,0,0,1,0,1,2,17,1,1,0,5,97,0,0,1,1,0,
|
||||
5,98,0,0,0,1,8,58,102,108,111,97,116,0,18,97,0,0,0,58,102,108,111,97,116,0,18,98,0,0,0,42,0,0,1,0,
|
||||
1,2,11,1,1,0,1,97,0,0,1,1,0,1,98,0,0,0,1,8,18,97,0,18,98,0,39,0,0,1,0,1,2,29,1,1,0,1,97,0,0,0,1,8,
|
||||
18,97,0,15,2,48,0,38,0,0,1,0,0,0,112,114,105,110,116,0,1,1,0,9,102,0,0,0,1,4,102,108,111,97,116,95,
|
||||
112,114,105,110,116,0,18,102,0,0,0,0,1,0,0,0,112,114,105,110,116,0,1,1,0,5,105,0,0,0,1,4,105,110,
|
||||
116,95,112,114,105,110,116,0,18,105,0,0,0,0,1,0,0,0,112,114,105,110,116,0,1,1,0,1,98,0,0,0,1,4,98,
|
||||
111,111,108,95,112,114,105,110,116,0,18,98,0,0,0,0,1,0,0,0,112,114,105,110,116,0,1,1,0,10,118,0,0,
|
||||
0,1,9,58,112,114,105,110,116,0,18,118,0,59,120,0,0,0,0,9,58,112,114,105,110,116,0,18,118,0,59,121,
|
||||
0,0,0,0,0,1,0,0,0,112,114,105,110,116,0,1,1,0,11,118,0,0,0,1,9,58,112,114,105,110,116,0,18,118,0,
|
||||
59,120,0,0,0,0,9,58,112,114,105,110,116,0,18,118,0,59,121,0,0,0,0,9,58,112,114,105,110,116,0,18,
|
||||
118,0,59,122,0,0,0,0,0,1,0,0,0,112,114,105,110,116,0,1,1,0,12,118,0,0,0,1,9,58,112,114,105,110,116,
|
||||
0,18,118,0,59,120,0,0,0,0,9,58,112,114,105,110,116,0,18,118,0,59,121,0,0,0,0,9,58,112,114,105,110,
|
||||
116,0,18,118,0,59,122,0,0,0,0,9,58,112,114,105,110,116,0,18,118,0,59,119,0,0,0,0,0,1,0,0,0,112,114,
|
||||
105,110,116,0,1,1,0,6,118,0,0,0,1,9,58,112,114,105,110,116,0,18,118,0,59,120,0,0,0,0,9,58,112,114,
|
||||
105,110,116,0,18,118,0,59,121,0,0,0,0,0,1,0,0,0,112,114,105,110,116,0,1,1,0,7,118,0,0,0,1,9,58,112,
|
||||
114,105,110,116,0,18,118,0,59,120,0,0,0,0,9,58,112,114,105,110,116,0,18,118,0,59,121,0,0,0,0,9,58,
|
||||
112,114,105,110,116,0,18,118,0,59,122,0,0,0,0,0,1,0,0,0,112,114,105,110,116,0,1,1,0,8,118,0,0,0,1,
|
||||
9,58,112,114,105,110,116,0,18,118,0,59,120,0,0,0,0,9,58,112,114,105,110,116,0,18,118,0,59,121,0,0,
|
||||
0,0,9,58,112,114,105,110,116,0,18,118,0,59,122,0,0,0,0,9,58,112,114,105,110,116,0,18,118,0,59,119,
|
||||
0,0,0,0,0,1,0,0,0,112,114,105,110,116,0,1,1,0,2,118,0,0,0,1,9,58,112,114,105,110,116,0,18,118,0,59,
|
||||
120,0,0,0,0,9,58,112,114,105,110,116,0,18,118,0,59,121,0,0,0,0,0,1,0,0,0,112,114,105,110,116,0,1,1,
|
||||
0,3,118,0,0,0,1,9,58,112,114,105,110,116,0,18,118,0,59,120,0,0,0,0,9,58,112,114,105,110,116,0,18,
|
||||
118,0,59,121,0,0,0,0,9,58,112,114,105,110,116,0,18,118,0,59,122,0,0,0,0,0,1,0,0,0,112,114,105,110,
|
||||
116,0,1,1,0,4,118,0,0,0,1,9,58,112,114,105,110,116,0,18,118,0,59,120,0,0,0,0,9,58,112,114,105,110,
|
||||
116,0,18,118,0,59,121,0,0,0,0,9,58,112,114,105,110,116,0,18,118,0,59,122,0,0,0,0,9,58,112,114,105,
|
||||
110,116,0,18,118,0,59,119,0,0,0,0,0,1,0,0,0,112,114,105,110,116,0,1,1,0,13,109,0,0,0,1,9,58,112,
|
||||
114,105,110,116,0,18,109,0,16,8,48,0,57,0,0,0,9,58,112,114,105,110,116,0,18,109,0,16,10,49,0,57,0,
|
||||
0,0,0,1,0,0,0,112,114,105,110,116,0,1,1,0,14,109,0,0,0,1,9,58,112,114,105,110,116,0,18,109,0,16,8,
|
||||
48,0,57,0,0,0,9,58,112,114,105,110,116,0,18,109,0,16,10,49,0,57,0,0,0,9,58,112,114,105,110,116,0,
|
||||
18,109,0,16,10,50,0,57,0,0,0,0,1,0,0,0,112,114,105,110,116,0,1,1,0,15,109,0,0,0,1,9,58,112,114,105,
|
||||
110,116,0,18,109,0,16,8,48,0,57,0,0,0,9,58,112,114,105,110,116,0,18,109,0,16,10,49,0,57,0,0,0,9,58,
|
||||
112,114,105,110,116,0,18,109,0,16,10,50,0,57,0,0,0,9,58,112,114,105,110,116,0,18,109,0,16,10,51,0,
|
||||
57,0,0,0,0,1,0,0,0,112,114,105,110,116,0,1,1,0,16,101,0,0,0,1,4,105,110,116,95,112,114,105,110,116,
|
||||
0,18,101,0,0,0,0,1,0,0,0,112,114,105,110,116,0,1,1,0,17,101,0,0,0,1,4,105,110,116,95,112,114,105,
|
||||
110,116,0,18,101,0,0,0,0,1,0,0,0,112,114,105,110,116,0,1,1,0,18,101,0,0,0,1,4,105,110,116,95,112,
|
||||
114,105,110,116,0,18,101,0,0,0,0,1,0,0,0,112,114,105,110,116,0,1,1,0,19,101,0,0,0,1,4,105,110,116,
|
||||
95,112,114,105,110,116,0,18,101,0,0,0,0,1,0,0,0,112,114,105,110,116,0,1,1,0,20,101,0,0,0,1,4,105,
|
||||
110,116,95,112,114,105,110,116,0,18,101,0,0,0,0,1,0,0,0,112,114,105,110,116,0,1,1,0,21,101,0,0,0,1,
|
||||
4,105,110,116,95,112,114,105,110,116,0,18,101,0,0,0,0,0
|
||||
18,97,0,15,2,48,0,38,0,0,1,0,0,0,112,114,105,110,116,77,69,83,65,0,1,1,0,9,102,0,0,0,1,4,102,108,
|
||||
111,97,116,95,112,114,105,110,116,0,18,102,0,0,0,0,1,0,0,0,112,114,105,110,116,77,69,83,65,0,1,1,0,
|
||||
5,105,0,0,0,1,4,105,110,116,95,112,114,105,110,116,0,18,105,0,0,0,0,1,0,0,0,112,114,105,110,116,77,
|
||||
69,83,65,0,1,1,0,1,98,0,0,0,1,4,98,111,111,108,95,112,114,105,110,116,0,18,98,0,0,0,0,1,0,0,0,112,
|
||||
114,105,110,116,77,69,83,65,0,1,1,0,10,118,0,0,0,1,9,58,112,114,105,110,116,77,69,83,65,0,18,118,0,
|
||||
59,120,0,0,0,0,9,58,112,114,105,110,116,77,69,83,65,0,18,118,0,59,121,0,0,0,0,0,1,0,0,0,112,114,
|
||||
105,110,116,77,69,83,65,0,1,1,0,11,118,0,0,0,1,9,58,112,114,105,110,116,77,69,83,65,0,18,118,0,59,
|
||||
120,0,0,0,0,9,58,112,114,105,110,116,77,69,83,65,0,18,118,0,59,121,0,0,0,0,9,58,112,114,105,110,
|
||||
116,77,69,83,65,0,18,118,0,59,122,0,0,0,0,0,1,0,0,0,112,114,105,110,116,77,69,83,65,0,1,1,0,12,118,
|
||||
0,0,0,1,9,58,112,114,105,110,116,77,69,83,65,0,18,118,0,59,120,0,0,0,0,9,58,112,114,105,110,116,77,
|
||||
69,83,65,0,18,118,0,59,121,0,0,0,0,9,58,112,114,105,110,116,77,69,83,65,0,18,118,0,59,122,0,0,0,0,
|
||||
9,58,112,114,105,110,116,77,69,83,65,0,18,118,0,59,119,0,0,0,0,0,1,0,0,0,112,114,105,110,116,77,69,
|
||||
83,65,0,1,1,0,6,118,0,0,0,1,9,58,112,114,105,110,116,77,69,83,65,0,18,118,0,59,120,0,0,0,0,9,58,
|
||||
112,114,105,110,116,77,69,83,65,0,18,118,0,59,121,0,0,0,0,0,1,0,0,0,112,114,105,110,116,77,69,83,
|
||||
65,0,1,1,0,7,118,0,0,0,1,9,58,112,114,105,110,116,77,69,83,65,0,18,118,0,59,120,0,0,0,0,9,58,112,
|
||||
114,105,110,116,77,69,83,65,0,18,118,0,59,121,0,0,0,0,9,58,112,114,105,110,116,77,69,83,65,0,18,
|
||||
118,0,59,122,0,0,0,0,0,1,0,0,0,112,114,105,110,116,77,69,83,65,0,1,1,0,8,118,0,0,0,1,9,58,112,114,
|
||||
105,110,116,77,69,83,65,0,18,118,0,59,120,0,0,0,0,9,58,112,114,105,110,116,77,69,83,65,0,18,118,0,
|
||||
59,121,0,0,0,0,9,58,112,114,105,110,116,77,69,83,65,0,18,118,0,59,122,0,0,0,0,9,58,112,114,105,110,
|
||||
116,77,69,83,65,0,18,118,0,59,119,0,0,0,0,0,1,0,0,0,112,114,105,110,116,77,69,83,65,0,1,1,0,2,118,
|
||||
0,0,0,1,9,58,112,114,105,110,116,77,69,83,65,0,18,118,0,59,120,0,0,0,0,9,58,112,114,105,110,116,77,
|
||||
69,83,65,0,18,118,0,59,121,0,0,0,0,0,1,0,0,0,112,114,105,110,116,77,69,83,65,0,1,1,0,3,118,0,0,0,1,
|
||||
9,58,112,114,105,110,116,77,69,83,65,0,18,118,0,59,120,0,0,0,0,9,58,112,114,105,110,116,77,69,83,
|
||||
65,0,18,118,0,59,121,0,0,0,0,9,58,112,114,105,110,116,77,69,83,65,0,18,118,0,59,122,0,0,0,0,0,1,0,
|
||||
0,0,112,114,105,110,116,77,69,83,65,0,1,1,0,4,118,0,0,0,1,9,58,112,114,105,110,116,77,69,83,65,0,
|
||||
18,118,0,59,120,0,0,0,0,9,58,112,114,105,110,116,77,69,83,65,0,18,118,0,59,121,0,0,0,0,9,58,112,
|
||||
114,105,110,116,77,69,83,65,0,18,118,0,59,122,0,0,0,0,9,58,112,114,105,110,116,77,69,83,65,0,18,
|
||||
118,0,59,119,0,0,0,0,0,1,0,0,0,112,114,105,110,116,77,69,83,65,0,1,1,0,13,109,0,0,0,1,9,58,112,114,
|
||||
105,110,116,77,69,83,65,0,18,109,0,16,8,48,0,57,0,0,0,9,58,112,114,105,110,116,77,69,83,65,0,18,
|
||||
109,0,16,10,49,0,57,0,0,0,0,1,0,0,0,112,114,105,110,116,77,69,83,65,0,1,1,0,14,109,0,0,0,1,9,58,
|
||||
112,114,105,110,116,77,69,83,65,0,18,109,0,16,8,48,0,57,0,0,0,9,58,112,114,105,110,116,77,69,83,65,
|
||||
0,18,109,0,16,10,49,0,57,0,0,0,9,58,112,114,105,110,116,77,69,83,65,0,18,109,0,16,10,50,0,57,0,0,0,
|
||||
0,1,0,0,0,112,114,105,110,116,77,69,83,65,0,1,1,0,15,109,0,0,0,1,9,58,112,114,105,110,116,77,69,83,
|
||||
65,0,18,109,0,16,8,48,0,57,0,0,0,9,58,112,114,105,110,116,77,69,83,65,0,18,109,0,16,10,49,0,57,0,0,
|
||||
0,9,58,112,114,105,110,116,77,69,83,65,0,18,109,0,16,10,50,0,57,0,0,0,9,58,112,114,105,110,116,77,
|
||||
69,83,65,0,18,109,0,16,10,51,0,57,0,0,0,0,1,0,0,0,112,114,105,110,116,77,69,83,65,0,1,1,0,16,101,0,
|
||||
0,0,1,4,105,110,116,95,112,114,105,110,116,0,18,101,0,0,0,0,1,0,0,0,112,114,105,110,116,77,69,83,
|
||||
65,0,1,1,0,17,101,0,0,0,1,4,105,110,116,95,112,114,105,110,116,0,18,101,0,0,0,0,1,0,0,0,112,114,
|
||||
105,110,116,77,69,83,65,0,1,1,0,18,101,0,0,0,1,4,105,110,116,95,112,114,105,110,116,0,18,101,0,0,0,
|
||||
0,1,0,0,0,112,114,105,110,116,77,69,83,65,0,1,1,0,19,101,0,0,0,1,4,105,110,116,95,112,114,105,110,
|
||||
116,0,18,101,0,0,0,0,1,0,0,0,112,114,105,110,116,77,69,83,65,0,1,1,0,20,101,0,0,0,1,4,105,110,116,
|
||||
95,112,114,105,110,116,0,18,101,0,0,0,0,1,0,0,0,112,114,105,110,116,77,69,83,65,0,1,1,0,21,101,0,0,
|
||||
0,1,4,105,110,116,95,112,114,105,110,116,0,18,101,0,0,0,0,0
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue