HomeSort by relevance Sort by last modified time
    Searched refs:quad (Results 201 - 225 of 428) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11tex/
d3d11tex.cpp 38 mesh* quad; member in struct:d3d11tex
47 quad = create_tex_quad(dev, g_vs, sizeof(g_vs));
109 quad->bind_and_draw(ctx);
  /external/deqp/framework/randomshaders/
rsgProgramExecutor.cpp 110 inline float interpolateVertexQuad (const tcu::Vec4& quad, float x, float y)
116 return quad.x()*w00 + quad.y()*w10 + quad.z()*w01 + quad.w()*w11;
129 inline float interpolateFragment (const tcu::Vec4& quad, float x, float y)
132 return interpolateTri(quad.x(), quad.y(), quad.z(), x, y);
134 return interpolateTri(quad.w(), quad.z(), quad.y(), 1.0f-x, 1.0f-y)
    [all...]
  /external/deqp/modules/gles2/functional/
es2fDitheringTests.cpp 53 using gls::FragmentOpUtil::Quad;
251 Quad quad; local
265 quad.color[0] = quadClr0;
266 quad.color[1] = isVerticallyIncreasing ? quadClr1 : quadClr0;
267 quad.color[2] = isVerticallyIncreasing ? quadClr0 : quadClr1;
268 quad.color[3] = quadClr1;
270 m_renderer->render(quad);
359 Quad quad; local
    [all...]
  /external/deqp/modules/gles3/functional/
es3fDitheringTests.cpp 53 using gls::FragmentOpUtil::Quad;
251 Quad quad; local
265 quad.color[0] = quadClr0;
266 quad.color[1] = isVerticallyIncreasing ? quadClr1 : quadClr0;
267 quad.color[2] = isVerticallyIncreasing ? quadClr0 : quadClr1;
268 quad.color[3] = quadClr1;
270 m_renderer->render(quad);
359 Quad quad; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11tex/
d3d11tex.cpp 38 mesh* quad; member in struct:d3d11tex
47 quad = create_tex_quad(dev, g_vs, sizeof(g_vs));
109 quad->bind_and_draw(ctx);
  /external/valgrind/main/coregrind/m_dispatch/
dispatch-ppc64-linux.S 80 .quad .VG_(disp_run_translations),.TOC.@tocbase,0
400 .quad .VG_(disp_cp_chain_me_to_slowEP),.TOC.@tocbase,0
425 .quad .VG_(disp_cp_chain_me_to_fastEP),.TOC.@tocbase,0
450 .quad .VG_(disp_cp_xindir),.TOC.@tocbase,0
501 .quad .VG_(disp_cp_xassisted),.TOC.@tocbase,0
518 .quad .VG_(disp_cp_evcheck_fail),.TOC.@tocbase,0
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorTraceEvents.cpp 77 static void createQuad(TracedValue* value, const char* name, const FloatQuad& quad)
80 value->pushDouble(quad.p1().x());
81 value->pushDouble(quad.p1().y());
82 value->pushDouble(quad.p2().x());
83 value->pushDouble(quad.p2().y());
84 value->pushDouble(quad.p3().x());
85 value->pushDouble(quad.p3().y());
86 value->pushDouble(quad.p4().x());
87 value->pushDouble(quad.p4().y());
275 static void localToPageQuad(const RenderObject& renderer, const LayoutRect& rect, FloatQuad* quad)
308 FloatQuad quad; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
Layers3DView.js 405 rect.setVertices(layer.quad(), this._depthForLayer(layer));
439 rect.setVertices(layer.quad(), this._depthForLayer(layer));
893 * @param {!Array.<number>} quad
    [all...]
  /external/chromium_org/cc/layers/
painted_scrollbar_layer_impl.cc 103 TextureDrawQuad* quad = local
105 quad->SetNew(shared_quad_state,
124 TextureDrawQuad* quad = local
126 quad->SetNew(shared_quad_state,
io_surface_layer_impl.cc 87 IOSurfaceDrawQuad* quad =
89 quad->SetNew(shared_quad_state,
solid_color_layer_impl.cc 56 SolidColorDrawQuad* quad = local
58 quad->SetNew(
solid_color_scrollbar_layer_impl.cc 116 SolidColorDrawQuad* quad =
118 quad->SetNew(
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
HitTestLocation.cpp 53 HitTestLocation::HitTestLocation(const FloatPoint& point, const FloatQuad& quad)
55 , m_transformedRect(quad)
59 m_boundingBox = enclosingIntRect(quad.boundingBox());
60 m_isRectilinear = quad.isRectilinear();
136 // Otherwise we need to do a slower quad based intersection test.
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_quad_pipe.h 41 * Quad processing is performed with a pipeline of stages represented by
52 void (*run)(struct quad_stage *qs, struct quad_header *quad[], unsigned nr);
  /external/compiler-rt/lib/builtins/
fp_trunc.h 32 #error Source should be double precision or quad precision!
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_quad_pipe.h 41 * Quad processing is performed with a pipeline of stages represented by
52 void (*run)(struct quad_stage *qs, struct quad_header *quad[], unsigned nr);
  /external/deqp/modules/glshared/
glsFragmentOpUtil.hpp 45 struct Quad
56 Quad (void)
71 void render (const Quad& quad) const;
121 const IntegerQuad& quad,
glsInteractionTestUtil.cpp 220 void computeRandomQuad (de::Random& rnd, gls::FragmentOpUtil::IntegerQuad& quad, int targetWidth, int targetHeight)
245 quad.posA = IVec2(flipX ? (x+width-1) : x, flipY ? (y+height-1) : y);
246 quad.posB = IVec2(flipX ? x : (x+width-1), flipY ? y : (y+height-1));
248 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(quad.color); ndx++)
249 quad.color[ndx] = getRandomColor(rnd);
251 std::fill(DE_ARRAY_BEGIN(quad.depth), DE_ARRAY_END(quad.depth), depth);
262 computeRandomQuad(rnd, cmd->quad, targetW, targetH);
  /external/chromium_org/third_party/WebKit/Source/core/paint/
BoxPainter.cpp 1971 FloatPoint quad[4]; local
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
CubicToQuadratics.cpp 26 mid-point approx of cubic: a quad that shares the same anchors with the cubic and has the
80 void demote_cubic_to_quad(const Cubic& cubic, Quadratic& quad) {
81 quad[0] = cubic[0];
85 quad[1].x = (fromC1.x + fromC2.x) / 2;
86 quad[1].y = (fromC1.y + fromC2.y) / 2;
88 lineIntersect((const _Line&) cubic[0], (const _Line&) cubic[2], quad[1]);
90 quad[2] = cubic[3];
  /external/chromium_org/third_party/skia/src/core/
SkRect.cpp 49 void SkRect::toQuad(SkPoint quad[4]) const {
50 SkASSERT(quad);
52 quad[0].set(fLeft, fTop);
53 quad[1].set(fRight, fTop);
54 quad[2].set(fRight, fBottom);
55 quad[3].set(fLeft, fBottom);
  /external/chromium_org/third_party/skia/src/pathops/
SkIntersections.cpp 153 SkDQuad quad; local
154 quad.set(pts);
156 return intersectRay(quad, line);
197 SkDQuad quad; local
198 quad.set(a);
199 return vertical(quad, top, bottom, x, flipped);
  /external/chromium_org/third_party/skia/src/utils/
SkCullPoints.cpp 47 static void toQuad(const SkIRect& r, SkIPoint quad[4]) {
48 SkASSERT(quad);
50 quad[0].set(r.fLeft, r.fTop);
51 quad[1].set(r.fRight, r.fTop);
52 quad[2].set(r.fRight, r.fBottom);
53 quad[3].set(r.fLeft, r.fBottom);
  /external/chromium_org/third_party/skia/tests/
PathOpsTestCommon.cpp 18 SkDQuad quad = cubic.toQuad(); local
19 quads.push_back(quad);
26 SkDQuad quad = part.toQuad();
27 quads.push_back(quad);
174 bool ValidQuad(const SkDQuad& quad) {
176 if (!ValidPoint(quad[index])) {
  /external/skia/experimental/Intersection/
CubicToQuadratics.cpp 26 mid-point approx of cubic: a quad that shares the same anchors with the cubic and has the
80 void demote_cubic_to_quad(const Cubic& cubic, Quadratic& quad) {
81 quad[0] = cubic[0];
85 quad[1].x = (fromC1.x + fromC2.x) / 2;
86 quad[1].y = (fromC1.y + fromC2.y) / 2;
88 lineIntersect((const _Line&) cubic[0], (const _Line&) cubic[2], quad[1]);
90 quad[2] = cubic[3];

Completed in 479 milliseconds

1 2 3 4 5 6 7 891011>>