Add dynamic shader generation
This commit is contained in:
parent
edd7d4836e
commit
4369cf1770
22 changed files with 300 additions and 124 deletions
|
|
@ -1,8 +1,8 @@
|
|||
import { Drawer } from '../../drawing/drawer';
|
||||
import { IRenderer } from '../../drawing/i-renderer';
|
||||
import { Command } from '../command';
|
||||
|
||||
export class BeforeDrawCommand extends Command {
|
||||
public constructor(public readonly drawer?: Drawer) {
|
||||
public constructor(public readonly drawer?: IRenderer) {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
import { Drawer } from '../../drawing/drawer';
|
||||
import { IRenderer } from '../../drawing/i-renderer';
|
||||
import { Command } from '../command';
|
||||
|
||||
export class DrawCommand extends Command {
|
||||
public constructor(public readonly drawer?: Drawer) {
|
||||
public constructor(public readonly drawer?: IRenderer) {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue