OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:backgroundBuilder
(Results
1 - 3
of
3
) sorted by null
/packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
HoloSpiralRS.java
120
ProgramVertex.Builder
backgroundBuilder
= new ProgramVertex.Builder(mRS);
121
backgroundBuilder
.setShader(mResources, R.raw.vertex_background);
122
backgroundBuilder
.addInput(ScriptField_VertexColor_s.createElement(mRS));
123
ProgramVertex programVertexBackground =
backgroundBuilder
.create();
136
ProgramFragment.Builder
backgroundBuilder
= new ProgramFragment.Builder(mRS);
137
backgroundBuilder
.setShader(mResources, R.raw.fragment_background);
138
ProgramFragment programFragmentBackground =
backgroundBuilder
.create();
210
Mesh.AllocationBuilder
backgroundBuilder
= new Mesh.AllocationBuilder(mRS);
211
backgroundBuilder
.addIndexSetType(Primitive.TRIANGLE_STRIP);
212
backgroundBuilder
.addVertexAllocation(fullQuad.getAllocation())
[
all
...]
/packages/wallpapers/NoiseField/src/com/android/noisefield/
NoiseFieldRS.java
156
Mesh.AllocationBuilder
backgroundBuilder
= new Mesh.AllocationBuilder(mRS);
157
backgroundBuilder
.addIndexSetType(Primitive.TRIANGLE);
158
backgroundBuilder
.addVertexAllocation(mVertexColors.getAllocation());
159
mScript.set_gBackgroundMesh(
backgroundBuilder
.create());
174
ProgramVertex.Builder
backgroundBuilder
= new ProgramVertex.Builder(mRS);
175
backgroundBuilder
.setShader(mRes, R.raw.bg_vs);
176
backgroundBuilder
.addInput(ScriptField_VertexColor_s.createElement(mRS));
177
ProgramVertex programVertexBackground =
backgroundBuilder
.create();
195
ProgramFragment.Builder
backgroundBuilder
= new ProgramFragment.Builder(mRS);
196
backgroundBuilder
.setShader(mRes, R.raw.bg_fs)
[
all
...]
/packages/wallpapers/PhaseBeam/src/com/android/phasebeam/
PhaseBeamRS.java
171
Mesh.AllocationBuilder
backgroundBuilder
= new Mesh.AllocationBuilder(mRS);
172
backgroundBuilder
.addIndexSetType(Primitive.TRIANGLE);
173
backgroundBuilder
.addVertexAllocation(mVertexColors.getAllocation());
174
mScript.set_gBackgroundMesh(
backgroundBuilder
.create());
191
ProgramVertex.Builder
backgroundBuilder
= new ProgramVertex.Builder(mRS);
192
backgroundBuilder
.setShader(mRes, R.raw.bg_vs);
193
backgroundBuilder
.addInput(ScriptField_VertexColor_s.createElement(mRS));
194
ProgramVertex programVertexBackground =
backgroundBuilder
.create();
211
ProgramFragment.Builder
backgroundBuilder
= new ProgramFragment.Builder(mRS);
212
backgroundBuilder
.setShader(mRes, R.raw.bg_fs)
[
all
...]
Completed in 43 milliseconds