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

  /hardware/qcom/display/msm8974/libhwcomposer/
hwc_mdpcomp.cpp 56 if(mCurrentFrame.layerCount > MAX_NUM_APP_LAYERS)
63 "fbCount:%2d \n", mCurrentFrame.layerCount,
64 mCurrentFrame.mdpCount, mCurrentFrame.fbCount);
66 (mCurrentFrame.needsRedraw? "YES" : "NO"),
67 mCurrentFrame.mdpCount, sMaxPipesPerMixer);
71 for(int index = 0; index < mCurrentFrame.layerCount; index++ )
74 (mCurrentFrame.isFBComposed[index] ? "YES" : "NO"),
75 mCurrentFrame.layerToMDP[index],
76 (mCurrentFrame.isFBComposed[index]
    [all...]
hwc_mdpcomp.h 48 void reset() { mCurrentFrame.reset(0); }
49 int getMDPCompCount() { return mCurrentFrame.mdpCount; }
181 struct FrameInfo mCurrentFrame;
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_mdpcomp.cpp 59 fbCount:%2d \n", mCurrentFrame.layerCount,
60 mCurrentFrame.mdpCount, mCurrentFrame.fbCount);
62 (mCurrentFrame.needsRedraw? "YES" : "NO"),
63 mCurrentFrame.mdpCount, sMaxPipesPerMixer);
67 for(int index = 0; index < mCurrentFrame.layerCount; index++ )
70 (mCurrentFrame.isFBComposed[index] ? "YES" : "NO"),
71 mCurrentFrame.layerToMDP[index],
72 (mCurrentFrame.isFBComposed[index] ?
73 (mCurrentFrame.needsRedraw ? "GLES" : "CACHE") : "MDP")
    [all...]
hwc_mdpcomp.h 173 struct FrameInfo mCurrentFrame;
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_mdpcomp.cpp 63 if(mCurrentFrame.layerCount > MAX_NUM_APP_LAYERS)
70 "fbCount:%2d \n", mCurrentFrame.layerCount,
71 mCurrentFrame.mdpCount, mCurrentFrame.fbCount);
73 (mCurrentFrame.needsRedraw? "YES" : "NO"),
74 mCurrentFrame.mdpCount, sMaxPipesPerMixer);
93 for(int index = 0; index < mCurrentFrame.layerCount; index++ )
96 (mCurrentFrame.isFBComposed[index] ? "YES" : "NO"),
97 mCurrentFrame.layerToMDP[index],
98 (mCurrentFrame.isFBComposed[index]
    [all...]
hwc_mdpcomp.h 48 bool isGLESOnlyComp() { return (mCurrentFrame.mdpCount == 0); }
243 struct FrameInfo mCurrentFrame;
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_mdpcomp.cpp 65 if(mCurrentFrame.layerCount > MAX_NUM_APP_LAYERS)
72 "fbCount:%2d \n", mCurrentFrame.layerCount,
73 mCurrentFrame.mdpCount, mCurrentFrame.fbCount);
75 (mCurrentFrame.needsRedraw? "YES" : "NO"),
76 mCurrentFrame.mdpCount, sMaxPipesPerMixer);
80 for(int index = 0; index < mCurrentFrame.layerCount; index++ )
83 (mCurrentFrame.isFBComposed[index] ? "YES" : "NO"),
84 mCurrentFrame.layerToMDP[index],
85 (mCurrentFrame.isFBComposed[index]
    [all...]
hwc_mdpcomp.h 48 bool isGLESOnlyComp() { return (mCurrentFrame.mdpCount == 0); }
232 struct FrameInfo mCurrentFrame;
  /device/generic/goldfish/camera/
EmulatedCameraDevice.cpp 40 mCurrentFrame(NULL),
51 if (mCurrentFrame != NULL) {
52 delete[] mCurrentFrame;
164 if (mCurrentFrame == NULL || buffer == NULL) {
172 YV12ToRGB32(mCurrentFrame, buffer, mFrameWidth, mFrameHeight);
175 YU12ToRGB32(mCurrentFrame, buffer, mFrameWidth, mFrameHeight);
178 NV21ToRGB32(mCurrentFrame, buffer, mFrameWidth, mFrameHeight);
181 NV12ToRGB32(mCurrentFrame, buffer, mFrameWidth, mFrameHeight);
221 mCurrentFrame = new uint8_t[mFrameBufferSize];
222 if (mCurrentFrame == NULL)
    [all...]
EmulatedFakeCameraDevice.cpp 127 mFrameV = mCurrentFrame + mTotalPixels;
134 mFrameU = mCurrentFrame + mTotalPixels;
142 mFrameV = mCurrentFrame + mTotalPixels;
150 mFrameU = mCurrentFrame + mTotalPixels;
232 mCameraHAL->onNextFrameAvailable(mCurrentFrame, mCurFrameTimestamp, this);
260 uint8_t* Y = mCurrentFrame;
320 uint8_t* Y_pos = mCurrentFrame + y * mFrameWidth + x;
349 memset(mCurrentFrame, changeExposure(adjustedColor.Y), mTotalPixels);
365 uint8_t* pY = mCurrentFrame;
EmulatedQemuCameraDevice.cpp 245 status_t query_res = mQemuClient.queryFrame(mCurrentFrame, mPreviewFrame,
255 mCameraHAL->onNextFrameAvailable(mCurrentFrame, mCurFrameTimestamp, this);
EmulatedCameraDevice.h 496 uint8_t* mCurrentFrame;
  /frameworks/base/libs/hwui/
DrawProfiler.cpp 63 , mCurrentFrame(-1)
86 mData[mCurrentFrame].record = NANOS_TO_MILLIS_FLOAT(recordDurationNanos);
93 mData[mCurrentFrame].prepare = NANOS_TO_MILLIS_FLOAT(now - mPreviousTime);
100 mData[mCurrentFrame].playback = NANOS_TO_MILLIS_FLOAT(now - mPreviousTime);
107 mData[mCurrentFrame].swapBuffers = NANOS_TO_MILLIS_FLOAT(now - mPreviousTime);
109 mCurrentFrame = (mCurrentFrame + 1) % mDataSize;
144 mCurrentFrame = 0;
189 const int i = mCurrentFrame * 4;
246 int i = (mCurrentFrame + frameOffset) % mDataSize
    [all...]
DrawProfiler.h 76 int mCurrentFrame;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/
FrameSummaryViewPage.java 68 private int mCurrentFrame;
227 mCurrentFrame = frame;
238 currentFrame = mCurrentFrame;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
GLFunctionTraceViewer.java 147 private int mCurrentFrame;
363 mCurrentFrame = selectedFrame - 1;
414 mFrameSummaryViewPage.setSelectedFrame(mCurrentFrame);
    [all...]

Completed in 278 milliseconds