Home | History | Annotate | Download | only in noisefield

Lines Matching refs:backgroundBuilder

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);
199 ProgramFragment programFragmentBackground = backgroundBuilder.create();