OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pfbCustom
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
FillTest.java
110
ProgramFragment.Builder
pfbCustom
= new ProgramFragment.Builder(mRS);
111
pfbCustom
.setShader(mRes, R.raw.multitexf);
113
pfbCustom
.addTexture(Program.TextureType.TEXTURE_2D);
115
mProgFragmentMultitex =
pfbCustom
.create();
117
pfbCustom
= new ProgramFragment.Builder(mRS);
118
pfbCustom
.setShader(mRes, R.raw.singletexf);
119
pfbCustom
.addTexture(Program.TextureType.TEXTURE_2D);
120
mProgFragmentSingletex =
pfbCustom
.create();
122
pfbCustom
= new ProgramFragment.Builder(mRS);
123
pfbCustom
.setShader(mRes, R.raw.singletexfm)
[
all
...]
TorusTest.java
174
ProgramFragment.Builder
pfbCustom
= new ProgramFragment.Builder(mRS);
176
pfbCustom
.setShader(mRes, R.raw.shaderf);
178
pfbCustom
.addTexture(Program.TextureType.TEXTURE_2D);
180
pfbCustom
.addConstant(mFSConst.getAllocation().getType());
181
mProgFragmentCustom =
pfbCustom
.create();
199
pfbCustom
= new ProgramFragment.Builder(mRS);
200
pfbCustom
.setShader(mRes, R.raw.shader2f);
201
pfbCustom
.addTexture(Program.TextureType.TEXTURE_2D);
202
pfbCustom
.addConstant(mFSConstPixel.getAllocation().getType());
203
mProgFragmentPixelLight =
pfbCustom
.create()
[
all
...]
/frameworks/base/tests/RenderScriptTests/MiscSamples/src/com/example/android/rs/miscsamples/
RsRenderStatesRS.java
244
ProgramFragment.Builder
pfbCustom
= new ProgramFragment.Builder(mRS);
246
pfbCustom
.setShader(mRes, R.raw.shaderf);
248
pfbCustom
.addTexture(Program.TextureType.TEXTURE_2D);
250
pfbCustom
.addConstant(mFSConst.getAllocation().getType());
251
mProgFragmentCustom =
pfbCustom
.create();
262
pfbCustom
= new ProgramFragment.Builder(mRS);
263
pfbCustom
.setShader(mRes, R.raw.shaderarrayf);
264
pfbCustom
.addTexture(Program.TextureType.TEXTURE_2D);
265
pfbCustom
.addConstant(mFSConst2.getAllocation().getType());
266
mProgFragmentCustom2 =
pfbCustom
.create()
[
all
...]
Completed in 1986 milliseconds