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

  /frameworks/native/services/sensorservice/
SensorEventConnection.h 144 struct FlushInfo {
153 FlushInfo() : mPendingFlushEventsToSend(0), mFirstFlushPending(false) {}
156 KeyedVector<int, FlushInfo> mSensorInfo;
SensorEventConnection.cpp 72 const FlushInfo& flushInfo = mSensorInfo.valueAt(i);
76 flushInfo.mFirstFlushPending ? "First flush pending" :
78 flushInfo.mPendingFlushEventsToSend);
100 mSensorInfo.add(handle, FlushInfo());
143 FlushInfo& flushInfo = mSensorInfo.editValueAt(index);
144 flushInfo.mFirstFlushPending = value;
203 FlushInfo& flushInfo = mSensorInfo.editValueAt(index)
    [all...]
  /external/skia/src/gpu/ops/
GrAtlasTextOp.h 106 struct FlushInfo {
141 inline void flush(GrMeshDrawOp::Target* target, FlushInfo* flushInfo) const;
193 GrAtlasTextOp::FlushInfo* flushInfo)
194 : fOp(op), fTarget(target), fFlushInfo(flushInfo) {}
203 GrAtlasTextOp::FlushInfo* fFlushInfo;
GrAtlasTextOp.cpp 95 FlushInfo flushInfo;
97 flushInfo.fGeometryProcessor =
103 flushInfo.fGeometryProcessor = GrBitmapTextGeoProc::Make(
109 flushInfo.fGlyphsToFlush = 0;
110 size_t vertexStride = flushInfo.fGeometryProcessor->getVertexStride();
117 vertexStride, glyphCount * kVerticesPerGlyph, &vertexBuffer, &flushInfo.fVertexOffset);
118 flushInfo.fVertexBuffer.reset(SkRef(vertexBuffer));
119 flushInfo.fIndexBuffer.reset(target->resourceProvider()->refQuadIndexBuffer());
120 if (!vertices || !flushInfo.fVertexBuffer)
    [all...]
GrSmallPathRenderer.cpp 213 struct FlushInfo {
226 FlushInfo flushInfo;
238 flushInfo.fGeometryProcessor = GrDistanceFieldPathGeoProc::Make(
256 flushInfo.fGeometryProcessor = GrBitmapTextGeoProc::Make(
263 size_t vertexStride = flushInfo.fGeometryProcessor->getVertexStride();
270 &flushInfo.fVertexOffset);
271 flushInfo.fVertexBuffer.reset(SkRef(vertexBuffer));
272 flushInfo.fIndexBuffer.reset(target->resourceProvider()->refQuadIndexBuffer());
273 if (!vertices || !flushInfo.fIndexBuffer)
    [all...]

Completed in 245 milliseconds