blob: 3bb7118fafc9c5f3c277d4c53089e3ecd764c901 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
bsalomon@google.com27847de2011-02-22 20:59:41 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
bsalomon@google.com27847de2011-02-22 20:59:41 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
bsalomon@google.com27847de2011-02-22 20:59:41 +000010#ifndef GrGeometryBuffer_DEFINED
11#define GrGeometryBuffer_DEFINED
12
bsalomon@google.com8fe72472011-03-30 21:26:44 +000013#include "GrResource.h"
14
15class GrGpu;
bsalomon@google.com27847de2011-02-22 20:59:41 +000016
17/**
18 * Parent class for vertex and index buffers
19 */
bsalomon@google.com8fe72472011-03-30 21:26:44 +000020class GrGeometryBuffer : public GrResource {
bsalomon@google.com27847de2011-02-22 20:59:41 +000021public:
robertphillips@google.com7fa18762012-09-11 13:02:31 +000022 SK_DECLARE_INST_COUNT(GrGeometryBuffer);
bsalomon@google.com8fe72472011-03-30 21:26:44 +000023
bsalomon@google.com27847de2011-02-22 20:59:41 +000024 /**
25 *Retrieves whether the buffer was created with the dynamic flag
26 *
27 * @return true if the buffer was created with the dynamic flag
28 */
29 bool dynamic() const { return fDynamic; }
bsalomon@google.com8fe72472011-03-30 21:26:44 +000030
bsalomon@google.com27847de2011-02-22 20:59:41 +000031 /**
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +000032 * Returns true if the buffer is a wrapper around a CPU array. If true it
33 * indicates that lock will always succeed and will be free.
34 */
35 bool isCPUBacked() const { return fCPUBacked; }
36
37 /**
bsalomon@google.com27847de2011-02-22 20:59:41 +000038 * Locks the buffer to be written by the CPU.
bsalomon@google.com8fe72472011-03-30 21:26:44 +000039 *
bsalomon@google.com27847de2011-02-22 20:59:41 +000040 * The previous content of the buffer is invalidated. It is an error
41 * to draw from the buffer while it is locked. It is an error to call lock
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +000042 * on an already locked buffer. It may fail if the backend doesn't support
43 * locking the buffer. If the buffer is CPU backed then it will always
44 * succeed and is a free operation. Must be matched by an unlock() call.
45 * Currently only one lock at a time is supported (no nesting of
46 * lock/unlock).
bsalomon@google.com8fe72472011-03-30 21:26:44 +000047 *
bsalomon@google.com27847de2011-02-22 20:59:41 +000048 * @return a pointer to the data or NULL if the lock fails.
49 */
50 virtual void* lock() = 0;
bsalomon@google.com8fe72472011-03-30 21:26:44 +000051
bsalomon@google.com27847de2011-02-22 20:59:41 +000052 /**
53 * Returns the same ptr that lock() returned at time of lock or NULL if the
54 * is not locked.
55 *
56 * @return ptr to locked buffer data or undefined if buffer is not locked.
57 */
58 virtual void* lockPtr() const = 0;
bsalomon@google.com8fe72472011-03-30 21:26:44 +000059
60 /**
61 * Unlocks the buffer.
62 *
bsalomon@google.com27847de2011-02-22 20:59:41 +000063 * The pointer returned by the previous lock call will no longer be valid.
64 */
65 virtual void unlock() = 0;
bsalomon@google.com8fe72472011-03-30 21:26:44 +000066
67 /**
bsalomon@google.com27847de2011-02-22 20:59:41 +000068 Queries whether the buffer has been locked.
bsalomon@google.com8fe72472011-03-30 21:26:44 +000069
bsalomon@google.com27847de2011-02-22 20:59:41 +000070 @return true if the buffer is locked, false otherwise.
71 */
72 virtual bool isLocked() const = 0;
bsalomon@google.com8fe72472011-03-30 21:26:44 +000073
bsalomon@google.com27847de2011-02-22 20:59:41 +000074 /**
bsalomon@google.com8fe72472011-03-30 21:26:44 +000075 * Updates the buffer data.
76 *
77 * The size of the buffer will be preserved. The src data will be
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +000078 * placed at the beginning of the buffer and any remaining contents will
bsalomon@google.com27847de2011-02-22 20:59:41 +000079 * be undefined.
bsalomon@google.com8fe72472011-03-30 21:26:44 +000080 *
bsalomon@google.com27847de2011-02-22 20:59:41 +000081 * @return returns true if the update succeeds, false otherwise.
82 */
83 virtual bool updateData(const void* src, size_t srcSizeInBytes) = 0;
bsalomon@google.com8fe72472011-03-30 21:26:44 +000084
bsalomon@google.comcee661a2011-07-26 12:32:36 +000085 // GrResource overrides
86 virtual size_t sizeInBytes() const { return fSizeInBytes; }
87
bsalomon@google.com27847de2011-02-22 20:59:41 +000088protected:
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +000089 GrGeometryBuffer(GrGpu* gpu, bool isWrapped, size_t sizeInBytes, bool dynamic, bool cpuBacked)
bsalomon@google.com72830222013-01-23 20:25:22 +000090 : INHERITED(gpu, isWrapped)
bsalomon@google.com8fe72472011-03-30 21:26:44 +000091 , fSizeInBytes(sizeInBytes)
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +000092 , fDynamic(dynamic)
93 , fCPUBacked(cpuBacked) {}
bsalomon@google.com27847de2011-02-22 20:59:41 +000094
95private:
96 size_t fSizeInBytes;
97 bool fDynamic;
bsalomon@google.comee3bc3b2013-02-21 14:33:46 +000098 bool fCPUBacked;
bsalomon@google.com27847de2011-02-22 20:59:41 +000099
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000100 typedef GrResource INHERITED;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000101};
102
103#endif