mirror of
https://github.com/schrodinger/pymol-open-source.git
synced 2026-06-03 19:54:24 +08:00
14 lines
244 B
C++
14 lines
244 B
C++
#pragma once
|
|
|
|
#include "GenericBuffer.h"
|
|
|
|
#include <cstdint>
|
|
|
|
class IndexBuffer : public GPUBuffer
|
|
{
|
|
public:
|
|
[[nodiscard]] virtual std::uint64_t getBufferID() const = 0;
|
|
|
|
virtual void copyFrom(pymol::span<const std::uint32_t> data) = 0;
|
|
};
|