am a59d7a6a
: Merge "GUI: Remove unused variables"
* commit 'a59d7a6a66a2b8dcb2d00dbd6371fa89ae45ab04': GUI: Remove unused variables
This commit is contained in:
commit
b93bca5d08
@ -194,7 +194,6 @@ status_t CpuConsumer::lockNextBuffer(LockedBuffer *nativeBuffer) {
|
||||
status_t CpuConsumer::unlockBuffer(const LockedBuffer &nativeBuffer) {
|
||||
Mutex::Autolock _l(mMutex);
|
||||
size_t lockedIdx = 0;
|
||||
status_t err;
|
||||
|
||||
void *bufPtr = reinterpret_cast<void *>(nativeBuffer.data);
|
||||
for (; lockedIdx < mMaxLockedBuffers; lockedIdx++) {
|
||||
|
@ -53,7 +53,6 @@ public:
|
||||
|
||||
virtual sp<ISurfaceComposerClient> createConnection()
|
||||
{
|
||||
uint32_t n;
|
||||
Parcel data, reply;
|
||||
data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
|
||||
remote()->transact(BnSurfaceComposer::CREATE_CONNECTION, data, &reply);
|
||||
@ -62,7 +61,6 @@ public:
|
||||
|
||||
virtual sp<IGraphicBufferAlloc> createGraphicBufferAlloc()
|
||||
{
|
||||
uint32_t n;
|
||||
Parcel data, reply;
|
||||
data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor());
|
||||
remote()->transact(BnSurfaceComposer::CREATE_GRAPHIC_BUFFER_ALLOC, data, &reply);
|
||||
|
@ -96,8 +96,8 @@ void Surface::setSidebandStream(const sp<NativeHandle>& stream) {
|
||||
void Surface::allocateBuffers() {
|
||||
uint32_t reqWidth = mReqWidth ? mReqWidth : mUserWidth;
|
||||
uint32_t reqHeight = mReqHeight ? mReqHeight : mUserHeight;
|
||||
mGraphicBufferProducer->allocateBuffers(mSwapIntervalZero, mReqWidth,
|
||||
mReqHeight, mReqFormat, mReqUsage);
|
||||
mGraphicBufferProducer->allocateBuffers(mSwapIntervalZero, reqWidth,
|
||||
reqHeight, mReqFormat, mReqUsage);
|
||||
}
|
||||
|
||||
int Surface::hook_setSwapInterval(ANativeWindow* window, int interval) {
|
||||
@ -274,7 +274,6 @@ int Surface::cancelBuffer(android_native_buffer_t* buffer,
|
||||
|
||||
int Surface::getSlotFromBufferLocked(
|
||||
android_native_buffer_t* buffer) const {
|
||||
bool dumpedState = false;
|
||||
for (int i = 0; i < NUM_BUFFER_SLOTS; i++) {
|
||||
if (mSlots[i].buffer != NULL &&
|
||||
mSlots[i].buffer->handle == buffer->handle) {
|
||||
|
Loading…
Reference in New Issue
Block a user