Lines Matching refs:backgroundBuilder
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);
213 ProgramFragment programFragmentBackground = backgroundBuilder.create();