Browse Source
Merge pull request #9346 from lioncash/vtable
producer_listener: Add virtual destructor to IProducerListener
pull/15/merge
liamwhite
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
0 deletions
-
src/core/hle/service/nvflinger/producer_listener.h
|
|
|
@ -10,6 +10,7 @@ namespace Service::android { |
|
|
|
|
|
|
|
class IProducerListener { |
|
|
|
public: |
|
|
|
virtual ~IProducerListener() = default; |
|
|
|
virtual void OnBufferReleased() = 0; |
|
|
|
}; |
|
|
|
|
|
|
|
|