| /xsrc/external/mit/MesaLib/dist/src/mesa/vbo/ |
| H A D | vbo_noop.c | 110 #define ATTR_UNION(A, N, T, C, V0, V1, V2, V3) do { (void)ctx; (void)(A); } while(0)
|
| H A D | vbo_exec_api.c | 490 * \param V0, V1, v2, V3 attribute value 492 #define ATTR_UNION(A, N, T, C, V0, V1, V2, V3) \ 507 if (N>0) dest[0] = V0; \ 536 if (N > 0) *dst++ = V0; \ 549 if (N > 0) SET_64BIT(dst, V0); \
|
| H A D | vbo_attrib_tmp.h | 35 #define ATTRI( A, N, V0, V1, V2, V3 ) \ 36 ATTR_UNION(A, N, GL_INT, uint32_t, INT_AS_UINT(V0), INT_AS_UINT(V1), \ 38 #define ATTRUI( A, N, V0, V1, V2, V3 ) \ 39 ATTR_UNION(A, N, GL_UNSIGNED_INT, uint32_t, (uint32_t)(V0), (uint32_t)(V1), \ 41 #define ATTRF( A, N, V0, V1, V2, V3 ) \ 42 ATTR_UNION(A, N, GL_FLOAT, uint32_t, FLOAT_AS_UINT(V0), FLOAT_AS_UINT(V1),\ 44 #define ATTRD( A, N, V0, V1, V2, V3 ) \ 45 ATTR_UNION(A, N, GL_DOUBLE, uint64_t, DOUBLE_AS_UINT64(V0), \ 47 #define ATTRUI64( A, N, V0, V1, V2, V3 ) \ 48 ATTR_UNION(A, N, GL_UNSIGNED_INT64_ARB, uint64_t, V0, V [all...] |
| H A D | vbo_save_api.c | 1289 #define ATTR_UNION(A, N, T, C, V0, V1, V2, V3) \ 1299 if (N>0) dest[0] = V0; \
|
| /xsrc/external/mit/mesa-demos/dist/src/gs/ |
| H A D | gs-tri.c | 218 #define ASSIGN_3V( V, V0, V1, V2 ) \ 220 V[0] = V0; \
|
| /xsrc/external/mit/mesa-demos/dist/src/vp/ |
| H A D | vp-tris.c | 212 #define ASSIGN_3V( V, V0, V1, V2 ) \ 214 V[0] = V0; \
|
| /xsrc/external/mit/mesa-demos/dist/src/vpglsl/ |
| H A D | vp-tris.c | 245 #define ASSIGN_3V( V, V0, V1, V2 ) \ 247 V[0] = V0; \
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| H A D | macros.h | 493 #define ASSIGN_3V( V, V0, V1, V2 ) \ 495 V[0] = V0; \ 596 #define ASSIGN_2V( V, V0, V1 ) \ 598 V[0] = V0; \
|
| H A D | texcompress_fxt1.c | 226 #define MAKEIVEC(NV, NC, IV, B, V0, V1) \ 233 IV[i] = (V1[i] - V0[i]) * F(i); \ 240 B -= IV[i] * V0[i]; \
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| H A D | macros.h | 522 #define ASSIGN_3V( V, V0, V1, V2 ) \ 524 V[0] = V0; \ 625 #define ASSIGN_2V( V, V0, V1 ) \ 627 V[0] = V0; \
|
| H A D | dlist.c | 6333 * \param V0, V1, v2, V3 attribute value 6335 #define ATTR_UNION(A, N, T, C, V0, V1, V2, V3) \ 6338 save_Attr32bit(ctx, A, N, T, V0, V1, V2, V3); \ 6340 save_Attr64bit(ctx, A, N, T, V0, V1, V2, V3); \
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/vbo/ |
| H A D | vbo_attrib_tmp.h | 33 #define ATTRI( A, N, V0, V1, V2, V3 ) \ 34 ATTR_UNION(A, N, GL_INT, fi_type, INT_AS_UNION(V0), INT_AS_UNION(V1), \ 36 #define ATTRUI( A, N, V0, V1, V2, V3 ) \ 37 ATTR_UNION(A, N, GL_UNSIGNED_INT, fi_type, UINT_AS_UNION(V0), UINT_AS_UNION(V1), \ 39 #define ATTRF( A, N, V0, V1, V2, V3 ) \ 40 ATTR_UNION(A, N, GL_FLOAT, fi_type, FLOAT_AS_UNION(V0), FLOAT_AS_UNION(V1),\ 42 #define ATTRD( A, N, V0, V1, V2, V3 ) \ 43 ATTR_UNION(A, N, GL_DOUBLE, double, V0, V1, V2, V3) 44 #define ATTRUI64( A, N, V0, V1, V2, V3 ) \ 45 ATTR_UNION(A, N, GL_UNSIGNED_INT64_ARB, uint64_t, V0, V [all...] |
| H A D | vbo_exec_api.c | 481 * \param V0, V1, v2, V3 attribute value 483 #define ATTR_UNION(A, N, T, C, V0, V1, V2, V3) \ 499 if (N>0) dest[0] = V0; \
|
| H A D | vbo_save_api.c | 1006 #define ATTR_UNION(A, N, T, C, V0, V1, V2, V3) \ 1016 if (N>0) dest[0] = V0; \
|
| /xsrc/external/mit/MesaLib.old/dist/src/util/ |
| H A D | u_math.h | 748 #define ASSIGN_4V( DST, V0, V1, V2, V3 ) \ 750 (DST)[0] = (V0); \
|
| /xsrc/external/mit/MesaLib/dist/src/util/ |
| H A D | u_math.h | 732 #define ASSIGN_4V( DST, V0, V1, V2, V3 ) \ 734 (DST)[0] = (V0); \
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i915/ |
| H A D | i830_vtbl.c | 51 #define EMIT_ATTR( ATTR, STYLE, V0 ) \ 56 v0 |= V0; \
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i915/ |
| H A D | i830_vtbl.c | 51 #define EMIT_ATTR( ATTR, STYLE, V0 ) \ 56 v0 |= V0; \
|
| /xsrc/external/mit/MesaLib/dist/src/util/format/ |
| H A D | u_format_fxt1.c | 110 #define MAKEIVEC(NV, NC, IV, B, V0, V1) \ 117 IV[i] = (V1[i] - V0[i]) * F(i); \ 124 B -= IV[i] * V0[i]; \
|
| /xsrc/external/mit/MesaLib.old/dist/src/imgui/ |
| H A D | imgui_draw.cpp | 2494 glyph.V0 = v0; 2504 MetricsTotalSurface += (int)((glyph.U1 - glyph.U0) * ContainerAtlas->TexWidth + 1.99f) * (int)((glyph.V1 - glyph.V0) * ContainerAtlas->TexHeight + 1.99f); 2745 draw_list->PrimRectUV(ImVec2(pos.x + glyph->X0 * scale, pos.y + glyph->Y0 * scale), ImVec2(pos.x + glyph->X1 * scale, pos.y + glyph->Y1 * scale), ImVec2(glyph->U0, glyph->V0), ImVec2(glyph->U1, glyph->V1), col); 2876 float v1 = glyph->V0;
|
| H A D | imgui.h | 1943 float U0, V0, U1, V1; // Texture coordinates member in struct:ImFontGlyph
|
| H A D | imgui_demo.cpp | 2969 ImGui::Text("UV: (%.3f,%.3f)->(%.3f,%.3f)", glyph->U0, glyph->V0, glyph->U1, glyph->V1);
|
| /xsrc/external/mit/MesaLib/dist/src/imgui/ |
| H A D | imgui_draw.cpp | 2494 glyph.V0 = v0; 2504 MetricsTotalSurface += (int)((glyph.U1 - glyph.U0) * ContainerAtlas->TexWidth + 1.99f) * (int)((glyph.V1 - glyph.V0) * ContainerAtlas->TexHeight + 1.99f); 2745 draw_list->PrimRectUV(ImVec2(pos.x + glyph->X0 * scale, pos.y + glyph->Y0 * scale), ImVec2(pos.x + glyph->X1 * scale, pos.y + glyph->Y1 * scale), ImVec2(glyph->U0, glyph->V0), ImVec2(glyph->U1, glyph->V1), col); 2876 float v1 = glyph->V0;
|
| H A D | imgui.h | 1943 float U0, V0, U1, V1; // Texture coordinates member in struct:ImFontGlyph
|