HomeSort by relevance Sort by last modified time
    Searched refs:Glop (Results 1 - 14 of 14) sorted by null

  /frameworks/base/libs/hwui/tests/unit/
GlopBuilderTests.cpp 19 #include "Glop.h"
29 static void expectFillEq(Glop::Fill& expectedFill, Glop::Fill& builtFill) {
38 Glop::Fill::Filter::Matrix& expectedMatrix = expectedFill.filter.matrix;
39 Glop::Fill::Filter::Matrix& builtMatrix = expectedFill.filter.matrix;
41 sizeof(Glop::Fill::Filter::Matrix::matrix)));
43 sizeof(Glop::Fill::Filter::Matrix::vector)));
52 static void expectBlendEq(Glop::Blend& expectedBlend, Glop::Blend& builtBlend) {
57 static void expectMeshEq(Glop::Mesh& expectedMesh, Glop::Mesh& builtMesh)
125 Glop glop; local
    [all...]
BakedOpDispatcherTests.cpp 38 ValidatingBakedOpRenderer(RenderState& renderState, std::function<void(const Glop& glop)> validator)
45 const ClipBase* clip, const Glop& glop) {
48 vbor->mValidator(glop);
50 std::function<void(const Glop& glop)> mValidator;
56 std::function<void(const Glop& glop)> glopVerifier, int expectedGlopCount = 1) {
64 auto glopReceiver = [&glopVerifier, &glopCount, &expectedGlopCount] (const Glop& glop)
    [all...]
  /frameworks/base/libs/hwui/
Glop.h 84 * Eventually, a Glop should be able to be drawn multiple times from
89 struct Glop {
90 PREVENT_COPY_AND_ASSIGN(Glop);
92 Glop() { }
149 // Canvas transform of Glop - not necessarily applied to geometry (see flags)
BakedOpRenderer.h 27 struct Glop;
43 typedef void (*GlopReceiver)(BakedOpRenderer&, const Rect*, const ClipBase*, const Glop&);
80 void renderGlop(const BakedOpState& state, const Glop& glop) {
83 glop);
87 void renderGlop(const Rect* dirtyBounds, const ClipBase* clip, const Glop& glop) {
88 mGlopReceiver(*this, dirtyBounds, clip, glop);
107 const ClipBase* clip, const Glop& glop) {
    [all...]
GlopBuilder.h 19 #include "Glop.h"
48 GlopBuilder(RenderState& renderState, Caches& caches, Glop* outGlop);
111 static void dump(const Glop& glop);
131 Glop* mOutGlop;
BakedOpRenderer.cpp 20 #include "Glop.h"
145 Glop glop; local
146 GlopBuilder(mRenderState, mCaches, &glop)
153 renderGlop(nullptr, &overdrawClip, glop);
214 Glop glop; local
215 GlopBuilder(mRenderState, mCaches, &glop)
222 mRenderState.render(glop, mRenderTarget.orthoMatrix);
231 Glop glop local
    [all...]
BakedOpDispatcher.cpp 21 #include "Glop.h"
78 Glop glop; local
79 GlopBuilder(renderer.renderState(), renderer.caches(), &glop)
88 renderer.renderGlop(nullptr, clip, glop);
184 Glop glop; local
185 GlopBuilder(renderer.renderState(), renderer.caches(), &glop)
194 renderer.renderGlop(nullptr, clip, glop);
221 Glop glop local
354 Glop glop; local
379 Glop glop; local
433 Glop glop; local
507 Glop glop; local
532 Glop glop; local
548 Glop glop; local
610 Glop glop; local
670 Glop glop; local
735 Glop glop; local
783 Glop glop; local
811 Glop glop; local
856 Glop glop; local
    [all...]
OpenGLRenderer.cpp 22 #include "Glop.h"
788 Glop glop; local
789 GlopBuilder(mRenderState, mCaches, &glop)
796 renderGlop(glop);
800 Glop glop; local
801 GlopBuilder(mRenderState, mCaches, &glop)
809 renderGlop(glop);
821 Glop glop local
962 Glop glop; local
1082 Glop glop; local
1268 Glop glop; local
1477 Glop glop; local
1500 Glop glop; local
1590 Glop glop; local
1619 Glop glop; local
1646 Glop glop; local
1676 Glop glop; local
1697 Glop glop; local
1983 Glop glop; local
2274 Glop glop; local
2332 Glop glop; local
2420 Glop glop; local
2435 Glop glop; local
    [all...]
Readback.cpp 167 Glop glop; local
168 GlopBuilder(renderState, caches, &glop)
177 renderState.render(glop, ortho);
GlopBuilder.cpp 19 #include "Glop.h"
61 GlopBuilder::GlopBuilder(RenderState& renderState, Caches& caches, Glop* outGlop)
599 void verify(const ProgramDescription& description, const Glop& glop) {
600 if (glop.fill.texture.texture != nullptr) {
605 || ((glop.mesh.vertices.attribFlags & VertexAttribFlags::TextureCoord) == 0
608 glop.fill.texture.texture,
610 glop.mesh.vertices.attribFlags);
614 || ((glop.mesh.vertices.attribFlags & VertexAttribFlags::TextureCoord) != 0)),
617 glop.mesh.vertices.attribFlags)
    [all...]
OpenGLRenderer.h 67 struct Glop;
467 void renderGlop(const Glop& glop, GlopRenderType type = GlopRenderType::Standard);
FontRenderer.cpp 22 #include "Glop.h"
69 Glop glop; local
71 GlopBuilder(renderer->renderState(), renderer->caches(), &glop)
79 renderer->renderGlop(nullptr, clip, glop);
81 GlopBuilder(renderer->mRenderState, renderer->mCaches, &glop)
88 renderer->renderGlop(glop);
  /frameworks/base/libs/hwui/renderstate/
RenderState.cpp 238 void RenderState::render(const Glop& glop, const Matrix4& orthoMatrix) {
239 const Glop::Mesh& mesh = glop.mesh;
240 const Glop::Mesh::Vertices& vertices = mesh.vertices;
241 const Glop::Mesh::Indices& indices = mesh.indices;
242 const Glop::Fill& fill = glop.fill;
256 glop.transform.modelView,
257 glop.transform.meshTransform()
    [all...]
RenderState.h 21 #include "Glop.h"
93 void render(const Glop& glop, const Matrix4& orthoMatrix);

Completed in 151 milliseconds