30b56d2ec5
git-svn-id: http://svn.code.sf.net/p/irrlicht/code/trunk@643 dfc29bdd-3216-0410-991c-e03cc46cb475
28 lines
561 B
C++
28 lines
561 B
C++
#pragma once
|
|
|
|
using namespace System;
|
|
|
|
#pragma unmanaged
|
|
#include "..\\..\\include\\irrlicht.h"
|
|
#pragma managed
|
|
|
|
#include "IMaterialRenderer.h"
|
|
|
|
namespace Irrlicht
|
|
{
|
|
namespace Video
|
|
{
|
|
public __gc class IMaterialRendererServices;
|
|
|
|
public __gc __interface IShaderConstantSetCallBack
|
|
{
|
|
public:
|
|
|
|
/// <summary>
|
|
/// Called by the engine when the vertex and/or pixel shader constants for an
|
|
/// material renderer should be set.
|
|
/// </summary>
|
|
void OnSetConstants( Irrlicht::Video::IMaterialRendererServices* services );
|
|
};
|
|
}
|
|
} |