mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-26 00:58:47 +02:00
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
//
|
|
// RenderableLineEntityItem.h
|
|
// libraries/entities-renderer/src/
|
|
//
|
|
// Created by Seth Alves on 5/11/15.
|
|
// Copyright 2015 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_RenderablePolyLineEntityItem_h
|
|
#define hifi_RenderablePolyLineEntityItem_h
|
|
|
|
#include <gpu/Batch.h>
|
|
#include <PolyLineEntityItem.h>
|
|
#include "RenderableDebugableEntityItem.h"
|
|
#include "RenderableEntityItem.h"
|
|
#include <GeometryCache.h>
|
|
#include <QReadWriteLock>
|
|
|
|
class RenderablePolyLineEntityItem : public PolyLineEntityItem {
|
|
public:
|
|
static EntityItemPointer factory(const EntityItemID& entityID, const EntityItemProperties& properties);
|
|
static void createPipeline();
|
|
RenderablePolyLineEntityItem(const EntityItemID& entityItemID, const EntityItemProperties& properties);
|
|
|
|
virtual void render(RenderArgs* args);
|
|
|
|
SIMPLE_RENDERABLE();
|
|
|
|
static gpu::PipelinePointer _pipeline;
|
|
static gpu::Stream::FormatPointer _format;
|
|
|
|
protected:
|
|
void updateGeometry();
|
|
gpu::BufferPointer _verticesBuffer;
|
|
unsigned int _numVertices;
|
|
|
|
};
|
|
|
|
|
|
#endif // hifi_RenderablePolyLineEntityItem_h
|