blob: ad1ced7cfb135ac4de9595404162a0591673f1db [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "flutter/shell/platform/darwin/macos/framework/Source/FlutterBackingStore.h"
@implementation FlutterRenderBackingStore
@end
@implementation FlutterOpenGLRenderBackingStore
- (instancetype)initWithFrameBufferID:(uint32_t)fboID {
self = [super init];
if (self) {
_frameBufferID = fboID;
}
return self;
}
@end
@implementation FlutterMetalRenderBackingStore
- (instancetype)initWithTexture:(id<MTLTexture>)texture {
self = [super init];
if (self) {
_texture = texture;
}
return self;
}
@end