Home
last modified time | relevance | path

Searched refs:setupPrimitives (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/src/Device/
DRenderer.cpp224 DrawCall::SetupFunction setupPrimitives = nullptr; in draw() local
233 setupPrimitives = &DrawCall::setupSolidTriangles; in draw()
236 setupPrimitives = &DrawCall::setupWireframeTriangles; in draw()
240 setupPrimitives = &DrawCall::setupPointTriangles; in draw()
250 setupPrimitives = &DrawCall::setupLines; in draw()
254 setupPrimitives = &DrawCall::setupPoints; in draw()
274 draw->setupPrimitives = setupPrimitives; in draw()
565 batch->numVisible = draw->setupPrimitives(triangles, primitives, draw, batch->numPrimitives); in processPrimitives()
DRenderer.hpp166 SetupFunction setupPrimitives; member
/external/swiftshader/src/Renderer/
DRenderer.cpp291 int (Renderer::*setupPrimitives)(int batch, int count); in draw() local
298 setupPrimitives = &Renderer::setupSolidTriangles; in draw()
301 setupPrimitives = &Renderer::setupWireframeTriangle; in draw()
305 setupPrimitives = &Renderer::setupVertexTriangle; in draw()
315 setupPrimitives = &Renderer::setupLines; in draw()
319 setupPrimitives = &Renderer::setupPoints; in draw()
369 draw->setupPrimitives = setupPrimitives; in draw()
919 int (Renderer::*setupPrimitives)(int batch, int count) = draw->setupPrimitives; in executeTask() local
933 visible = (this->*setupPrimitives)(unit, count); in executeTask()
DRenderer.hpp483 int (Renderer::*setupPrimitives)(int batch, int count); member