mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-05 06:05:27 +00:00
df89a8771c
Not that they're drawn from correctly yet. I might first take a run at a new quick-path output route for emulated RGB displays, that just seeks to use the scans directly. No intermediate buffers. Besides probably being a good feature, it'll be a good way to ramp further up with Metal.
17 lines
342 B
Objective-C
17 lines
342 B
Objective-C
//
|
|
// CSScanTarget+C__ScanTarget.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 08/08/2020.
|
|
// Copyright © 2020 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import "CSScanTarget.h"
|
|
#include "ScanTarget.hpp"
|
|
|
|
@interface CSScanTarget (CppScanTarget)
|
|
|
|
@property (nonatomic, readonly, nonnull) Outputs::Display::ScanTarget *scanTarget;
|
|
|
|
@end
|