Class RenderPassStateCore
Inherited Members
Namespace:
Assembly: .dll
Syntax
public abstract class RenderPassStateCore extends DisposableBase
Constructors
RenderPassStateCore()
Declaration
public RenderPassStateCore()
Methods
addError(String errorMessage)
Adds error message to publish in the end of current render pass
Declaration
public void addError(String errorMessage)
Parameters
| Type | Name | Description |
|---|---|---|
| String | errorMessage | The error to publish |
addWarning(String warningMessage)
Adds warning message to publish in the end of current render pass
Declaration
public void addWarning(String warningMessage)
Parameters
| Type | Name | Description |
|---|---|---|
| String | warningMessage | The message to publish |
dispose()
Declaration
public void dispose()
getErrors()
Gets the list of error messages for current render pass
Declaration
public final List<String> getErrors()
Returns
| Type | Description |
|---|---|
| List<String> | The list of errors |
getWarnings()
Gets the list of warnings messages for current render pass
Declaration
public final List<String> getWarnings()
Returns
| Type | Description |
|---|---|
| List<String> | The list of warnings |
notifyDataRangeChanged(IAxisCore axis)
Schedules notification of IAxisCore about data range changed event in the end of current render pass
Declaration
public final void notifyDataRangeChanged(IAxisCore axis)
Parameters
| Type | Name | Description |
|---|---|---|
| IAxisCore | axis | The axis to notify |