Home
last modified time | relevance | path

Searched refs:isUseNewMatrix (Results 1 – 16 of 16) sorted by relevance

/ohos5.0/foundation/graphic/graphic_surface/interfaces/inner_api/surface/
H A Dibuffer_producer.h106 sptr<SyncFence>& fence, float matrix[16], bool isUseNewMatrix) = 0;
126 float matrix[16], uint32_t matrixSize, bool isUseNewMatrix) in AcquireLastFlushedBuffer() argument
132 (void)isUseNewMatrix; in AcquireLastFlushedBuffer()
H A Diconsumer_surface.h140 sptr<SyncFence>& fence, float matrix[16], bool isUseNewMatrix) = 0;
156 float matrix[16], uint32_t matrixSize, bool isUseNewMatrix) in AcquireLastFlushedBuffer() argument
162 (void)isUseNewMatrix; in AcquireLastFlushedBuffer()
H A Dsurface.h131 sptr<SyncFence>& fence, float matrix[16], bool isUseNewMatrix = false) = 0;
159 float matrix[16], uint32_t matrixSize, bool isUseNewMatrix) in AcquireLastFlushedBuffer() argument
165 (void)isUseNewMatrix; in AcquireLastFlushedBuffer()
/ohos5.0/foundation/graphic/graphic_surface/surface/include/
H A Dbuffer_client_producer.h54 sptr<SyncFence>& fence, float matrix[16], bool isUseNewMatrix) override;
110 float matrix[16], uint32_t matrixSize, bool isUseNewMatrix) override;
121 …sptr<SyncFence>& fence, float matrix[16], uint32_t matrixSize, bool isUseNewMatrix, uint32_t comma…
H A Dconsumer_surface.h67 sptr<SyncFence>& fence, float matrix[16], bool isUseNewMatrix = false) override;
175 float matrix[16], uint32_t matrixSize, bool isUseNewMatrix) override;
H A Dproducer_surface.h67 sptr<SyncFence>& fence, float matrix[16], bool isUseNewMatrix = false) override;
162 float matrix[16], uint32_t matrixSize, bool isUseNewMatrix) override;
H A Dbuffer_queue.h97 … float matrix[16], uint32_t matrixSize, bool isUseNewMatrix, bool needRecordSequence = false);
197 float matrix[16], uint32_t matrixSize, bool isUseNewMatrix);
H A Dbuffer_queue_producer.h57 float matrix[16], bool isUseNewMatrix) override;
121 float matrix[16], uint32_t matrixSize, bool isUseNewMatrix) override;
/ohos5.0/foundation/graphic/graphic_surface/surface/src/
H A Dbuffer_client_producer.cpp178 …sptr<SyncFence>& fence, float matrix[16], uint32_t matrixSize, bool isUseNewMatrix, uint32_t comma… in GetLastFlushedBufferCommon() argument
181 arguments.WriteBool(isUseNewMatrix); in GetLastFlushedBufferCommon()
209 sptr<SyncFence>& fence, float matrix[16], bool isUseNewMatrix) in GetLastFlushedBuffer() argument
212 matrix, MATRIX4_SIZE, isUseNewMatrix, BUFFER_PRODUCER_GET_LAST_FLUSHED_BUFFER); in GetLastFlushedBuffer()
721 float matrix[16], uint32_t matrixSize, bool isUseNewMatrix) in AcquireLastFlushedBuffer() argument
724 matrix, matrixSize, isUseNewMatrix, BUFFER_PRODUCER_ACQUIRE_LAST_FLUSHED_BUFFER); in AcquireLastFlushedBuffer()
H A Dbuffer_queue_producer.cpp317 bool isUseNewMatrix = arguments.ReadBool(); in GetLastFlushedBufferRemote() local
318 GSError sret = GetLastFlushedBuffer(buffer, fence, matrix, isUseNewMatrix); in GetLastFlushedBufferRemote()
735 bool isUseNewMatrix = arguments.ReadBool(); in AcquireLastFlushedBufferRemote() local
736 …GSError sret = AcquireLastFlushedBuffer(buffer, fence, matrix, BUFFER_MATRIX_SIZE, isUseNewMatrix); in AcquireLastFlushedBufferRemote()
827 sptr<SyncFence> &fence, float matrix[16], uint32_t matrixSize, bool isUseNewMatrix) in AcquireLastFlushedBuffer() argument
832 … return bufferQueue_->AcquireLastFlushedBuffer(buffer, fence, matrix, matrixSize, isUseNewMatrix); in AcquireLastFlushedBuffer()
932 sptr<SyncFence>& fence, float matrix[16], bool isUseNewMatrix) in GetLastFlushedBuffer() argument
937 …turn bufferQueue_->GetLastFlushedBuffer(buffer, fence, matrix, BUFFER_MATRIX_SIZE, isUseNewMatrix); in GetLastFlushedBuffer()
H A Dproducer_surface.cpp322 sptr<SyncFence>& fence, float matrix[16], bool isUseNewMatrix) in GetLastFlushedBuffer() argument
327 return producer_->GetLastFlushedBuffer(buffer, fence, matrix, isUseNewMatrix); in GetLastFlushedBuffer()
1057 float matrix[16], uint32_t matrixSize, bool isUseNewMatrix) in AcquireLastFlushedBuffer() argument
1062 return producer_->AcquireLastFlushedBuffer(buffer, fence, matrix, matrixSize, isUseNewMatrix); in AcquireLastFlushedBuffer()
H A Dconsumer_surface.cpp122 sptr<SyncFence>& fence, float matrix[16], bool isUseNewMatrix) in GetLastFlushedBuffer() argument
797 float matrix[16], uint32_t matrixSize, bool isUseNewMatrix) in AcquireLastFlushedBuffer() argument
H A Dbuffer_queue.cpp651 …sptr<SyncFence>& fence, float matrix[16], uint32_t matrixSize, bool isUseNewMatrix, bool needRecor… in GetLastFlushedBuffer() argument
683 if (isUseNewMatrix) { in GetLastFlushedBuffer()
698 float matrix[16], uint32_t matrixSize, bool isUseNewMatrix) in AcquireLastFlushedBuffer() argument
700 return GetLastFlushedBuffer(buffer, fence, matrix, matrixSize, isUseNewMatrix, true); in AcquireLastFlushedBuffer()
/ohos5.0/foundation/graphic/graphic_surface/surface/test/fuzztest/bufferqueue_fuzzer/
H A Dbufferqueue_fuzzer.cpp139 bool isUseNewMatrix = GetData<bool>(); in BufferQueueFuzzTest1() local
141 …bufferqueue->GetLastFlushedBuffer(buffer, syncFence, matrix, matrixSize, isUseNewMatrix, needRecor… in BufferQueueFuzzTest1()
/ohos5.0/foundation/graphic/graphic_surface/surface/test/fuzztest/bufferqueueproducer_fuzzer/
H A Dbufferqueueproducer_fuzzer.cpp119 bool isUseNewMatrix = GetData<bool>(); in BufferQueueProducerFuzzTest1() local
121 bqp->GetLastFlushedBuffer(buffer, syncFence, matrix, isUseNewMatrix); in BufferQueueProducerFuzzTest1()
/ohos5.0/foundation/graphic/graphic_surface/surface/test/fuzztest/surface_fuzzer/
H A Dsurface_fuzzer.cpp292 bool isUseNewMatrix = GetData<bool>(); in DoSomethingInterestingWithMyAPI() local
293 pSurface->AcquireLastFlushedBuffer(buffer, syncFence, matrix, matrixSize, isUseNewMatrix); in DoSomethingInterestingWithMyAPI()