summaryrefslogtreecommitdiff
path: root/src/mesa/main/texobj.c
AgeCommit message (Expand)AuthorFilesLines
2017-06-22mesa: remove unused _mesa_delete_nameless_texture()Samuel Pitoiset1-41/+0
2017-06-22mesa: check for allocation failures in _mesa_new_texture_object()Samuel Pitoiset1-2/+5
2017-06-14mesa: implement ARB_bindless_textureSamuel Pitoiset1-0/+13
2017-05-07mesa: small texture targetIndex tidy upTimothy Arceri1-5/+4
2017-04-22mesa: remove fallback RefCount == 0 patternTimothy Arceri1-10/+4
2017-04-19mesa: print target string in glBindTexture() error messageBrian Paul1-1/+2
2017-04-07mesa: stop abstracting texture object hashtable lockingTimothy Arceri1-15/+2
2017-03-29mesa: split _NEW_TEXTURE into _NEW_TEXTURE_OBJECT & _NEW_TEXTURE_STATEMarek Olšák1-7/+7
2017-01-20mesa: update external textures when (re-)bindingPhilipp Zabel1-2/+3
2016-11-24main/texobj: Check that texture id > 0 before looking it up in hash-tableEduardo Lima Mitev1-2/+3
2016-10-13mesa: remove 'params' parameter from ctx->Driver.TexParameter()Brian Paul1-9/+6
2016-08-26mesa: Add support for OES_texture_cube_map_arrayIan Romanick1-1/+1
2016-08-26mesa: Add and use _mesa_has_texture_cube_map_array helperIan Romanick1-2/+2
2016-08-26mesa: Use _mesa_has_ARB_texture_cube_map_array instead of open-coding itIan Romanick1-1/+1
2016-06-23Remove wrongly repeated words in commentsGiuseppe Bilotta1-1/+1
2016-05-20mesa: Replace uses of Shared->Mutex with hash-table mutexesMatt Turner1-8/+4
2016-03-28mesa: add OES_texture_buffer and EXT_texture_buffer supportIlia Mirkin1-4/+4
2016-02-12mesa: simplify some code with new _mesa_cube_face_target() functionBrian Paul1-6/+1
2016-02-12mesa: remove _ARB suffix from cube map enumsBrian Paul1-13/+13
2016-01-21texobj: Remove redundant checks that the texture cube faces match sizeNeil Roberts1-10/+0
2016-01-21texobj: Fix the completeness checks for cube texturesNeil Roberts1-1/+11
2016-01-14texobj: Check completeness with InternalFormat rather than Mesa formatNeil Roberts1-1/+1
2015-10-14mesa: minor indentation fix in _mesa_BindTextureUnit()Brian Paul1-1/+1
2015-10-14mesa: remove unused texUnit local in _mesa_BindTextureUnit()Brian Paul1-7/+0
2015-10-13mesa: pass caller name to create_textures()Brian Paul1-7/+6
2015-10-08mesa,meta: move gl_texture_object::TargetIndex initializationsBrian Paul1-9/+18
2015-10-08mesa: remove unused _mesa_create_nameless_texture()Brian Paul1-20/+0
2015-10-08mesa: remove unneeded error check in create_textures()Brian Paul1-9/+2
2015-10-01mesa: fix incorrect error in _mesa_BindTextureUnit()Brian Paul1-1/+2
2015-10-01mesa: remove _mesa_get_tex_unit_err() and fix error handlingBrian Paul1-2/+7
2015-10-01mesa: consolidate texture binding codeBrian Paul1-121/+79
2015-10-01mesa: fix indentation in _mesa_create_nameless_texture()Brian Paul1-9/+9
2015-08-27mesa: enable enums for OES_texture_storage_multisample_2d_arrayTapani Pälli1-1/+2
2015-08-24mesa: make _mesa_bind_texture_unit() staticBrian Paul1-5/+5
2015-08-20mesa: Reset image unit state to the default values when a bound image is dele...Francisco Jerez1-1/+4
2015-08-03mesa/es3.1: Allow textures with target GL_TEXTURE_2D_MULTISAMPLEMarta Lofstedt1-2/+2
2015-07-20mesa: Rename _mesa_lookup_enum_by_nr() to _mesa_enum_to_string().Kenneth Graunke1-3/+3
2015-05-28Revert "mesa: Add ARB_direct_state_access checks in texture functions"Ian Romanick1-14/+0
2015-05-14mesa: Add ARB_direct_state_access checks in texture functionsFredrik Höglund1-0/+14
2015-04-28mesa: remove unneeded #include colortab.hBrian Paul1-1/+0
2015-03-17Revert "main: _mesa_cube_level_complete checks NumLayers."Laura Ekstrand1-4/+0
2015-03-09main: _mesa_cube_level_complete checks NumLayers.Laura Ekstrand1-0/+4
2015-03-05mesa: include stdio.h where neededBrian Paul1-0/+1
2015-02-23mesa: Use assert() instead of ASSERT wrapper.Matt Turner1-7/+7
2015-01-29Mesa: Add support for GL_OES_texture_*float* extensions.Kalyan Kondapally1-0/+58
2015-01-13mesa: Returns a GL_INVALID_VALUE error if num of texs in glDeleteTextures is ...Eduardo Lima Mitev1-0/+5
2015-01-08main: Added _mesa_cube_level_complete to check for the completeness of an arb...Laura Ekstrand1-9/+14
2015-01-08main: glDeleteTextures now throws GL_INVALID_VALUE if n is negative.Laura Ekstrand1-0/+5
2015-01-08main: Nameless texture creation and deletion. Does not affect normal creation...Laura Ekstrand1-0/+62
2015-01-08main: Added entry point for BindTextureUnit.Laura Ekstrand1-0/+104