blob: 9bdd34022c7e120670ef395a71da26ac5b581e76 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@google.comac10a2d2010-12-22 21:39:39 +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.
reed@google.comac10a2d2010-12-22 21:39:39 +00007 */
8
9
epoger@google.comec3ed6a2011-07-28 14:26:00 +000010
reed@google.comac10a2d2010-12-22 21:39:39 +000011#ifndef GrTexture_DEFINED
12#define GrTexture_DEFINED
13
bsalomon@google.com8fe72472011-03-30 21:26:44 +000014#include "GrResource.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000015
bsalomon@google.comaa5b6732011-07-29 15:13:20 +000016class GrRenderTarget;
reed@google.comac10a2d2010-12-22 21:39:39 +000017
bsalomon@google.com8fe72472011-03-30 21:26:44 +000018class GrTexture : public GrResource {
bsalomon@google.com8fe72472011-03-30 21:26:44 +000019
reed@google.comac10a2d2010-12-22 21:39:39 +000020public:
reed@google.comac10a2d2010-12-22 21:39:39 +000021 /**
bsalomon@google.comc6cf7232011-02-17 16:43:10 +000022 * Retrieves the width of the texture.
bsalomon@google.com1c13c962011-02-14 16:51:21 +000023 *
reed@google.comac10a2d2010-12-22 21:39:39 +000024 * @return the width in texels
25 */
bsalomon@google.comc6cf7232011-02-17 16:43:10 +000026 int width() const { return fWidth; }
bsalomon@google.com8fe72472011-03-30 21:26:44 +000027
reed@google.comac10a2d2010-12-22 21:39:39 +000028 /**
bsalomon@google.comc6cf7232011-02-17 16:43:10 +000029 * Retrieves the height of the texture.
bsalomon@google.com1c13c962011-02-14 16:51:21 +000030 *
reed@google.comac10a2d2010-12-22 21:39:39 +000031 * @return the height in texels
32 */
bsalomon@google.comc6cf7232011-02-17 16:43:10 +000033 int height() const { return fHeight; }
reed@google.comac10a2d2010-12-22 21:39:39 +000034
35 /**
36 * Convert from texels to normalized texture coords for POT textures
37 * only.
38 */
bsalomon@google.comc6cf7232011-02-17 16:43:10 +000039 GrFixed normalizeFixedX(GrFixed x) const { GrAssert(GrIsPow2(fWidth));
reed@google.comac10a2d2010-12-22 21:39:39 +000040 return x >> fShiftFixedX; }
bsalomon@google.comc6cf7232011-02-17 16:43:10 +000041 GrFixed normalizeFixedY(GrFixed y) const { GrAssert(GrIsPow2(fHeight));
reed@google.comac10a2d2010-12-22 21:39:39 +000042 return y >> fShiftFixedY; }
43
bsalomon@google.com1c13c962011-02-14 16:51:21 +000044 /**
reed@google.comac10a2d2010-12-22 21:39:39 +000045 * Retrieves the pixel config specified when the texture was created.
46 */
bsalomon@google.com669fdc42011-04-05 17:08:27 +000047 GrPixelConfig config() const { return fConfig; }
reed@google.comac10a2d2010-12-22 21:39:39 +000048
49 /**
bsalomon@google.comc6cf7232011-02-17 16:43:10 +000050 * Approximate number of bytes used by the texture
reed@google.comac10a2d2010-12-22 21:39:39 +000051 */
bsalomon@google.comcee661a2011-07-26 12:32:36 +000052 virtual size_t sizeInBytes() const {
bsalomon@google.com669fdc42011-04-05 17:08:27 +000053 return fWidth * fHeight * GrBytesPerPixel(fConfig);
reed@google.comac10a2d2010-12-22 21:39:39 +000054 }
55
56 /**
57 * Updates a subrectangle of texels in the texture.
58 *
junov@google.com4ee7ae52011-06-30 17:30:49 +000059 * @param x left edge of rectangle to update
60 * @param y top edge of rectangle to update
61 * @param width width of rectangle to update
62 * @param height height of rectangle to update
63 * @param srcData width*height texels of data in same format that was
64 * used at texture creation.
65 * @param rowBytes number of bytes per row in srcData, 0 means rows are
66 * packed
reed@google.comac10a2d2010-12-22 21:39:39 +000067 */
bsalomon@google.com79d2dbe2011-06-13 19:28:02 +000068 virtual void uploadTextureData(int x,
69 int y,
70 int width,
71 int height,
junov@google.com4ee7ae52011-06-30 17:30:49 +000072 const void* srcData,
73 size_t rowBytes) = 0;
reed@google.comac10a2d2010-12-22 21:39:39 +000074
75 /**
bsalomon@google.com669fdc42011-04-05 17:08:27 +000076 * Reads a rectangle of pixels from the texture.
77 * @param left left edge of the rectangle to read (inclusive)
78 * @param top top edge of the rectangle to read (inclusive)
79 * @param width width of rectangle to read in pixels.
80 * @param height height of rectangle to read in pixels.
81 * @param config the pixel config of the destination buffer
82 * @param buffer memory to read the rectangle into.
83 *
84 * @return true if the read succeeded, false if not. The read can fail
85 * because of a unsupported pixel config.
86 */
87 bool readPixels(int left, int top, int width, int height,
88 GrPixelConfig config, void* buffer);
89
90 /**
reed@google.comac10a2d2010-12-22 21:39:39 +000091 * Retrieves the render target underlying this texture that can be passed to
92 * GrGpu::setRenderTarget().
93 *
bsalomon@google.com6dcf4992011-04-05 21:16:14 +000094 * @return handle to render target or NULL if the texture is not a
reed@google.comac10a2d2010-12-22 21:39:39 +000095 * render target
96 */
bsalomon@google.com6dcf4992011-04-05 21:16:14 +000097 GrRenderTarget* asRenderTarget() { return fRenderTarget; }
reed@google.comac10a2d2010-12-22 21:39:39 +000098
99 /**
bsalomon@google.com1da07462011-03-10 14:51:57 +0000100 * Removes the reference on the associated GrRenderTarget held by this
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000101 * texture. Afterwards asRenderTarget() will return NULL. The
bsalomon@google.com1da07462011-03-10 14:51:57 +0000102 * GrRenderTarget survives the release if another ref is held on it.
reed@google.comac10a2d2010-12-22 21:39:39 +0000103 */
bsalomon@google.comaa5b6732011-07-29 15:13:20 +0000104 void releaseRenderTarget();
reed@google.comac10a2d2010-12-22 21:39:39 +0000105
106 /**
107 * Return the native ID or handle to the texture, depending on the
108 * platform. e.g. on opengl, return the texture ID.
109 */
bsalomon@google.comcee661a2011-07-26 12:32:36 +0000110 virtual intptr_t getTextureHandle() const = 0;
reed@google.comac10a2d2010-12-22 21:39:39 +0000111
112#if GR_DEBUG
113 void validate() const {
114 this->INHERITED::validate();
115 }
116#else
117 void validate() const {}
118#endif
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000119
bsalomon@google.com6dcf4992011-04-05 21:16:14 +0000120protected:
121 GrRenderTarget* fRenderTarget; // texture refs its rt representation
122 // base class cons sets to NULL
123 // subclass cons can create and set
124
125 GrTexture(GrGpu* gpu,
126 int width,
127 int height,
128 GrPixelConfig config)
129 : INHERITED(gpu)
130 , fRenderTarget(NULL)
131 , fWidth(width)
132 , fHeight(height)
133 , fConfig(config) {
134 // only make sense if alloc size is pow2
135 fShiftFixedX = 31 - Gr_clz(fWidth);
136 fShiftFixedY = 31 - Gr_clz(fHeight);
137 }
bsalomon@google.comcee661a2011-07-26 12:32:36 +0000138
bsalomon@google.com6dcf4992011-04-05 21:16:14 +0000139 // GrResource overrides
140 virtual void onRelease() {
bsalomon@google.comaa5b6732011-07-29 15:13:20 +0000141 this->releaseRenderTarget();
bsalomon@google.com6dcf4992011-04-05 21:16:14 +0000142 }
143
bsalomon@google.comaa5b6732011-07-29 15:13:20 +0000144 virtual void onAbandon();
bsalomon@google.com6dcf4992011-04-05 21:16:14 +0000145
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000146private:
bsalomon@google.comc6cf7232011-02-17 16:43:10 +0000147 int fWidth;
148 int fHeight;
reed@google.comac10a2d2010-12-22 21:39:39 +0000149 // these two shift a fixed-point value into normalized coordinates
150 // for this texture if the texture is power of two sized.
151 int fShiftFixedX;
152 int fShiftFixedY;
bsalomon@google.com669fdc42011-04-05 17:08:27 +0000153
154 GrPixelConfig fConfig;
reed@google.comac10a2d2010-12-22 21:39:39 +0000155
bsalomon@google.com8fe72472011-03-30 21:26:44 +0000156 typedef GrResource INHERITED;
reed@google.comac10a2d2010-12-22 21:39:39 +0000157};
158
159#endif
160