Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public static final class

Script.LaunchOptions

extends Object
java.lang.Object
   ↳ android.support.v8.renderscript.Script.LaunchOptions

Class Overview

Class used to specify clipping for a kernel launch.

Summary

Public Constructors
Script.LaunchOptions ()
Public Methods
int getXEnd ()
Returns the current X end
int getXStart ()
Returns the current X start
int getYEnd ()
Returns the current Y end
int getYStart ()
Returns the current Y start
int getZEnd ()
Returns the current Z end
int getZStart ()
Returns the current Z start
Script.LaunchOptions setX (int xstartArg, int xendArg)
Set the X range.
Script.LaunchOptions setY (int ystartArg, int yendArg)
Set the Y range.
Script.LaunchOptions setZ (int zstartArg, int zendArg)
Set the Z range.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public Script.LaunchOptions ()

Public Methods

public int getXEnd ()

Returns the current X end

Returns
  • int current value

public int getXStart ()

Returns the current X start

Returns
  • int current value

public int getYEnd ()

Returns the current Y end

Returns
  • int current value

public int getYStart ()

Returns the current Y start

Returns
  • int current value

public int getZEnd ()

Returns the current Z end

Returns
  • int current value

public int getZStart ()

Returns the current Z start

Returns
  • int current value

public Script.LaunchOptions setX (int xstartArg, int xendArg)

Set the X range. If the end value is set to 0 the X dimension is not clipped.

Parameters
xstartArg Must be >= 0
xendArg Must be >= xstartArg
Returns
  • LaunchOptions

public Script.LaunchOptions setY (int ystartArg, int yendArg)

Set the Y range. If the end value is set to 0 the Y dimension is not clipped.

Parameters
ystartArg Must be >= 0
yendArg Must be >= ystartArg
Returns
  • LaunchOptions

public Script.LaunchOptions setZ (int zstartArg, int zendArg)

Set the Z range. If the end value is set to 0 the Z dimension is not clipped.

Parameters
zstartArg Must be >= 0
zendArg Must be >= zstartArg
Returns
  • LaunchOptions