本文整理汇总了Java中net.minecraft.client.renderer.GLAllocation类的典型用法代码示例。如果您正苦于以下问题:Java GLAllocation类的具体用法?Java GLAllocation怎么用?Java GLAllocation使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
GLAllocation类属于net.minecraft.client.renderer包,在下文中一共展示了GLAllocation类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: makeMipmapBuffers
import net.minecraft.client.renderer.GLAllocation; //导入依赖的package包/类
public static IntBuffer[] makeMipmapBuffers(Dimension[] p_makeMipmapBuffers_0_, int[][] p_makeMipmapBuffers_1_)
{
if (p_makeMipmapBuffers_0_ == null)
{
return null;
}
else
{
IntBuffer[] aintbuffer = new IntBuffer[p_makeMipmapBuffers_0_.length];
for (int i = 0; i < p_makeMipmapBuffers_0_.length; ++i)
{
Dimension dimension = p_makeMipmapBuffers_0_[i];
int j = dimension.width * dimension.height;
IntBuffer intbuffer = GLAllocation.createDirectIntBuffer(j);
int[] aint = p_makeMipmapBuffers_1_[i];
intbuffer.clear();
intbuffer.put(aint);
intbuffer.clear();
aintbuffer[i] = intbuffer;
}
return aintbuffer;
}
}
示例2: compileDisplayList
import net.minecraft.client.renderer.GLAllocation; //导入依赖的package包/类
/**
* Compiles a GL display list for this model
*/
private void compileDisplayList(float scale)
{
if (this.displayList == 0)
{
this.savedScale = scale;
this.displayList = GLAllocation.generateDisplayLists(1);
}
GL11.glNewList(this.displayList, GL11.GL_COMPILE);
WorldRenderer worldrenderer = Tessellator.getInstance().getWorldRenderer();
for (int i = 0; i < this.cubeList.size(); ++i)
{
((ModelBox)this.cubeList.get(i)).render(worldrenderer, scale);
}
for (int j = 0; j < this.spriteList.size(); ++j)
{
ModelSprite modelsprite = (ModelSprite)this.spriteList.get(j);
modelsprite.render(Tessellator.getInstance(), scale);
}
GL11.glEndList();
this.compiled = true;
}
示例3: compileDisplayList
import net.minecraft.client.renderer.GLAllocation; //导入依赖的package包/类
/**
* Compiles a GL display list for this model
*/
private void compileDisplayList(float scale)
{
this.displayList = GLAllocation.generateDisplayLists(1);
GL11.glNewList(this.displayList, GL11.GL_COMPILE);
WorldRenderer worldrenderer = Tessellator.getInstance().getWorldRenderer();
for (int i = 0; i < this.cubeList.size(); ++i)
{
((ModelBox)this.cubeList.get(i)).render(worldrenderer, scale);
}
for (int j = 0; j < this.spriteList.size(); ++j)
{
ModelSprite modelsprite = (ModelSprite)this.spriteList.get(j);
modelsprite.render(Tessellator.getInstance(), scale);
}
GL11.glEndList();
this.compiled = true;
}
示例4: compileDisplayList
import net.minecraft.client.renderer.GLAllocation; //导入依赖的package包/类
/**
* Compiles a GL display list for this model
*/
private void compileDisplayList(float scale)
{
if (this.displayList == 0)
{
this.savedScale = scale;
this.displayList = GLAllocation.generateDisplayLists(1);
}
GlStateManager.glNewList(this.displayList, 4864);
VertexBuffer vertexbuffer = Tessellator.getInstance().getBuffer();
for (int i = 0; i < this.cubeList.size(); ++i)
{
((ModelBox)this.cubeList.get(i)).render(vertexbuffer, scale);
}
for (int j = 0; j < this.spriteList.size(); ++j)
{
ModelSprite modelsprite = (ModelSprite)this.spriteList.get(j);
modelsprite.render(Tessellator.getInstance(), scale);
}
GlStateManager.glEndList();
this.compiled = true;
}
示例5: compileDisplayList
import net.minecraft.client.renderer.GLAllocation; //导入依赖的package包/类
/**
* Compiles a GL display list for this model
*/
@SideOnly(Side.CLIENT)
private void compileDisplayList(float scale)
{
this.displayList = GLAllocation.generateDisplayLists(1);
GlStateManager.glNewList(this.displayList, 4864);
VertexBuffer vertexbuffer = Tessellator.getInstance().getBuffer();
for (int i = 0; i < this.cubeList.size(); ++i)
{
((ModelBox)this.cubeList.get(i)).render(vertexbuffer, scale);
}
GlStateManager.glEndList();
this.compiled = true;
}
示例6: render
import net.minecraft.client.renderer.GLAllocation; //导入依赖的package包/类
public void render(float partialTicks) {
boolean ineff = false;
if(ineff){
updateSimpleRender(partialTicks);
return;
}
if (needsUpdate) {
if (glRenderList >= 0) {
GLAllocation.deleteDisplayLists(glRenderList);
glRenderList = -1;
}
glRenderList = GLAllocation.generateDisplayLists(1);
GL11.glNewList(glRenderList, GL11.GL_COMPILE);
updateSimpleRender(partialTicks);
GL11.glEndList();
needsUpdate = false;
}
if(this.glRenderList >=0){
GlStateManager.callList(glRenderList);
}
}
示例7: compileDisplayList
import net.minecraft.client.renderer.GLAllocation; //导入依赖的package包/类
/**
* Compiles a GL display list for this model
*/
@SideOnly(Side.CLIENT)
protected void compileDisplayList(float scale)
{
this.displayList = GLAllocation.generateDisplayLists(1);
GlStateManager.glNewList(this.displayList, 4864);
VertexBuffer vertexbuffer = Tessellator.getInstance().getBuffer();
for (int i = 0; i < this.cubeList.size(); ++i)
{
((ModelBox) this.cubeList.get(i)).render(vertexbuffer, scale);
}
GlStateManager.glEndList();
this.compiled = true;
}
示例8: compileDisplayList
import net.minecraft.client.renderer.GLAllocation; //导入依赖的package包/类
private void compileDisplayList (float worldScale) {
if (this.useLegacyCompiler)
this.compileLegacyDisplayList(worldScale);
else {
final Collection<TextureGroup> textures = this.textureGroup.values();
final Iterator<TextureGroup> itr = textures.iterator();
this.displayListArray = new int[this.textureGroup.size()];
for (int i = 0; itr.hasNext(); i++) {
this.displayListArray[i] = GLAllocation.generateDisplayLists(1);
GL11.glNewList(this.displayListArray[i], 4864);
final Tessellator tessellator = Tessellator.getInstance();
final TextureGroup usedGroup = itr.next();
for (int j = 0; j < usedGroup.poly.size(); j++)
usedGroup.poly.get(j).draw(tessellator, worldScale);
GL11.glEndList();
}
}
this.compiled = true;
}
示例9: update
import net.minecraft.client.renderer.GLAllocation; //导入依赖的package包/类
public boolean update(BlockSlice slice) {
if (!changed) {
return false;
}
for (int pass = 0; pass < 2; pass++) {
if (glDisplayList[pass] < 0) {
glDisplayList[pass] = GLAllocation.generateDisplayLists(1);
}
GL11.glPushMatrix();
GL11.glNewList(glDisplayList[pass], GL11.GL_COMPILE);
if (slice.sculpture.needRenderPass(pass)) {
build(slice, pass);
}
GL11.glEndList();
GL11.glPopMatrix();
}
changed = false;
return true;
}
示例10: makeMipmapBuffers
import net.minecraft.client.renderer.GLAllocation; //导入依赖的package包/类
public static IntBuffer[] makeMipmapBuffers(Dimension[] mipmapDimensions, int[][] mipmapDatas)
{
if (mipmapDimensions == null)
{
return null;
}
else
{
IntBuffer[] mipmapBuffers = new IntBuffer[mipmapDimensions.length];
for (int i = 0; i < mipmapDimensions.length; ++i)
{
Dimension dim = mipmapDimensions[i];
int bufLen = dim.width * dim.height;
IntBuffer buf = GLAllocation.createDirectIntBuffer(bufLen);
int[] data = mipmapDatas[i];
buf.clear();
buf.put(data);
buf.clear();
mipmapBuffers[i] = buf;
}
return mipmapBuffers;
}
}
示例11: compileDisplayList
import net.minecraft.client.renderer.GLAllocation; //导入依赖的package包/类
private static void compileDisplayList()
{
displayList = GLAllocation.generateDisplayLists(1);
GlStateManager.glNewList(displayList, 4864);
BufferBuilder vertexbuffer = Tessellator.getInstance().getBuffer();
vertexbuffer.begin(7, DefaultVertexFormats.POSITION_TEX_NORMAL);
for(RawQuad q : quads)
{
for(int i = 0; i < 4; i++)
{
Vertex v = q.getVertex(i);
Vec3d n = v.getNormal();
vertexbuffer.pos(v.x, v.y, v.z).tex(v.u, v.v).normal((float)n.x, (float)n.y, (float)n.z).endVertex();
}
}
Tessellator.getInstance().draw();
GlStateManager.glEndList();
}
示例12: update
import net.minecraft.client.renderer.GLAllocation; //导入依赖的package包/类
public boolean update(BlockSlice slice){
if(glDisplayList != null && !changed)return false;
if(glDisplayList == null)glDisplayList = new int[]{-1,-1};
for(int pass = 0; pass < 2; pass++){
if(glDisplayList[pass] < 0)glDisplayList[pass] = GLAllocation.generateDisplayLists(1);
GL11.glPushMatrix();
GL11.glNewList(glDisplayList[pass], GL11.GL_COMPILE);
if(slice.sculpture.needRenderPass(pass))
build(slice,pass);
GL11.glEndList();
GL11.glPopMatrix();
}
changed = false;
return true;
}
示例13: markRemoved
import net.minecraft.client.renderer.GLAllocation; //导入依赖的package包/类
public void markRemoved()
{
isRemoved = true;
try
{
if (glRenderList != 0)
{
ArchimedesShipMod.modLog.debug("Deleting mobile chunk display list " + glRenderList);
GLAllocation.deleteDisplayLists(glRenderList);
glRenderList = 0;
}
} catch (Exception e)
{
ArchimedesShipMod.modLog.error("Failed to destroy mobile chunk display list", e);
}
}
示例14: compileDisplayList
import net.minecraft.client.renderer.GLAllocation; //导入依赖的package包/类
/**
* Compiles a GL display list for this model
*/
@SideOnly(Side.CLIENT)
private void compileDisplayList(float par1)
{
this.displayList = GLAllocation.generateDisplayLists(1);
GL11.glNewList(this.displayList, GL11.GL_COMPILE);
Tessellator tessellator = Tessellator.instance;
for (int i = 0; i < this.cubeList.size(); ++i)
{
((ModelBox)this.cubeList.get(i)).render(tessellator, par1);
}
GL11.glEndList();
this.compiled = true;
}
示例15: compileDisplayList
import net.minecraft.client.renderer.GLAllocation; //导入依赖的package包/类
/**
* Compiles a GL display list for this model
*/
@SideOnly(Side.CLIENT)
private void compileDisplayList(float par1) {
this.displayList = GLAllocation.generateDisplayLists(1);
GL11.glNewList(this.displayList, GL11.GL_COMPILE);
Tessellator var2 = Tessellator.instance;
for (int var3 = 0; var3 < this.cubeList.size(); ++var3) {
((ModelBox) this.cubeList.get(var3)).render(var2, par1);
}
for(int i = 0; i < this.objs.size(); i++){
this.objs.get(i).render(par1);
}
GL11.glEndList();
this.compiled = true;
}