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