blob: 8a0119203a975597db56b35eccbdfd4a644b60b0 [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 FlutterMetalRenderBackingStore
- (instancetype)initWithTexture:(id<MTLTexture>)texture {
self = [super init];
if (self) {
_texture = texture;
}
return self;
}
@end