本文整理汇总了Java中android.renderscript.Element.F32属性的典型用法代码示例。如果您正苦于以下问题:Java Element.F32属性的具体用法?Java Element.F32怎么用?Java Element.F32使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类android.renderscript.Element
的用法示例。
在下文中一共展示了Element.F32属性的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: config
protected void config(){
opt.setX(0,height);
Type.Builder builder = new Type.Builder(rs, Element.F32(rs));
builder.setX(height);
out = Allocation.createTyped(rs,builder.create());
rsSum.set_g_x_start(0);
rsSum.set_g_x_end(width);
rsSum.set_g_src(parameter.allocIn);
}
示例2: createAllocOutEstimateErr
private void createAllocOutEstimateErr(){
Type.Builder builder = new Type.Builder(rs, Element.F32(rs));
builder.setX(curRect.width() + 1);
builder.setY(curRect.height()+1);
Type type = builder.create();
outErr = Allocation.createTyped(rs,type);
}
示例3: allocSecPartial
static private void allocSecPartial(){
Type.Builder builder = new Type.Builder(rs,Element.F32(rs));
builder.setX(data.getOriWidth());
builder.setY(data.getOriHeight());
allocBaseSecPartialX = Allocation.createTyped(rs,builder.create());
allocBaseSecPartialY = Allocation.createTyped(rs,builder.create());
}
示例4: getTypeOutAlloc
private Type getTypeOutAlloc(){
Type.Builder allocConfig = new Type.Builder(rs,
Element.F32(rs));
allocConfig.setX(rect.height()+1);
return allocConfig.create();
}