HomeSort by relevance Sort by last modified time
    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();
212 Mesh.AllocationBuilder backgroundBuilder = new Mesh.AllocationBuilder(mRS);
213 backgroundBuilder.addIndexSetType(Primitive.TRIANGLE_STRIP);
214 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());
176 ProgramVertex.Builder backgroundBuilder = new ProgramVertex.Builder(mRS);
177 backgroundBuilder.setShader(mRes, R.raw.bg_vs);
178 backgroundBuilder.addInput(ScriptField_VertexColor_s.createElement(mRS));
179 ProgramVertex programVertexBackground = backgroundBuilder.create();
197 ProgramFragment.Builder backgroundBuilder = new ProgramFragment.Builder(mRS);
198 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());
193 ProgramVertex.Builder backgroundBuilder = new ProgramVertex.Builder(mRS);
194 backgroundBuilder.setShader(mRes, R.raw.bg_vs);
195 backgroundBuilder.addInput(ScriptField_VertexColor_s.createElement(mRS));
196 ProgramVertex programVertexBackground = backgroundBuilder.create();
213 ProgramFragment.Builder backgroundBuilder = new ProgramFragment.Builder(mRS);
214 backgroundBuilder.setShader(mRes, R.raw.bg_fs)
    [all...]

Completed in 100 milliseconds