blob: 260f10739a09a3e9eeed82393c3745196a0b6630 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ Parsed from GLKit.framework GLKReflectionMapEffect.h }
{$ifdef TYPES}
type
GLKReflectionMapEffectPtr = ^GLKReflectionMapEffect;
{$endif}
{$ifdef CLASSES}
type
GLKReflectionMapEffect = objcclass external (GLKBaseEffect, GLKNamedEffectProtocol)
private
_textureCubeMap: GLKEffectPropertyTexture;
_matrix: GLKMatrix3;
public
procedure prepareToDraw; message 'prepareToDraw';
function textureCubeMap: GLKEffectPropertyTexture; message 'textureCubeMap';
procedure setMatrix(newValue: GLKMatrix3); message 'setMatrix:';
function matrix: GLKMatrix3; message 'matrix';
end;
{$endif}
|